You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a problem that is the potential of XSS vulnerability.
function getMainMessage() in Unbound.php displays
exception details like exception exception\hoge with message deadbeef.
If result of $e->getMessage() contains user input and display it, It becomes vulnerable against XSS.
Because result of $e->getMessage() is passed to sprintf without escaping html characters.
Hello developers of this cool software!
I found a problem that is the potential of XSS vulnerability.
function
getMainMessage()
in Unbound.php displaysexception details like
exception exception\hoge with message deadbeef
.If result of
$e->getMessage()
contains user input and display it, It becomes vulnerable against XSS.Because result of
$e->getMessage()
is passed tosprintf
without escaping html characters.Example of similar problem: https://hackerone.com/reports/216812
Thank you.
The text was updated successfully, but these errors were encountered: