vish07 / WackoPicko

WackoPicko is a vulnerable web application used to test web application vulnerability scanners.
MIT License
0 stars 0 forks source link

CX Reflected_XSS_All_Clients @ website/pictures/conflict.php [master] #41

Open vish07 opened 4 years ago

vish07 commented 4 years ago

Reflected_XSS_All_Clients issue exists @ website/pictures/conflict.php in branch master

The application's <?php embeds untrusted data in the generated output with echo, at line 1 of website\pictures\conflict.php. 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 _SERVER, which is read by the <?php method at line 1 of website\pictures\conflict.php. 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

Lines: 35


Code (Line #35):

<form action="<?=h( $_SERVER['PHP_SELF'] )?>?conflictid=<?= $conflict['id'] ?>" method="POST">

vish07 commented 4 years ago

Issue still exists.

vish07 commented 4 years ago

Issue still exists.