The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade hono to version 4.12.27 or higher.
hono is an Ultrafast web framework for the Edges
Affected versions of this package are vulnerable to Race Condition through server-side rendering context handling in createContext and useContext. An attacker can read another in-flight request’s provided value by causing an async component to suspend on await and then resume while concurrent SSR requests are rendering through the same provider stack. When useContext() is called after the suspension point, the render can observe a value from a different request instead of its own session-scoped data. This can leak user-specific HTML or cause authorization checks and other request-scoped decisions to use the wrong user’s context.
Notes
AsyncLocalStorage, the vulnerable path falls back to a process-local store only for synchronous work; a useContext() read after await in an async SSR component can therefore degrade to the context’s default value rather than retain the request’s provided value.