Title: SPACE MOOT VOTE SPAMMER Author: Anonymous Pastebin link: http://pastebin.com/SSbPQNp6 First Edit: Monday 1st of April 2013 05:00:07 PM CDT Last Edit: Monday 1st of April 2013 05:00:07 PM CDT #SPACE MOOT VOTE SPAMMER BY AN ANON FROM /g/ #with multithreading for maximum votes   from httplib2 import Http from urllib import urlencode import random numberofthreads=10 import threading   a=0 class fuckingthread ( threading.Thread ):   def run ( self ):     a=0     while 1:       a+=1       h = Http(disable_ssl_certificate_validation=True)       data = {'user[_explicitType]': 'User', 'user[firstName]': str(''.join(random.choice("abcdefghij") for x in range(14))), 'user[lastName]': str(''.join(random.choice("abcdefghij") for x in range(14))), 'user[emailAddress]': str(''.join(random.choice("abcdefghij") for x in range(14))) + '@yahoo.com' , 'user[dateOfBirth]':'1987-12-13', 'user[origin]': 'hub', 'user[locale]':'en_US', 'user[facebookConnected]': 'false', 'user[vkontaktConnected]':'false', 'user[isMobile]':'false', 'user[password]': str(''.join(random.choice("abcdefghij") for x in range(14))), 'createTemporarySubmission':'false', 'locale':'en_US'}           headers = {'Content-type': 'application/x-www-form-urlencoded','User-Agent': 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Referer': 'https://www2.axeapollo.com/en_US/register'}       resp, content = h.request("https://www2.axeapollo.com/gateway.php?action=User.register", "POST" ,headers=headers, body=urlencode(data))       #print resp       print content               print ""       cook = resp['set-cookie']             cook = cook[cook.rfind("PHPSESSID"):cook[cook.rfind("PHPSESSID"):].find(";") + cook.rfind("PHPSESSID") + 1] + cook[cook.rfind("axeapollo"):cook[cook.rfind("axeapollo"):].find(";") + cook.rfind("axeapollo") + 1] + cook[cook.rfind("AWSELB"):cook[cook.rfind("AWSELB"):].find(";") + cook.rfind("AWSELB") + 1] + cook[cook.rfind("AXEASAA"):cook[cook.rfind("AXEASAA"):].find(";") + cook.rfind("AXEASAA") + 1]               data = {'userId': '122849', 'options[type]':'user','locale': 'en_US'}       headers = {'Cookie': cook,'Content-type': 'application/x-www-form-urlencoded; charset=utf-8','User-Agent': 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Accept': 'application/json','Referer': 'https://www2.axeapollo.com/en_US/122849/christopher-poole','X-Requested-With': 'XMLHttpRequest','X-Request': 'JSON', 'Pragma': 'no-cache'}             resp, content = h.request("https://www2.axeapollo.com/gateway.php?action=User.vote", "POST" ,headers=headers, body=urlencode(data))       #print resp       print content       print a   for i in range(numberofthreads):   currentthread = fuckingthread()   currentthread.start()