CWE-470 Base Rascunho

Use of Externally-Controlled Input to Select Classes or Code ('Unsafe Reflection')

This vulnerability occurs when an application uses unvalidated external input, like a URL parameter or form field, to dynamically decide which class to load or which method to execute via…

Definição

What is CWE-470?

This vulnerability occurs when an application uses unvalidated external input, like a URL parameter or form field, to dynamically decide which class to load or which method to execute via reflection. An attacker can manipulate this input to force the application to load unexpected, potentially malicious code.
When an application lets user input dictate its control flow through reflection, it hands partial control of its logic to an attacker. By supplying crafted values, an attacker can bypass security checks, access unauthorized features, or trigger unexpected behaviors. The risk becomes critical if an attacker can also place malicious files on the application's classpath, allowing them to directly inject and execute their own code through this same reflection mechanism. Preventing unsafe reflection requires strict allow-listing of permitted classes or methods and rigorous validation of all dynamic input. While SAST tools can identify the vulnerable pattern, Plexicus uses AI to analyze the context and suggest precise code fixes—such as implementing a secure allow-list—transforming a complex security finding into an actionable remediation that saves development time.
Impacto no mundo real

Real-world CVEs caused by CWE-470

  • Cryptography API uses unsafe reflection when deserializing a private key

  • Database system allows attackers to bypass sandbox restrictions by using the Reflection API.

Como os atacantes a exploram

Trajeto do atacante passo a passo

  1. 1

    A common reason that programmers use the reflection API is to implement their own command dispatcher. The following example shows a command dispatcher that does not use reflection:

  2. 2

    A programmer might refactor this code to use reflection as follows:

  3. 3

    The refactoring initially appears to offer a number of advantages. There are fewer lines of code, the if/else blocks have been entirely eliminated, and it is now possible to add new command types without modifying the command dispatcher. However, the refactoring allows an attacker to instantiate any object that implements the Worker interface. If the command dispatcher is still responsible for access control, then whenever programmers create a new class that implements the Worker interface, they must remember to modify the dispatcher's access control code. If they do not modify the access control code, then some Worker classes will not have any access control.

  4. 4

    One way to address this access control problem is to make the Worker object responsible for performing the access control check. An example of the re-refactored code follows:

  5. 5

    Although this is an improvement, it encourages a decentralized approach to access control, which makes it easier for programmers to make access control mistakes. This code also highlights another security problem with using reflection to build a command dispatcher. An attacker can invoke the default constructor for any kind of object. In fact, the attacker is not even constrained to objects that implement the Worker interface; the default constructor for any object in the system can be invoked. If the object does not implement the Worker interface, a ClassCastException will be thrown before the assignment to ao, but if the constructor performs operations that work in the attacker's favor, the damage will already have been done. Although this scenario is relatively benign in simple products, in larger products where complexity grows exponentially it is not unreasonable that an attacker could find a constructor to leverage as part of an attack.

Exemplo de código vulnerável

Vulnerable Java

A programmer might refactor this code to use reflection as follows:

Vulnerável Java
String ctl = request.getParameter("ctl");
  Class cmdClass = Class.forName(ctl + "Command");
  Worker ao = (Worker) cmdClass.newInstance();
  ao.doAction(request);
Exemplo de código seguro

Secure Java

A common reason that programmers use the reflection API is to implement their own command dispatcher. The following example shows a command dispatcher that does not use reflection:

Seguro Java
String ctl = request.getParameter("ctl");
  Worker ao = null;
  if (ctl.equals("Add")) {
  	ao = new AddCommand();
  }
  else if (ctl.equals("Modify")) {
  	ao = new ModifyCommand();
  }
  else {
  	throw new UnknownActionError();
  }
  ao.doAction(request);
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-470

  • Architecture and Design Refactor your code to avoid using reflection.
  • Architecture and Design Do not use user-controlled inputs to select and load classes or code.
  • Implementation Apply strict input validation by using allowlists or indirect selection to ensure that the user is only selecting allowable classes or code.
Sinais de deteção

How to detect CWE-470

Automated Static Analysis High

Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)

Correção automática do Plexicus

O Plexicus deteta automaticamente o CWE-470 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-470?

This vulnerability occurs when an application uses unvalidated external input, like a URL parameter or form field, to dynamically decide which class to load or which method to execute via reflection. An attacker can manipulate this input to force the application to load unexpected, potentially malicious code.

Qual a gravidade do CWE-470?

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-470?

MITRE lists the following affected platforms: Java, PHP, Interpreted.

Como posso prevenir o CWE-470?

Refactor your code to avoid using reflection. Do not use user-controlled inputs to select and load classes or code.

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

O motor SAST do Plexicus correlaciona a assinatura de fluxo de dados do CWE-470 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-470?

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

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.