# Improper Neutralization of Special Elements used in a Command ('Command Injection') (CWE-77) The product constructs all or part of a command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended command when it is sent to a downstream component. - Prevalence: Alta Sin reglas de Shoulder - Impact: Alto OWASP Top 10 #3 - Prevention: Ver MITRE Referencia externa **OWASP:** Injection (A03:2021-Injection) - #3 ## Description Command injection vulnerabilities typically occur when data enters the application from an untrusted source, the data is part of a string that is executed as a command by the application, and the execution of the command allows the attacker to execute commands that they would not normally be able to execute. ## Prevention ## Consequences - Ejecutar comandos no autorizados - Leer datos de la aplicación - Modificar datos de la aplicación - DoS ## Mitigations - Usa llamadas de biblioteca en lugar de procesos externos para recrear la funcionalidad deseada - Ejecuta el código en un entorno sandbox que imponga límites estrictos - Usa una biblioteca o framework verificado que no permita esta debilidad