[Request] WoW Account checker menu

Shout-Out

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 43
  1. #16
    tttommeke's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    613
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Going to start with it, function list :

    - Reads out a list (username-password...)

    - Prints out in shape as :
    -- Working + Gametime + BC
    -- Working + Gametime
    -- Working
    -- Dead

    - opensource

    [Request] WoW Account checker
  2. #17
    Nolixz's Avatar ★ Elder ★
    Reputation
    1000
    Join Date
    Oct 2006
    Posts
    1,371
    Thanks G/R
    6/17
    Trade Feedback
    16 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry, it dosent seem to work, all it says is Invalid login info


  3. #18
    Miguel9614's Avatar Member
    Reputation
    25
    Join Date
    Aug 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nolixz View Post
    Sorry, it dosent seem to work, all it says is Invalid login info
    Are you sure the login/pass is correct? haha I swear it worked for me =[

    tttommeke: what language are you coding it in?

  4. #19
    Nolixz's Avatar ★ Elder ★
    Reputation
    1000
    Join Date
    Oct 2006
    Posts
    1,371
    Thanks G/R
    6/17
    Trade Feedback
    16 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried again, it DOES work Miguel Thanx for the effort, but would be cool if it could check gametime left, if credit card is there for auto pay?, Eu and us? and what would be RLY great was if it could change pw.. if some1 made a prog gr8 like that, i would pay them!


  5. #20
    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)
    That's alot of DOM work. (In C# at least)

    Shouldn't be too hard to do so however. I'll see what I can cook up later.

  6. #21
    tttommeke's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    613
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am scripting it in PERL but I am a bit stuckt at the post request.

  7. #22
    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)
    The post request needs to have all 4 fields.

    username
    password
    Login=Login

    And the LT Signature which changes each time the page is reloaded.

    Post byte data should be:

    username=<account>&password=<password>&lt=<lt signature that you grabbed from some form of regex>&Login=Login

    Maybe that helps a bit. Keep in mind, it's https, not http. So a few extra measures are needed.

    Quick snippet of what you would do in C#.

    Code:
                LTSignature = WebPage.GetWebPageRegex(@"https://www.worldofwarcraft.com/login/login?service=https%3A%2F%2Fwww.worldofwarcraft.com%2Faccount%2Findex.html");
                string PostDataStr = "username=" + txtAccount.Text + "&password=" + txtPassWord.Text + "&lt=" + LTSignature + "&Login=Login";
                byte[] post_data = Encoding.UTF8.GetBytes(PostDataStr);
                string additional_headers = "Content-Type: application/x-www-form-urlencoded";
                webBrowser1.Navigate(@"https://www.worldofwarcraft.com/login/login?service=https%3A%2F%2Fwww.worldofwarcraft.com%2Faccount%2Findex.html", "", post_data, additional_headers);
    And the regex grabber:

    Code:
    public static string GetWebPageRegex(string url)
            {
                var rx = new Regex(@"(?<=B<input type=""hidden"" name=""lt"" value="").+b");
                var webRequest = (HttpWebRequest)WebRequest.Create(url);
                webRequest.Timeout = 6000;
                var webResponse = (HttpWebResponse)webRequest.GetResponse();
                Stream responseStream = webResponse.GetResponseStream();
                string responseEncoding = webResponse.ContentEncoding.Trim();
                if (responseEncoding.Length == 0)
                {
                    responseEncoding = "us-ascii";
                }
                var responseReader = new StreamReader(responseStream, Encoding.GetEncoding(responseEncoding));
                Match _match = rx.Match(responseReader.ReadToEnd());
                return _match.ToString();
            }
    Of course having a var defined somewhere for the LTSignature.

    Hope that helps some.
    Last edited by Apoc; 03-15-2008 at 11:30 AM.

  8. #23
    Miguel9614's Avatar Member
    Reputation
    25
    Join Date
    Aug 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nolixz View Post
    Tried again, it DOES work Miguel Thanx for the effort, but would be cool if it could check gametime left, if credit card is there for auto pay?, Eu and us? and what would be RLY great was if it could change pw.. if some1 made a prog gr8 like that, i would pay them!
    Glad to hear it's working. I was planning on adding more things like you mentioned, however I have no active accounts to test it on. If you or anyone else would be willing to give me an active account to use a little, I could probably get some of those features working too.

    Of course I don't except people to just trust me, but maybe someone has a scammed account they don't care about or something like that.

  9. #24
    Nolixz's Avatar ★ Elder ★
    Reputation
    1000
    Join Date
    Oct 2006
    Posts
    1,371
    Thanks G/R
    6/17
    Trade Feedback
    16 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Send you an test acc for ya


  10. #25
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been running with VisualBASIC and I just can't get it to send the data to the web form (which is really PISSING ME OFF). The whole form in VB, the data collection and handling etc, I have working perfectly, it's just the talking to the web server I can't do >.<

  11. #26
    aznboy's Avatar Active Member
    Reputation
    45
    Join Date
    Jun 2007
    Posts
    807
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow you guys are smart people that know how to program XD. I want to learn but cant find out how

  12. #27
    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)
    ReidE96, check this out if you're working in VB.

  13. #28
    EmiloZ's Avatar Flying Piggy Back
    CoreCoins Purchaser
    Reputation
    538
    Join Date
    Jun 2007
    Posts
    1,393
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It dosnt work at EU accs :P
    Why fill up a signature?

  14. #29
    Ermok's Avatar Contributor
    Reputation
    212
    Join Date
    Jul 2007
    Posts
    447
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    EU servers offline that why ;p

  15. #30
    aznboy's Avatar Active Member
    Reputation
    45
    Join Date
    Jun 2007
    Posts
    807
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could you guy make it like check what is the highest character that is in there since i got two account that dont have game time. It is going to be a pain in the ass

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. WoW account checker...
    By liam22 in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 11-19-2008, 01:24 PM
  2. [Beta]WoW Account Checker
    By mjmorrell3 in forum World of Warcraft Bots and Programs
    Replies: 65
    Last Post: 11-11-2008, 02:12 PM
  3. [REQUEST] Custom Account Checker~$80
    By stigggs in forum Programming
    Replies: 4
    Last Post: 03-26-2008, 03:49 AM
All times are GMT -5. The time now is 08:21 PM. 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