send request using a proxy server from proxy list
|
|
||
|---|---|---|
| alpha version(needs tor) | ||
| Standalone version | ||
| banner.JPG | ||
| contestWebsite.png | ||
| README.md | ||
Animal Contest vote cheat
It's a little program need for cheat votes for a child animal contest(i've coded it for my sister).
It's possible because website check only your ip address for voting, and i used a socks5 proxy servers to bypass protection contest Actually this program just send request using a proxy server from proxy list
Functions
- Cheat voting for "vote id"
url = 'example-website.com'
ip = ['proxy ips from .txt file']
requests.get(url, proxies=dict(http = 'socks5://'+ip, https = 'socks5://'+ip))
-
Cheat voting with Tor
-
Generating proxy ip list from html file of 'http://spys.one/proxies/'
with open('socks.html', encoding='utf-8') as f:
html = f.read()
proxyfile = open('proxy.txt', 'w')
soup = BeautifulSoup(html, 'html.parser')
for script in soup.find_all('script'):
script.extract()
for i in soup.find_all('tr', 'spy1xx'):
ips = i.find_next('font','spy14')
if ips not in content:
print(ips.get_text() + ':1080')
print(ips.get_text() + ':1080', file=proxyfile)
- Deleting list of used proxy ips(just in case)
try:
os.remove('usedproxy.txt')
except:
print('Already deleted..')
time.sleep(2)
- Collecting information about contest members
for i in lots:
member = i.find('p', 'who').get_text()
votes = i.find('p', 'compe_comment').get_text()
votes = votes.replace(' | Голосую', '')
votes = int(votes.replace('Голосов: ', ''))
try:
link = i.find(text='Голосую').parent.get('href')
link = link.replace('/competition/vote/', '')
link = link.replace('/', '')
except AttributeError:
link = lang.get('outlinkMembers')
if not link in allready or link == lang.get('outlinkMembers'):
allready.append(link)
member = link + ': ' + member
memDict = {member : votes}
membersDict.append(memDict)
members += 1
print(tui.updScore(lang.get('memMembers'), members, 0), end='\r')
- Open contest website
tui.ul(['"Мохнатые, пернатые" - 277'])
contest = input('Введи номер конкурса: ')
if contest.isnumeric() and len(contest):
url = 'https://stolicadetstva.com/competition/work/' + contest
webbrowser.open(url, new=0, autoraise=True)
Screenshot of the website
Additional info
easyTui
easyTui it's my module for easy TUI in my programs
Alpha version NO MORE UPDATES
this is my first version of this cheat. It's uses a Tor browser with subprocess module. It's bad but it my first program
for i in range(n): x = 0 while x < len(links): #tor.open_new_tab(links[x-1]) tor.open_new_tab('https://stolicadetstva.com/competition/vote/47714/') x += 1 time = random.randint(50,65) while time > 0: tui.updatingScore('До закрытия браузера', time, 1) time -= 1 subprocess.run(['TASKKILL', '/F', '/IM', 'firefox.exe'], stdout=subprocess.DEVNULL) classi += 1 print('\a', end = '')
