CxTomer / JavaVulnerableLab

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

CX Reflected_XSS_All_Clients @ src/main/java/org/cysecurity/cspf/jvl/controller/AddPage.java [refs/heads/master] #46

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

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

The application's processRequest embeds untrusted data in the generated output with print, at line 55 of src\main\java\org\cysecurity\cspf\jvl\controller\AddPage.java. This untrusted data is embedded straight into the output without proper sanitization or encoding, enabling an attacker to inject malicious code into the output. The attacker would be able to alter the returned web page by simply providing modified data in the user input ""filename"", which is read by the processRequest method at line 39 of src\main\java\org\cysecurity\cspf\jvl\controller\AddPage.java. This input then flows through the code straight to the output web page, without sanitization.  This can enable a Reflected Cross-Site Scripting (XSS) attack.

Severity: High

CWE:79

Vulnerability details and guidance

Checkmarx

Training Recommended Fix

Lines: 39


Code (Line #39):

           String fileName=request.getParameter("filename");

github-actions[bot] commented 2 years ago

Issue still exists.