nyk0r

Hidden Ochan IronPython

Aug 30th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. » import System.Net.HttpWebRequest as request
  2. » letters = 'abcdefghijklmnopqrstuvwxyz'
  3. » for pair in ['{0}{1}'.format(b, a) for a in letters for b in letters]:
  4.     try:
  5.         url = 'http://www.0chan.ru/_{0}'.format(pair)
  6.         r = request.Create(url)
  7.         if r.GetResponse().StatusCode == System.Net.HttpStatusCode.OK:
  8.             print url
  9.     except:
  10.         pass
  11.        
  12.         http://www.0chan.ru/_aa
  13. Traceback (most recent call last):
  14. SystemError: Thread was being aborted.
  15. »
Advertisement
Add Comment
Please, Sign In to add comment