CX Reflected_XSS_All_Clients @ src/main/java/org/owasp/benchmark/testcode/BenchmarkTest02317.java [main]
Reflected_XSS_All_Clients issue exists @ src/main/java/org/owasp/benchmark/testcode/BenchmarkTest02317.java in branch main
The application's doPost embeds untrusted data in the generated output with format, at line 64 of src\main\java\org\owasp\benchmark\testcode\BenchmarkTest02317.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 getParameterNames, which is read by the doPost method at line 45 of src\main\java\org\owasp\benchmark\testcode\BenchmarkTest02317.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. Similarity ID: 331836674
Severity: High
CWE:79
Vulnerability details and guidance
Lines: 45
java.util.Enumeration<String> names = request.getParameterNames();