A Millisecond of Predictability Why CVE-2026-11374 Is Hard t...#2544
Open
carlospolop wants to merge 1 commit into
Open
A Millisecond of Predictability Why CVE-2026-11374 Is Hard t...#2544carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://bishopfox.com/blog/millisecond-of-predictability-why-cve-2026-11374-hard-to-exploit Content Categories: Based on the analysis, this content was categorized under "Pentesting Web > Account Takeover, with a new subsection such as Predictable SSO/Bearer Tokens and Two-Stage Authentication Replay; cross-reference Cookies Hacking and Rate Limit Bypass". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview and impact
CVE-2026-11374 is a critical unauthenticated account-takeover vulnerability affecting the cross-product SSO implementation used by four ManageEngine products when integrated with AD360. The affected and fixed builds are:
🔧 Technical Details
Predictable timestamp bearer tokens: When an authentication or SSO implementation uses
System.currentTimeMillis()directly as both the client-visible token and server-side cache key, the token has no secret entropy. Estimate the victim's login window, convert that interval into candidate millisecond values, and test each value through the normal token-resolution path. A one-second window yields about 1,000 candidates and a one-minute window about 60,000. Review product-specific overrides even when the framework's base generator safely uses UUIDs or another cryptographically random value.Cross-application branch manipulation: Some cookie-SSO handlers resolve tickets only when a cookie claims the ticket originated from another integrated application. Supplying a different application tag can satisfy an
appName != prodName-style condition and force execution into the cross-product resolver. In this case, a protected 🤖 Agent ActionsDone.
Updated:
src/pentesting-web/account-takeover.mdAdded a new section on:
/j_security_check-style)Also added references for:
Verified the change is only in that single file.
mdbookwasn’t installed, so I couldn’t run a local build.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.