Javascript Crafting
PSG CSRF 1 : No Validation
PSG CSRF 2 : CSRF request method validation bypass using GET request instead of POST
XSS to CSRF Changing email
Go to the account page
Make POST request to change email
Remember supply necessary parameter (can get from burp post request)
CSRF placing email bot from parameter and redirecting it to another host
Obtain
email
andurl
fromvictim opened link
url
will be used as redirected hostPlace the value of
email
into the input box as placeholder (to trick victim thinking its legit website)When victim press the
Proceed
button , they get redirected tourl
+key
where key is their email encrypted in base64
CSRF placing email obtained from parameter
Must have base64 email (key) of victim (atob to encrypt and btoa to decrypt base64)
Pass in the value as email place holder to trick victim
Last updated
Was this helpful?