minimal-web-notepad icon indicating copy to clipboard operation
minimal-web-notepad copied to clipboard

[security vulnerability] Cross-Site Scripting (XSS) vulnerabilities

Open GatekeeperBuster opened this issue 1 year ago • 0 comments

Recently, our team found a reflected cross-site scripting (XSS) vulnerability The vulnerability logic is present in the file: https://github.com/domOrielton/minimal-web-notepad/blob/master/simple.php#L61

image

The print directly outputs the parameter $_GET['note'] without any sanitization. This makes it susceptible to Cross-Site Scripting (XSS) attacks. As a result, attackers can exploit this vulnerability by injecting malicious html code with $_GET['note']

To fix this vulnerability, we recommend that developers implement properly sanitize (e.g., htmlspecialchars()) for user input before displaying it on the webpage.

GatekeeperBuster avatar Sep 18 '23 06:09 GatekeeperBuster