Hardcoded_password_in_Connection_String issue exists @ root/init.jsp in branch master
The application contains hardcoded connection details, """", at line 67 of root\init.jsp. This connection string contains a hardcoded password, which is used in DriverManager.getConnection at line 67 of root\init.jsp to connect to a database server with getConnection. This can expose the database password, and impede proper password management.
Severity: Medium
CWE:547
Checkmarx
Training
Recommended Fix
Lines: 67
Code (Line #67):
c = DriverManager.getConnection("jdbc:hsqldb:mem:SQL", "sa", "");