VYPR
Medium severity6.3OSV Advisory· Published Sep 17, 2025· Updated Apr 29, 2026

CVE-2025-10619

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.

PackageAffected versionsPatched versions
@sequa-ai/sequa-mcpnpm
< 1.0.141.0.14

Affected products

1

Patches

1
e56981585416

Validate authorization url

https://github.com/sequa-ai/sequa-mcpfabian-emiliusSep 9, 2025via ghsa
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

News mentions

0

No linked articles in our index yet.