document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/python
  2. import urllib
  3. page = urllib.urlopen("http://ctf.nullcon.net/challenges/programming/answer.php")
  4. content = page.read()
  5. print content
');