WoW Account Existance Checker (useful for password cracking) menu

Shout-Out

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    valiliv's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2007
    Posts
    242
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice prog.

    though i never understood how this brute password crap is worth the effort

    - you get valid usernames, but cannot know if they are active
    - then have to match to a password
    - both the above require good lists

    finally you might end up with some accounts, but no guarantee there is anything but a lvl 15 on them.... plus no email or secret password, so pretty much a 100% guarantee they will get it back, change password, and have the GM restore whatever might be missing.

    WoW Account Existance Checker (useful for password cracking)
  2. #17
    cohen101's Avatar Member
    Reputation
    19
    Join Date
    May 2008
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its a pretty good program

  3. #18
    XinuX's Avatar Contributor
    Reputation
    129
    Join Date
    Apr 2007
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good job +rep

  4. #19
    bleaksoul123's Avatar Member
    Reputation
    14
    Join Date
    Mar 2008
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey thanks man
    KIRBY TIME! <(^.^<) <(^.^)> (>^.^)> "Dam Skippy Son"

  5. #20
    Oppochaos's Avatar Active Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good job nice program

  6. #21
    cohen101's Avatar Member
    Reputation
    19
    Join Date
    May 2008
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    your welcome, and thank you!

  7. #22
    furion234's Avatar Active Member
    Reputation
    32
    Join Date
    Jun 2008
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good job , +rep

  8. #23
    Fireblast's Avatar Contributor
    Reputation
    195
    Join Date
    Aug 2008
    Posts
    883
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thnx man..

  9. #24
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if (getInfo("accountName=" + str2, "http://www.worldofwarcraft.com/loginsupport/password.html").Contains("nswer"))

    That's pretty much all this does? You do realize that all this will do is provide you with is the "Either that account name doesn't exist or the e-mail is incorrect." message upon returning getInfo, correct?

    Pretty much, this program is useless as hell. (And you haven't encrypted jack shit btw.)

    Here, I assume this is what you wanted your entire app to do;

    Code:
    private static readonly Regex _passRegex = new Regex(@"[^\w!""#\$,%]");
            private static readonly Regex _userRegex = new Regex(@"\W");
    
            public static bool ValidateAccount(string username, string password)
            {
                if (!ValidateUsername(username) || !ValidatePassword(password))
                {
                    return false;
                }
                return username != password;
            }
    
            public static bool ValidatePassword(string password)
            {
                return password.Length >= 8 && password.Length <= 16 && !_passRegex.Match(password).Success;
            }
    
            public static bool ValidateUsername(string username)
            {
                return username.Length >= 3 && username.Length <= 16 && !_userRegex.Match(username).Success;
            }
    Ripped out of STS 2.1. Enjoy. And next time, do something useful.

  10. #25
    vabatta's Avatar Member
    Reputation
    5
    Join Date
    May 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You may upload in mediafire.com your text 10k name?

  11. #26
    ShadowSyth's Avatar Member
    Reputation
    14
    Join Date
    Feb 2008
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It didn't work for me.
    I tried 9 accs that i know is workin and 1 that doens't work.
    I just hit the button and nothin in the valid acc box.

  12. #27
    LuisMaia's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dont know how to work whit it man ... :S

  13. #28
    Miini2's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i get a text file for usernames? Do i have to creat one myself?

  14. #29
    alonoe's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    20
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks you for the soft

  15. #30
    cohen101's Avatar Member
    Reputation
    19
    Join Date
    May 2008
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    if (getInfo("accountName=" + str2, "http://www.worldofwarcraft.com/loginsupport/password.html").Contains("nswer"))

    That's pretty much all this does? You do realize that all this will do is provide you with is the "Either that account name doesn't exist or the e-mail is incorrect." message upon returning getInfo, correct?

    Pretty much, this program is useless as hell. (And you haven't encrypted jack shit btw.)

    Here, I assume this is what you wanted your entire app to do;

    Code:
    private static readonly Regex _passRegex = new Regex(@"[^\w!""#\$,%]");
            private static readonly Regex _userRegex = new Regex(@"\W");
    
            public static bool ValidateAccount(string username, string password)
            {
                if (!ValidateUsername(username) || !ValidatePassword(password))
                {
                    return false;
                }
                return username != password;
            }
    
            public static bool ValidatePassword(string password)
            {
                return password.Length >= 8 && password.Length <= 16 && !_passRegex.Match(password).Success;
            }
    
            public static bool ValidateUsername(string username)
            {
                return username.Length >= 3 && username.Length <= 16 && !_userRegex.Match(username).Success;
            }
    Ripped out of STS 2.1. Enjoy. And next time, do something useful.
    Not all of us are 200 pound losers without a gf.
    Idc about people decompiling this

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Selling] Personal Molten-WoW account! over 200$ used for items!!! WOTLK
    By Aztra in forum World of Warcraft Buy Sell Trade
    Replies: 3
    Last Post: 11-23-2013, 03:28 AM
  2. [Selling] EU WoW account, 2x85, 4x80, Use for farming or playing, PayPal £60!
    By wee3js in forum WoW-EU Account Buy Sell Trade
    Replies: 0
    Last Post: 11-18-2011, 12:09 PM
  3. WTT Wow Account (2 70's) For a US GameCard
    By Cryt in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 6
    Last Post: 08-28-2008, 10:05 PM
All times are GMT -5. The time now is 03:24 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