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
This is a great tool for XSS testing and while I am playing with it, I noticed that if the Root document is an inline SVG image and using the XSSHunter probe, the XSSHunter JS callback fails to trigger.
Here's a change I made to probe.js by adding the following before if( document.readyState == "complete" ) { line that helps:
This is a great tool for XSS testing and while I am playing with it, I noticed that if the Root document is an inline SVG image and using the XSSHunter probe, the XSSHunter JS callback fails to trigger.
Here's a change I made to
probe.js
by adding the following beforeif( document.readyState == "complete" ) {
line that helps:Basically, this is just creating a data url and injecting the script again from an
HTMLDocument
or it might be just using the data url as the payload.The text was updated successfully, but these errors were encountered: