-
Notifications
You must be signed in to change notification settings - Fork 0
Description
SQL_Injection issue exists @ src/main/java/org/cysecurity/cspf/jvl/controller/Register.java in branch master
*The application's processRequest method executes an SQL query with executeUpdate, at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""username""; this input is then read by the processRequest method at line 43 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: -523716004
The application's processRequest method executes an SQL query with executeUpdate, at line 59 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""username""; this input is then read by the processRequest method at line 43 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: 1502847667
The application's processRequest method executes an SQL query with executeUpdate, at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""password""; this input is then read by the processRequest method at line 44 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: 292546708
The application's processRequest method executes an SQL query with executeUpdate, at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""email""; this input is then read by the processRequest method at line 45 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: 1245320624
The application's processRequest method executes an SQL query with executeUpdate, at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""About""; this input is then read by the processRequest method at line 46 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: 302318066
The application's processRequest method executes an SQL query with executeUpdate, at line 58 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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 ""secret""; this input is then read by the processRequest method at line 47 of src\main\java\org\cysecurity\cspf\jvl\controller\Register.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.Similarity ID: 164571242*
Similarity Id: -523716004, 1502847667, 292546708, 1245320624, 302318066, 164571242
Severity: CRITICAL
CWE:89
String user=request.getParameter("username");
String pass=request.getParameter("password");
String email=request.getParameter("email");
String about=request.getParameter("About");
String secret=request.getParameter("secret");