CX Reflected_XSS_All_Clients @ src/main/java/org/owasp/benchmark/testcode/BenchmarkTest00279.java [main]
Reflected_XSS_All_Clients issue exists @ src/main/java/org/owasp/benchmark/testcode/BenchmarkTest00279.java in branch main
The application's doPost embeds untrusted data in the generated output with print, at line 66 of src\main\java\org\owasp\benchmark\testcode\BenchmarkTest00279.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 getHeaders, which is read by the doPost method at line 44 of src\main\java\org\owasp\benchmark\testcode\BenchmarkTest00279.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: 822736791
Severity: High
CWE:79
Vulnerability details and guidance
Lines: 44
java.util.Enumeration<String> headers = request.getHeaders("Referer");