Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.55 KB

php-code-injection.md

File metadata and controls

32 lines (24 loc) · 1.55 KB
name severity cvss-score cvss-vector cwe-id cwe-name compliance
PHP code injection
high
8.6
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L
CWE-94
Improper Control of Generation of Code ('Code Injection')
HIPAA ISO 27001 owasp10 pci PCI v4.0
164.306(a)
A.5.33, A.5.34, A.8.3, A.8.12
A3
6.5.1
pci4-6.2.4

A PHP code injection vulnerability allows the attacker to execute arbitrary PHP code into the application. In the worst-case scenario, the attacker will be able to fully administrate the server, which will enable him to extract sensitive data, modify the application contents or delete data.

These attacks happen when user-supplied data (forms, cookies, HTTP headers, etc.) is passed into a function that interprets it as PHP code. This programming pattern is well known bad practice because it is hard to ensure the function inputs are free from malicious code.

How to fix

{% tabs php-code-injection %} {% tab php-code-injection generic %} The best way to fix and prevent this vulnerability is to avoid functions that interpret the input as PHP code. The functions eval and include are the most commonly used for this purpose.

If you use those functions and its input is dynamic, and it can contain user input in any way, replace them with deterministic code that does not pass the user input to those functions.

It is strongly recommended not to rely on a list of accepted or rejected inputs, as those might be incomplete or have bypasses that can lead to code injection with a different payload. {% endtab %}

{% endtabs %}