Description
Pterodactyl is a free, open-source game server management panel. From 1.7.0 until 1.13.0, the authentication rate limiter defined in RouteServiceProvider::configureRateLimiting() applied a single global bucket to the login and two-factor checkpoint endpoints instead of keying by IP or account: the fall-through Limit::perMinute(10) covering POST /auth/login and POST /auth/login/checkpoint omitted ->by(), so Laravel derived a constant cache key (md5('authentication')) shared by every request. An unauthenticated attacker sending roughly ten requests per minute from a single IP, most cheaply against the checkpoint endpoint (which has no reCAPTCHA), exhausts the shared counter and causes HTTP 429 for every user attempting to log in or complete two-factor authentication, a panel-wide authentication denial of service that also locks out administrators. This issue is fixed in version 1.13.0.
Published: 2026-07-28
Score: 7.5 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

Pterodactyl’s authentication rate limiter incorrectly used a single global bucket for the login and two‑factor checkpoint routes. This shared counter, keyed only by a literal string, was depleted by an attacker submitting roughly ten requests per minute to the checkpoint endpoint. Once exhausted, the limiter returned HTTP 429 for all subsequent login and 2FA attempts, effectively blocking every user from accessing the panel, including administrators. The weakness is a resource‑allocation flaw (CWE‑770). The impact is a chain‑wide authentication denial of service that can render the entire panel inaccessible without compromising credentials or permissions.

Affected Systems

Vendors: Pterodactyl. Products: Pterodactyl Panel, versions 1.7.0 through 1.13.0. The issue was fixed in version 1.13.0, so installations of any earlier releases are vulnerable.

Risk and Exploitability

The vulnerability has a CVSS score of 7.5, indicating a high‑severity DoS risk. The EPSS score is below 1 %, suggesting that exploitation is unlikely but still plausible. It is not listed in CISA KEV, so there are no known active exploits reported. The attack vector is remote network access to the panel’s public login and authentication endpoints; an attacker only needs to send traffic from a single IP address, making it relatively straightforward to trigger the rate limit. Once triggered, the lockout persists until the rate limiter is reset or the panel is restarted. Administrators are especially at risk because they may be unable to log in to remediate the issue.

Generated by OpenCVE AI on August 3, 2026 at 14:51 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade Pterodactyl Panel to version 1.13.0 or later, which replaces the shared rate‑limit bucket with per‑IP/account limits.
  • If an upgrade cannot be performed immediately, configure the firewall or load balancer to limit POST /auth/login and POST /auth/login/checkpoint requests from each IP to fewer than ten per minute, effectively restoring per‑IP protection.
  • Continuously monitor authentication endpoint responses for repeated HTTP 429 errors and adjust rate limits or block offending IPs as needed to prevent prolonged denial of service.

Generated by OpenCVE AI on August 3, 2026 at 14:51 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-xvc3-826v-xf47 Pterodactyl's shared global rate-limit key on login and 2FA checkpoint enables unauthenticated panel-wide authentication lockout (DoS)
History

Tue, 28 Jul 2026 20:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'poc', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Tue, 28 Jul 2026 19:00:00 +0000

Type Values Removed Values Added
First Time appeared Pterodactyl
Pterodactyl panel
Vendors & Products Pterodactyl
Pterodactyl panel

Tue, 28 Jul 2026 16:15:00 +0000

Type Values Removed Values Added
Description Pterodactyl is a free, open-source game server management panel. From 1.7.0 until 1.13.0, the authentication rate limiter defined in RouteServiceProvider::configureRateLimiting() applied a single global bucket to the login and two-factor checkpoint endpoints instead of keying by IP or account: the fall-through Limit::perMinute(10) covering POST /auth/login and POST /auth/login/checkpoint omitted ->by(), so Laravel derived a constant cache key (md5('authentication')) shared by every request. An unauthenticated attacker sending roughly ten requests per minute from a single IP, most cheaply against the checkpoint endpoint (which has no reCAPTCHA), exhausts the shared counter and causes HTTP 429 for every user attempting to log in or complete two-factor authentication, a panel-wide authentication denial of service that also locks out administrators. This issue is fixed in version 1.13.0.
Title Pterodactyl's shared global rate-limit key on login and 2FA checkpoint enables unauthenticated panel-wide authentication lockout (DoS)
Weaknesses CWE-770
References
Metrics cvssV3_1

{'score': 7.5, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H'}


Subscriptions

Pterodactyl Panel
cve-icon MITRE

Status: PUBLISHED

Assigner: GitHub_M

Published:

Updated: 2026-07-28T19:28:14.470Z

Reserved: 2026-07-10T17:36:04.597Z

Link: CVE-2026-61609

cve-icon Vulnrichment

Updated: 2026-07-28T19:28:10.311Z

cve-icon NVD

Status : Deferred

Published: 2026-07-28T16:19:28.693

Modified: 2026-07-30T19:29:19.027

Link: CVE-2026-61609

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-03T15:00:15Z

Weaknesses
  • CWE-770

    Allocation of Resources Without Limits or Throttling