CWE-50 Variante Incompleto

Path Equivalence: '//multiple/leading/slash'

This vulnerability occurs when an application accepts file or directory paths containing multiple leading slashes (like '//multiple/leading/slash') without proper normalization. Attackers can…

Definição

What is CWE-50?

This vulnerability occurs when an application accepts file or directory paths containing multiple leading slashes (like '//multiple/leading/slash') without proper normalization. Attackers can exploit this ambiguity to bypass security checks, potentially accessing files or directories outside the intended scope.
When a system processes a path starting with '//', different operating systems and libraries interpret it differently. On Unix-like systems, '//' is often treated as equivalent to a single '/', but some parsers or custom logic might handle it inconsistently. This inconsistency creates a loophole where an attacker can craft paths that confuse the resolution logic, leading to unauthorized file system access. To prevent this, developers should implement strict path validation and canonicalization. Always normalize user-supplied paths by resolving sequences like '//' to a single slash before any security or access control checks. Use trusted library functions for path resolution instead of custom string manipulation to ensure consistent behavior across all platforms.
Impacto no mundo real

Real-world CVEs caused by CWE-50

  • Read files with full pathname using multiple internal slash.

  • Server allows remote attackers to read arbitrary files via a GET request with more than one leading / (slash) character in the filename.

  • Server allows remote attackers to read arbitrary files via leading slash (//) characters in a URL request.

  • Server allows remote attackers to bypass authentication and read restricted files via an extra / (slash) in the requested URL.

  • Product allows local users to delete arbitrary files or create arbitrary empty files via a target filename with a large number of leading slash (/) characters.

  • Server allows remote attackers to bypass access restrictions for files via an HTTP request with a sequence of multiple / (slash) characters such as http://www.example.com///file/.

  • Product allows remote attackers to bypass authentication, obtain sensitive information, or gain access via a direct request to admin/user.pl preceded by // (double leading slash).

  • Server allows remote attackers to execute arbitrary commands via a URL with multiple leading "/" (slash) characters and ".." sequences.

Como os atacantes a exploram

Trajeto do atacante passo a passo

  1. 1

    Identificar um caminho de código que trata input não confiável sem validação.

  2. 2

    Criar um payload que explora o comportamento inseguro — injeção, traversal, overflow ou abuso de lógica.

  3. 3

    Entregar o payload através de um pedido normal e observar a reação da aplicação.

  4. 4

    Iterar até que a resposta exponha dados, execute código do atacante ou escale privilégios.

Exemplo de código vulnerável

Vulnerable pseudo

A MITRE não publicou um exemplo de código para este CWE. O padrão abaixo é ilustrativo — consulte os Recursos para referências canónicas.

Vulnerável pseudo
// Example pattern — see MITRE for the canonical references.
function handleRequest(input) {
  // Untrusted input flows directly into the sensitive sink.
  return executeUnsafe(input);
}
Exemplo de código seguro

Secure pseudo

Seguro pseudo
// Validate, sanitize, or use a safe API before reaching the sink.
function handleRequest(input) {
  const safe = validateAndEscape(input);
  return executeWithGuards(safe);
}
What changed: the unsafe sink is replaced (or the input is validated/escaped) so the same payload no longer triggers the weakness.
Lista de verificação de prevenção

How to prevent CWE-50

  • Architecture Use safe-by-default frameworks and APIs that prevent the unsafe pattern from being expressible.
  • Implementation Validate input at trust boundaries; use allowlists, not denylists.
  • Implementation Apply the principle of least privilege to credentials, file paths, and runtime permissions.
  • Testing Cover this weakness in CI: SAST rules + targeted unit tests for the data flow.
  • Operation Monitor logs for the runtime signals listed in the next section.
Sinais de deteção

How to detect CWE-50

SAST High

Executar análise estática (SAST) na base de código à procura do padrão inseguro no fluxo de dados.

DAST Moderate

Executar testes dinâmicos de segurança de aplicações (DAST) contra o endpoint em execução.

Runtime Moderate

Monitorizar os registos em tempo de execução para traços de exceção invulgares, input malformado ou tentativas de contornar a autorização.

Code review Moderate

Revisão de código: sinalizar qualquer novo código que trate input desta superfície sem usar os ajudantes validados do framework.

Correção automática do Plexicus

O Plexicus deteta automaticamente o CWE-50 e abre um PR de correção em menos de 60 segundos.

O Codex Remedium analisa cada commit, identifica esta fraqueza exata e entrega um pull request pronto para revisão com o patch. Sem tickets. Sem transferências.

Perguntas frequentes

Frequently asked questions

O que é o CWE-50?

This vulnerability occurs when an application accepts file or directory paths containing multiple leading slashes (like '//multiple/leading/slash') without proper normalization. Attackers can exploit this ambiguity to bypass security checks, potentially accessing files or directories outside the intended scope.

Qual a gravidade do CWE-50?

A MITRE não publicou uma classificação de probabilidade de exploração para esta fraqueza. Trate-a como impacto médio até o seu modelo de ameaças provar o contrário.

Que linguagens ou plataformas são afetadas pelo CWE-50?

A MITRE não especificou as plataformas afetadas por este CWE — pode aplicar-se à maioria das stacks de aplicações.

Como posso prevenir o CWE-50?

Use safe-by-default frameworks, validate untrusted input at trust boundaries, and apply the principle of least privilege. Cover the data-flow signature in CI with SAST.

Como é que o Plexicus deteta e corrige o CWE-50?

O motor SAST do Plexicus correlaciona a assinatura de fluxo de dados do CWE-50 em cada commit. Quando é encontrada uma correspondência, o nosso agente Codex Remedium abre um PR de correção com o código corrigido, testes e um resumo de uma linha para o revisor.

Onde posso saber mais sobre o CWE-50?

A MITRE publica a definição canónica em https://cwe.mitre.org/data/definitions/50.html. Pode também consultar a documentação da OWASP e do NIST para orientações adjacentes.

Fraquezas relacionadas

Weaknesses related to CWE-50

CWE-41 Pai

Improper Resolution of Path Equivalence

This vulnerability occurs when an application fails to properly handle different text representations that refer to the same file or…

CWE-42 Irmão

Path Equivalence: 'filename.' (Trailing Dot)

This vulnerability occurs when a system accepts file or directory paths that end with a dot (like 'file.txt.' or 'folder.') without…

CWE-44 Irmão

Path Equivalence: 'file.name' (Internal Dot)

This vulnerability occurs when an application accepts file paths containing internal dots (like 'file.ordir') without properly checking…

CWE-46 Irmão

Path Equivalence: 'filename ' (Trailing Space)

This vulnerability occurs when an application processes file paths that end with a space character (like 'document.txt ') without properly…

CWE-47 Irmão

Path Equivalence: ' filename' (Leading Space)

This vulnerability occurs when an application accepts file or directory paths that begin with a space character (like ' filename'),…

CWE-48 Irmão

Path Equivalence: 'file name' (Internal Whitespace)

This vulnerability occurs when an application accepts file paths containing internal spaces (like 'file name') without proper validation.…

CWE-49 Irmão

Path Equivalence: 'filename/' (Trailing Slash)

This vulnerability occurs when an application accepts file or directory paths that end with a slash (e.g., 'documents/') without properly…

CWE-51 Irmão

Path Equivalence: '/multiple//internal/slash'

This vulnerability occurs when an application accepts file or directory paths containing multiple consecutive forward slashes (e.g.,…

CWE-52 Irmão

Path Equivalence: '/multiple/trailing/slash//'

This vulnerability occurs when an application accepts file or directory paths containing multiple consecutive forward slashes (like…

Pronto quando você estiver

Pare de pagar por desenvolvedor.
Comece a fechar o ciclo.

O Plexicus é o ASPM nativo de IA que verifica, filtra, corrige, pentesta e explica — de forma autónoma. Programadores ilimitados, repos ilimitados, ações de IA de utilização justa. Nível gratuito real, €269/mo anual quando estiver pronto.