Thanks to Defience for the python code. Helped me to get the 10 words.
However, I'm having trouble with the submission part. How do I submit the form once I figure out the 10 words? I have tried many things I found through google.
The best I can get is the "Invalid referer. The requested URL /missions/prog/1/index.php will not be loaded." page.
- Code: Select all
url = 'http://www.hackthissite.org/missions/prog/1/index.php'
value = {'solution':answer} # answer being the string of 10 words
data = urllib.urlencode(value)
req = urllib2.Request(url,data,dicHeaders)
response = urllib2.urlopen(req)
There are too many unknowns for me to go any further. A little bit of info on form submission would be great!