jvlstuff / JavaVulnerableLab

lab
GNU General Public License v2.0
0 stars 1 forks source link

CX SQL_Injection @ src/main/java/org/cysecurity/cspf/jvl/controller/Install.java [refs/heads/master] #74

Open juegge opened 3 years ago

juegge commented 3 years ago

SQL_Injection issue exists @ src/main/java/org/cysecurity/cspf/jvl/controller/Install.java in branch refs/heads/master

The application's setup method executes an SQL query with executeUpdate, at line 117 of src\main\java\org\cysecurity\cspf\jvl\controller\Install.java. The application constructs this SQL query by embedding an untrusted string into the query without proper sanitization. The concatenated string is submitted to the database, where it is parsed and executed accordingly. An attacker would be able to inject arbitrary syntax and data into the SQL query, by crafting a malicious payload and providing it via the input ""dbname""; this input is then read by the processRequest method at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Install.java. This input then flows through the code, into a query and to the database server - without sanitization. This may enable an SQL Injection attack.

Severity: High

CWE:89

Vulnerability details and guidance

Checkmarx

Training Recommended Fix

Lines: 58 60


Code (Line #58):

        dbname = request.getParameter("dbname");

Code (Line #60):

        adminuser= request.getParameter("adminuser");

juegge commented 3 years ago

Issue still exists.

juegge commented 3 years ago

Issue still exists.

juegge commented 3 years ago

Issue still exists.

juegge commented 2 years ago

Issue still exists.

github-actions[bot] commented 2 years ago

Issue still exists.

github-actions[bot] commented 2 years ago

Issue still exists.

github-actions[bot] commented 2 years ago

Issue still exists.