cxdcox / DVWA

git clone https://github.com/ethicalhack3r/DVWA.git
GNU General Public License v3.0
1 stars 0 forks source link

CX SQL_Injection @ vulnerabilities/sqli/source/low.php [master] #3

Open cxdcox opened 4 years ago

cxdcox commented 4 years ago

SQL_Injection issue exists @ vulnerabilities/sqli/source/low.php in branch master

Method <?php at line 1 of vulnerabilities\sqli\source\low.php gets user input from the _REQUEST element. This element’s value then flows through the code without being properly sanitized or validated, and is eventually used in a database query in method <?php at line 1 of vulnerabilities\sqli\source\low.php. This may enable an SQL Injection attack.

Severity: High

CWE:89

Checkmarx

Lines: 5


Code (Line #5):

    $id = $_REQUEST[ 'id' ];

cxdcox commented 4 years ago

Issue still exists.