CVE-2025-10619
Description
A vulnerability was detected in sequa-ai sequa-mcp up to 1.0.13. This affects the function redirectToAuthorization of the file src/helpers/node-oauth-client-provider.ts of the component OAuth Server Discovery. Performing manipulation results in os command injection. Remote exploitation of the attack is possible. The exploit is now public and may be used. Upgrading to version 1.0.14 is able to mitigate this issue. The patch is named e569815854166db5f71c2e722408f8957fb9e804. It is recommended to upgrade the affected component. The vendor explains: "We only promote that mcp server with our own URLs that have a valid response, but yes if someone would use it with a non sequa url, this is a valid attack vector. We have released a new version (1.0.14) that fixes this and validates that only URLs can be opened."
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
@sequa-ai/sequa-mcpnpm | < 1.0.14 | 1.0.14 |
Affected products
1Patches
1e56981585416Validate authorization url
2 files changed · +8 −2
package.json+1 −1 modified@@ -1,6 +1,6 @@ { "name": "@sequa-ai/sequa-mcp", - "version": "1.0.13", + "version": "1.0.14", "description": "A proxy for the Model Context Protocol (MCP) that connects local STDIO with remote MCP servers", "keywords": ["mcp", "model-context-protocol", "proxy", "ai", "sequa"], "author": "Sequa AI GmbH",
src/helpers/node-oauth-client-provider.ts+7 −1 modified@@ -30,7 +30,13 @@ export class NodeOauthClientProvider implements OAuthClientProvider { } public async redirectToAuthorization(authorizationUrl: URL): Promise<void> { - await open(authorizationUrl.toString()) + const url = authorizationUrl.toString() + + if (!url.startsWith('http://') && !url.startsWith('https://')) { + throw new Error('Invalid authorization url URL') + } + + await open(url) } public async codeVerifier(): Promise<string> {
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
9- github.com/advisories/GHSA-9pw5-wx67-q964ghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2025-10619ghsaADVISORY
- github.com/sequa-ai/sequa-mcp/commit/e569815854166db5f71c2e722408f8957fb9e804nvdWEB
- www.npmjs.com/package/%40sequa-ai/sequa-mcp/v/1.0.14ghsaWEB
- lavender-bicycle-a5a.notion.site/Sequa-MCP-RCE-26853a41781f807da1c0cd158f9e3e1anvd
- lavender-bicycle-a5a.notion.site/Sequa-MCP-RCE-26853a41781f807da1c0cd158f9e3e1anvd
- vuldb.comnvd
- vuldb.comnvd
- vuldb.comnvd
News mentions
0No linked articles in our index yet.