"This string was randomly generated. It will not be recognizable text. You have 3 seconds to take the information from the website, and apply that to your algorithm.
Generated String: 73"51"92"51"92"81"66"87"71"48"61"62"76"87"95"
Shift: 15"
-
-
url = 'http://www.websitehere.php'
-
strSession = 'PHPSESSID=<cookiehere>'
-
dicHeaders = {'COOKIE': strSession}
-
req = urllib2.Request(url, None, dicHeaders)
-
f = urllib2.urlopen(req)
-
strContext = f.read()
-
I think the shift is either to subtract or add to the ordinals of the characters, if that makes any sense........
-
.join(chr(ord(c)15) for c in original_string)
-