Tools
// Tools & Resources
// Payloads — All (10)
XSS
A production-grade XSS keylogger that handles network errors gracefully and logs each keystroke with confirmation — d...
XSS
Use an XSS injection to exfiltrate the victim's session cookie to your server — achieving full account takeover witho...
XSS
Inject hidden username and password fields into the DOM — browsers auto-fill them with saved credentials. A delayed f...
XSS
Many apps store JWTs, API keys, and user data in localStorage and sessionStorage. This XSS payload silently exfiltrat...
XSS
Replace the entire page with a cloned login form via XSS — the URL stays legitimate, the victim trusts it, and creden...
XSS
Attach a keydown event listener through an XSS payload to silently capture everything the victim types — passwords, s...
XSS
When the injection point is inside innerHTML, script tags don't fire — but img onerror does. This one-liner exfiltrat...
XSS
When inline script injection is blocked, host your payload externally and load it via a script src tag — bypassing le...
XSS
When WAFs and filters block raw XSS strings, Base64-encode your payload and use eval(atob()) or btoa(eval(atob())) to...
XSS
Understanding the fundamental JavaScript payload structure used in Cross-Site Scripting attacks — the foundation befo...