# Made by VUAL.... For The Benjamins Baby!!! # # [BEN] 1Xhmfveu6mFduDarGfjAD2aKQ2xcW1rW1 << donate BEN # # > sudo apt-get install python -y # > dump this into blah.py # > python blah.py # .... leave for a few days while you are at work # This dosnt use proxies or vpn or anything its legit it just uses you and only votes once per hour. # Could be made to use proxies in a couple lines of code with incorperated proxy harvester and scrapper.... # ..... but that would not be sportsman like, so this is all you get! # # # #################################### import urllib.parse import urllib.request import time while(1 == 1): url = 'https://www.mintpal.com/action/addVote' values = {'coin' : '41'} headers = { 'User-Agent' : 'Mozilla/5.0 (X11; Linux i686; rv:26.0) Gecko/20100101 Firefox/26.0', 'Host' : 'www.mintpal.com', 'Accept' : '*/*', 'Referer' : 'https://www.mintpal.com/voting', 'X-Requested-With' : 'XMLHttpRequest'} data = urllib.parse.urlencode(values) data = data.encode('utf-8') # data should be bytes req = urllib.request.Request(url, data, headers) response = urllib.request.urlopen(req) the_page = response.read() print(the_page) time.sleep(3769) #sleep 1hr and a little