document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import sys
  2. import copy
  3. import urllib
  4. import re
  5. import threading
  6. import tweepy
  7.  
  8. user = sys.argv[1]
  9.  
  10. a = tweepy.API()
  11.  
  12. followers = tweepy.Cursor(a.followers, id = user)
  13.  
  14. for user in followers.items():
  15.    
  16.     follower = user.screen_name
  17.    
  18.         follower = follower.rstrip(\'\\n\')
  19.    
  20.     params = urllib.urlencode({\'new\': \'true\', \'pinf_uio_app%2Fstructure%2Fpublic%2Findex_main__username_value\': follower})
  21.    
  22.     f = urllib.urlopen("http://www.ashleymadison.com/app/interface/userlookup.p?%s" % params)
  23.    
  24.     resultadoweb = f.read()
  25.  
  26.     m = re.search(\'valid\', resultadoweb)
  27.  
  28.     if not m:
  29.         print "Encontrado Usuario: %s" % follower
');