You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL_Injection issue exists @ install.java in branch netbeans
The application's setup method executes an SQL query with executeUpdate, at line 128 of /src/java/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 ""adminuser""; this input is then read by the processRequest method at line 61 of /src/java/controller/install.java. This input then flows through the code, into a query and to the database server - without sanitization.
SQL_Injection issue exists @ install.java in branch netbeans
The application's setup method executes an SQL query with executeUpdate, at line 128 of /src/java/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 ""adminuser""; this input is then read by the processRequest method at line 61 of /src/java/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.
Namespace: TaynaCT
Repository: JavaVulnerableLab
Repository Url: https://github.com/TaynaCT/JavaVulnerableLab
CxAST-Project: TaynaCT/JavaVulnerableLab
CxAST platform scan: ec6e1015-2689-4742-939a-0072f10bf172
Branch: netbeans
Application: JavaVulnerableLab
Severity: HIGH
State: TO_VERIFY
Status: RECURRENT
CWE: 89
Lines: 59 61
References
Read more
The text was updated successfully, but these errors were encountered: