CVE-2026-33746: CWE-287: Improper Authentication in ConvoyPanel panel
Convoy is a KVM server management panel for hosting businesses. From version 3.9.0-beta to before version 4.5.1, the JWTService::decode() method did not verify the cryptographic signature of JWT tokens. While the method configured a symmetric HMAC-SHA256 signer via lcobucci/jwt, it only validated time-based claims (exp, nbf, iat) using the StrictValidAt constraint. The SignedWith constraint was not included in the validation step. This means an attacker could forge or tamper with JWT token payloads — such as modifying the user_uuid claim — and the token would be accepted as valid, as long as the time-based claims were satisfied. This directly impacts the SSO authentication flow (LoginController::authorizeToken), allowing an attacker to authenticate as any user by crafting a token with an arbitrary user_uuid. This issue has been patched in version 4.5.1.
AI Analysis
Technical Summary
ConvoyPanel is a KVM server management panel widely used by hosting providers. Versions from 3.9.0-beta up to but not including 4.5.1 contain a critical vulnerability (CVE-2026-33746) in the JWTService::decode() method, which is responsible for decoding JSON Web Tokens (JWTs) used in authentication. Although the method configures a symmetric HMAC-SHA256 signer via the lcobucci/jwt library, it fails to enforce signature verification by omitting the SignedWith constraint during token validation. Instead, it only validates time-based claims such as expiration (exp), not-before (nbf), and issued-at (iat) using the StrictValidAt constraint. This means that an attacker can craft or tamper with JWT payloads, including the user_uuid claim, and the system will accept these tokens as valid if the time claims are correct. This flaw directly impacts the Single Sign-On (SSO) authentication flow handled by LoginController::authorizeToken, allowing attackers to authenticate as any user without possessing valid credentials or a valid signature. The vulnerability is classified under CWE-287 (Improper Authentication) and CWE-347 (Improper Verification of Cryptographic Signature). The issue was publicly disclosed and patched in ConvoyPanel version 4.5.1. The CVSS v3.1 base score is 9.8 (critical), reflecting network attack vector, low complexity, no privileges or user interaction required, and high impact on confidentiality, integrity, and availability.
Potential Impact
This vulnerability allows attackers to bypass authentication controls entirely by forging JWT tokens, effectively granting unauthorized access to any user account within the ConvoyPanel system. Given that ConvoyPanel is used for managing KVM servers in hosting environments, successful exploitation could lead to full administrative control over virtualized server infrastructure. This could result in data breaches, service disruption, unauthorized resource usage, and lateral movement within hosting environments. The compromise of hosting management panels can also facilitate further attacks on hosted clients, amplifying the impact. Since no authentication or user interaction is required, and the flaw is exploitable remotely over the network, the risk is severe for organizations relying on vulnerable versions. The lack of known exploits in the wild currently reduces immediate risk but does not diminish the criticality of patching. The vulnerability undermines trust in the authentication mechanism, potentially leading to widespread unauthorized access and operational disruption.
Mitigation Recommendations
The primary mitigation is to upgrade ConvoyPanel installations to version 4.5.1 or later, where the JWT signature verification issue is fixed by including the SignedWith constraint in the validation process. Until patching is possible, organizations should consider implementing compensating controls such as restricting network access to the management panel via firewalls or VPNs, enabling multi-factor authentication if supported, and monitoring authentication logs for suspicious token usage or anomalous login patterns. Reviewing and rotating any credentials or tokens that may have been exposed is also advisable. Additionally, security teams should audit their JWT handling code to ensure proper signature verification is enforced and consider deploying Web Application Firewalls (WAFs) with custom rules to detect and block malformed or suspicious JWT tokens. Regular vulnerability scanning and penetration testing focused on authentication mechanisms can help identify similar issues proactively.
Affected Countries
United States, Germany, United Kingdom, Netherlands, France, Canada, Australia, Japan, South Korea, India
CVE-2026-33746: CWE-287: Improper Authentication in ConvoyPanel panel
Description
Convoy is a KVM server management panel for hosting businesses. From version 3.9.0-beta to before version 4.5.1, the JWTService::decode() method did not verify the cryptographic signature of JWT tokens. While the method configured a symmetric HMAC-SHA256 signer via lcobucci/jwt, it only validated time-based claims (exp, nbf, iat) using the StrictValidAt constraint. The SignedWith constraint was not included in the validation step. This means an attacker could forge or tamper with JWT token payloads — such as modifying the user_uuid claim — and the token would be accepted as valid, as long as the time-based claims were satisfied. This directly impacts the SSO authentication flow (LoginController::authorizeToken), allowing an attacker to authenticate as any user by crafting a token with an arbitrary user_uuid. This issue has been patched in version 4.5.1.
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
ConvoyPanel is a KVM server management panel widely used by hosting providers. Versions from 3.9.0-beta up to but not including 4.5.1 contain a critical vulnerability (CVE-2026-33746) in the JWTService::decode() method, which is responsible for decoding JSON Web Tokens (JWTs) used in authentication. Although the method configures a symmetric HMAC-SHA256 signer via the lcobucci/jwt library, it fails to enforce signature verification by omitting the SignedWith constraint during token validation. Instead, it only validates time-based claims such as expiration (exp), not-before (nbf), and issued-at (iat) using the StrictValidAt constraint. This means that an attacker can craft or tamper with JWT payloads, including the user_uuid claim, and the system will accept these tokens as valid if the time claims are correct. This flaw directly impacts the Single Sign-On (SSO) authentication flow handled by LoginController::authorizeToken, allowing attackers to authenticate as any user without possessing valid credentials or a valid signature. The vulnerability is classified under CWE-287 (Improper Authentication) and CWE-347 (Improper Verification of Cryptographic Signature). The issue was publicly disclosed and patched in ConvoyPanel version 4.5.1. The CVSS v3.1 base score is 9.8 (critical), reflecting network attack vector, low complexity, no privileges or user interaction required, and high impact on confidentiality, integrity, and availability.
Potential Impact
This vulnerability allows attackers to bypass authentication controls entirely by forging JWT tokens, effectively granting unauthorized access to any user account within the ConvoyPanel system. Given that ConvoyPanel is used for managing KVM servers in hosting environments, successful exploitation could lead to full administrative control over virtualized server infrastructure. This could result in data breaches, service disruption, unauthorized resource usage, and lateral movement within hosting environments. The compromise of hosting management panels can also facilitate further attacks on hosted clients, amplifying the impact. Since no authentication or user interaction is required, and the flaw is exploitable remotely over the network, the risk is severe for organizations relying on vulnerable versions. The lack of known exploits in the wild currently reduces immediate risk but does not diminish the criticality of patching. The vulnerability undermines trust in the authentication mechanism, potentially leading to widespread unauthorized access and operational disruption.
Mitigation Recommendations
The primary mitigation is to upgrade ConvoyPanel installations to version 4.5.1 or later, where the JWT signature verification issue is fixed by including the SignedWith constraint in the validation process. Until patching is possible, organizations should consider implementing compensating controls such as restricting network access to the management panel via firewalls or VPNs, enabling multi-factor authentication if supported, and monitoring authentication logs for suspicious token usage or anomalous login patterns. Reviewing and rotating any credentials or tokens that may have been exposed is also advisable. Additionally, security teams should audit their JWT handling code to ensure proper signature verification is enforced and consider deploying Web Application Firewalls (WAFs) with custom rules to detect and block malformed or suspicious JWT tokens. Regular vulnerability scanning and penetration testing focused on authentication mechanisms can help identify similar issues proactively.
Technical Details
- Data Version
- 5.2
- Assigner Short Name
- GitHub_M
- Date Reserved
- 2026-03-23T18:30:14.124Z
- Cvss Version
- 3.1
- State
- PUBLISHED
Threat ID: 69ce8d6ee6bfc5ba1de64e23
Added to database: 4/2/2026, 3:38:22 PM
Last enriched: 4/2/2026, 3:53:53 PM
Last updated: 4/3/2026, 7:03:15 AM
Views: 8
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.