New vote xploit for Etternion menu

Shout-Out

User Tag List

Page 6 of 7 FirstFirst ... 234567 LastLast
Results 76 to 90 of 104
  1. #76
    Morez's Avatar Member
    Reputation
    2
    Join Date
    Mar 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried, but doesnt seems to work for me :wave:
    Maybe it works for someone else, I'm using Python26 on Windows XP.

    Code:
    #code by darkinjection
    import urllib2
    from urllib import *
    from httplib import *
    from random import randint
    import socket
    
    cookie_size = 33
    lcharset = ['a','b','c','d','e','f','g','h','i','j',
    'k','l','m','n','o','p','q','r','s','t','x','w','y','z','1','2','3','4','5','6','7','8','9','0']
    host = 'http://www.funserver.cc/getpoint.php?url=xtremetop100'
    host = 'http://www.funserver.cc/getpoint.php?url=wow.top100arena'
    host = 'http://www.funserver.cc/getpoint.php?url=gamesites200'
    host = 'http://www.funserver.cc/getpoint.php?url=topgamesites'
    host = 'http://www.funserver.cc/getpoint.php?url=gtop100'
    
    def proxy_use(proxy):
    	socket.setdefaulttimeout(7)
    	cookie_hash = ''
    	print('[+]Trying proxy :' + str(proxy))
    	try:
    		HTTPConnection(proxy).connect()
    		print('[*]Proxy Seems To Work')
    	except(socket.timeout):
    		print('[x]Proxy Timed... Try Another')
    		return
    	except:
    		print('[x]Proxy Failed Using Annother...')
    		return
    	for l in range(0,int(cookie_size)):
    		cookie_hash += lcharset[randint(0,33)]
    	cod = randint(1000,9000)
    	for i in range(0,3):
    		vote(proxy,cookie_hash,cod)
    		
    def vote(prox,hash,ccode):
    	post_data = [('char',u_name),('code',ccode),('checkCode',ccode),('submit','vote+now')]
    	clen = str(len(post_data))
    	cookies = {'Cookie: PHPSESSID=':hash}
    	lsize = {'Content-Length:':clen}
    	uagent = {'User-Agent':'Mozilla/5.0'}
    	hoost = {'Host':'www.funserver.cc'}
    	keep = {'Connection':'Keep-Alive'}
    	p_support =  urllib2.ProxyHandler({'http':prox})
    	try:
    		proxyfier = urllib2.build_opener(p_support)
    	except:
    		print('[x]Error In Build_Opener()')
    	urllib2.install_opener(proxyfier)
    	data = urlencode(post_data)
    	#print data
    	req = urllib2.Request(host,data,uagent,cookies,lsize)
    	try:
    		response = urllib2.urlopen(req).read()
    	except:
    		None
    	#print response
    	#response = urlopen(req)
    	#print response.read()
    	#try:
    		#req = Request(host,post_data,cookies)
    		#response = urlopen(req).read()
    	#except(URLError):
    	#	print('Error')
    	#	exit(1)
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'|D|a|r|k|I|n|j|e|c|t|i|o|n|'
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    print'|S|t|i|l|l| |B|e|t|t|a| |P|r|o|g|r|a|m|'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    u_name = raw_input('[+]Give The User Name :')
    f_path = raw_input('[+]Give The Proxy File Path :')
    
    words = open(f_path,'r').readlines()
    for word in words:
    	word = word.replace('\r','').replace('\n','')
    	proxy_use(word)

    New vote xploit for Etternion
  2. #77
    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)
    this is not my program(another user add some lines without know what that lines do) go download it on the main page

  3. #78
    Morez's Avatar Member
    Reputation
    2
    Join Date
    Mar 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The one on main page for Eternion-wow doesnt even work for me

  4. #79
    Maydie's Avatar Active Member
    Reputation
    59
    Join Date
    Apr 2007
    Posts
    366
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Morez View Post
    I tried, but doesnt seems to work for me :wave:
    Maybe it works for someone else, I'm using Python26 on Windows XP.

    Code:
    #code by darkinjection
    import urllib2
    from urllib import *
    from httplib import *
    from random import randint
    import socket
    
    cookie_size = 33
    lcharset = ['a','b','c','d','e','f','g','h','i','j',
    'k','l','m','n','o','p','q','r','s','t','x','w','y','z','1','2','3','4','5','6','7','8','9','0']
    host = 'http://www.funserver.cc/getpoint.php?url=xtremetop100'
    host = 'http://www.funserver.cc/getpoint.php?url=wow.top100arena'
    host = 'http://www.funserver.cc/getpoint.php?url=gamesites200'
    host = 'http://www.funserver.cc/getpoint.php?url=topgamesites'
    host = 'http://www.funserver.cc/getpoint.php?url=gtop100'
    
    def proxy_use(proxy):
        socket.setdefaulttimeout(7)
        cookie_hash = ''
        print('[+]Trying proxy :' + str(proxy))
        try:
            HTTPConnection(proxy).connect()
            print('[*]Proxy Seems To Work')
        except(socket.timeout):
            print('[x]Proxy Timed... Try Another')
            return
        except:
            print('[x]Proxy Failed Using Annother...')
            return
        for l in range(0,int(cookie_size)):
            cookie_hash += lcharset[randint(0,33)]
        cod = randint(1000,9000)
        for i in range(0,3):
            vote(proxy,cookie_hash,cod)
            
    def vote(prox,hash,ccode):
        post_data = [('char',u_name),('code',ccode),('checkCode',ccode),('submit','vote+now')]
        clen = str(len(post_data))
        cookies = {'Cookie: PHPSESSID=':hash}
        lsize = {'Content-Length:':clen}
        uagent = {'User-Agent':'Mozilla/5.0'}
        hoost = {'Host':'www.funserver.cc'}
        keep = {'Connection':'Keep-Alive'}
        p_support =  urllib2.ProxyHandler({'http':prox})
        try:
            proxyfier = urllib2.build_opener(p_support)
        except:
            print('[x]Error In Build_Opener()')
        urllib2.install_opener(proxyfier)
        data = urlencode(post_data)
        #print data
        req = urllib2.Request(host,data,uagent,cookies,lsize)
        try:
            response = urllib2.urlopen(req).read()
        except:
            None
        #print response
        #response = urlopen(req)
        #print response.read()
        #try:
            #req = Request(host,post_data,cookies)
            #response = urlopen(req).read()
        #except(URLError):
        #    print('Error')
        #    exit(1)
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'|D|a|r|k|I|n|j|e|c|t|i|o|n|'
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    print'|S|t|i|l|l| |B|e|t|t|a| |P|r|o|g|r|a|m|'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    u_name = raw_input('[+]Give The User Name :')
    f_path = raw_input('[+]Give The Proxy File Path :')
    
    words = open(f_path,'r').readlines()
    for word in words:
        word = word.replace('\r','').replace('\n','')
        proxy_use(word)
    Trying this code now, dont know if it works yet.
    Will edit after its finished.

  5. #80
    Morez's Avatar Member
    Reputation
    2
    Join Date
    Mar 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now it worked after some time, but its really slow
    And I need for Funserver.cc, I don't think its same host
    Code:
    host = 'http://www.eternion-wow.com/getpoint.php?url=xtremetop100'
    cause it wont give me any points with "host = 'http://www.funserver.cc/getpoint.php?url=xtremetop100'"

  6. #81
    Maydie's Avatar Active Member
    Reputation
    59
    Join Date
    Apr 2007
    Posts
    366
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, i took the liberty of adding 2 new votingpages for Eternion.
    wich means, not you can actually get 3 points per. working proxy.
    dont know its a repost or not.

    Code:
    #code by darkinjection
    import urllib2
    from urllib import *
    from httplib import *
    from random import randint
    import socket
    
    cookie_size = 33
    lcharset = ['a','b','c','d','e','f','g','h','i','j',
    'k','l','m','n','o','p','q','r','s','t','x','w','y','z','1','2','3','4','5','6','7','8','9','0']
    host = 'http://www.eternion-wow.com/getpoint.php?url=xtremetop100'
    host = 'http://www.eternion-wow.com/getpoint.php?url=wow.top100arena'
    host = 'http://www.eternion-wow.com/getpoint.php?url=gamesites200'
    
    def proxy_use(proxy):
        socket.setdefaulttimeout(7)
        cookie_hash = ''
        print('[+]Trying proxy :' + str(proxy))
        try:
            HTTPConnection(proxy).connect()
            print('[*]Proxy Seems To Work')
        except(socket.timeout):
            print('[x]Proxy Timed... Try Another')
            return
        except:
            print('[x]Proxy Failed Using Annother...')
            return
        for l in range(0,int(cookie_size)):
            cookie_hash += lcharset[randint(0,33)]
        cod = randint(1000,9000)
        for i in range(0,3):
            vote(proxy,cookie_hash,cod)
            
    def vote(prox,hash,ccode):
        post_data = [('char',u_name),('code',ccode),('checkCode',ccode),('submit','vote+now')]
        clen = str(len(post_data))
        cookies = {'Cookie: PHPSESSID=':hash}
        lsize = {'Content-Length:':clen}
        uagent = {'User-Agent':'Mozilla/5.0'}
        hoost = {'Host':'www.eternion-wow.com'}
        keep = {'Connection':'Keep-Alive'}
        p_support =  urllib2.ProxyHandler({'http':prox})
        try:
            proxyfier = urllib2.build_opener(p_support)
        except:
            print('[x]Error In Build_Opener()')
        urllib2.install_opener(proxyfier)
        data = urlencode(post_data)
        #print data
        req = urllib2.Request(host,data,uagent,cookies,lsize)
        try:
            response = urllib2.urlopen(req).read()
        except:
            None
        #print response
        #response = urlopen(req)
        #print response.read()
        #try:
            #req = Request(host,post_data,cookies)
            #response = urlopen(req).read()
        #except(URLError):
        #    print('Error')
        #    exit(1)
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'|D|a|r|k|I|n|j|e|c|t|i|o|n|'
    print'+-+-+-+-+-+-+-+-+-+-+-+-+-+'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    print'|S|t|i|l|l| |B|e|t|t|a| |P|r|o|g|r|a|m|'
    print'+-+-+-+-+-+ +-+-+-+-+-+ +-+-+-+-+-+-+-+'
    u_name = raw_input('[+]Give The User Name :')
    f_path = raw_input('[+]Give The Proxy File Path :')
    
    words = open(f_path,'r').readlines()
    for word in words:
        word = word.replace('\r','').replace('\n','')
        proxy_use(word)
    Still, its not my work. Not even sure if it works
    Last edited by Maydie; 05-06-2009 at 11:43 AM.

  7. #82
    mixutus's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have the same problem what do i type in proxy file path??

  8. #83
    Dotagod's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok guys when it says proxy file path u need to drag and drop the proxy .lst in to the python then u should delete the " after that hit enter. u need to get proxys from some where

  9. #84
    woozabi10's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    some reason i get very little to none votes. anyone having same issues?

  10. #85
    Morez's Avatar Member
    Reputation
    2
    Join Date
    Mar 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by woozabi10 View Post
    some reason i get very little to none votes. anyone having same issues?
    Same, But be glad it works

  11. #86
    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)
    GUYZ IF U WANT TO CHANGE THE SOURCE JUST DONT DO IT U CODING IT TOTALY WRONG

    THAT WAS WRONG
    Code:
    host = 'http://www.eternion-wow.com/getpoint.php?url=xtremetop100'
    host = 'http://www.eternion-wow.com/getpoint.php?url=wow.top100arena'
    host = 'http://www.eternion-wow.com/getpoint.php?url=gamesites200'
    if u want some changes then drop me a pm else dont touch the script cos its ****ed up

  12. #87
    callum_fix's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hay i cant get it to work if posable can someone add some to my account the name is owned3 thanx

  13. #88
    AlienCCL's Avatar Active Member
    Reputation
    28
    Join Date
    Aug 2008
    Posts
    444
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please stop rise dead thread .
    Yes , I sit right now in front of the monitor in a cap with ear-flaps with a balalaika, a nested doll, vodka and a comrad Lenin. And behind my window dancing bears with jingles in hands .

  14. #89
    eatos32's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey put updated version on mediafire pls

  15. #90
    eatos32's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Eternion-WoW Home - Eternion-WoW here is a new site for eternion maybe they changed vote getway system to that site

Page 6 of 7 FirstFirst ... 234567 LastLast

Similar Threads

  1. The New Expansion Pack for World of warcraft whats your Opinion on it?
    By Anthony14 in forum World of Warcraft General
    Replies: 21
    Last Post: 09-29-2007, 01:10 PM
  2. Official New Alliance Race for World of Warcraft
    By Matt in forum World of Warcraft General
    Replies: 18
    Last Post: 11-27-2006, 07:25 PM
  3. New low prices for the Holiday's?
    By bassman in forum World of Warcraft General
    Replies: 6
    Last Post: 11-15-2006, 09:47 PM
  4. New Instance GUIDE FOR TBC!
    By Datonking in forum World of Warcraft Exploits
    Replies: 45
    Last Post: 09-23-2006, 03:55 PM
  5. Any new working values for cheat engine
    By ygf1975 in forum World of Warcraft General
    Replies: 3
    Last Post: 09-20-2006, 08:47 PM
All times are GMT -5. The time now is 03:36 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