Wow.exe Custom build menu

User Tag List

Results 1 to 12 of 12
  1. #1
    happyhack's Avatar Private
    Reputation
    8
    Join Date
    Apr 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Wow.exe Custom build

    Hi, i am trying to modify my Wow.exe build because i made my server only accept connection from a client that installed an update. I read that topic http://www.mmowned.com/forums/genera...m-wow-exe.html ,so i changed my wow.exe build from 12340 to 12341 as u can see there ImageShack® - Online Photo and Video Hosting
    but the problem is that the build number sent to my server is yet 12340, i searched all occurences of "build" or "12340" with IDA but it seems that the code sent to the server is hidden. Does someone knows how to solve this problem, or someone that knows asm could help me? I'm just a newbie with asm.
    Sorry about my english
    Last edited by happyhack; 06-01-2011 at 03:02 PM.

    Wow.exe Custom build
  2. #2
    chrissybaby's Avatar Member
    Reputation
    4
    Join Date
    Apr 2009
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry for off topic but that link made me wanna make my own wow.exe

  3. #3
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Take a look at SkyFire's injection. Its not really what u want to do but it will give you an idea how to inject.

  4. #4
    happyhack's Avatar Private
    Reputation
    8
    Join Date
    Apr 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi DarkLinux, thanks for your answer, i read some c++ files of that injector. I saw it could read from process memory, and change a .dll to an other, right? I'm not sure to know what do u suggest... Yesterday i tried to change the wow.exe to an older official release, i saw the build number sent to my server changed too, so I know the build number is in wow.exe.

  5. #5
    streppel's Avatar Active Member
    Reputation
    78
    Join Date
    Mar 2007
    Posts
    196
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe search in the process with cheat engine or something similar? ofc the build version has to be in there

  6. #6
    Terrorblade's Avatar Contributor I spent 5k CC and all I got was this user title
    CoreCoins Purchaser
    Reputation
    153
    Join Date
    Oct 2010
    Posts
    312
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happyhack View Post
    Hi, i am trying to modify my Wow.exe build because i made my server only accept connection from a client that installed an update. I read that topic http://www.mmowned.com/forums/genera...m-wow-exe.html ,so i changed my wow.exe build from 12340 to 12341 as u can see there ImageShack® - Online Photo and Video Hosting
    but the problem is that the build number sent to my server is yet 12340, i searched all occurences of "build" or "12340" with IDA but it seems that the code sent to the server is hidden. Does someone knows how to solve this problem, or someone that knows asm could help me? I'm just a newbie with asm.
    Sorry about my english
    Search the build name in a hex editing program like hex workshop, just keep trying each occurrence the search finds and eventually you will have it sending a different build number.
    Stuff & Things

  7. #7
    happyhack's Avatar Private
    Reputation
    8
    Join Date
    Apr 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Streppel : Thanks guy ! I didn't know it, very interresting software. I didn't found anything yet, but i'm working on. It seems some memory area with value 12340 (build number), that i changed, change back to 12340 while a connection. The only way i know, should be found that memory operations in asm, and change them one by one. If someone knows a simpler way, so tell me.

    Terrorblade : Yea, i think about it ^^ I've done it, but the build number was still the same. That's why i think the build number is obscured or modified with memory operations.
    Last edited by happyhack; 06-07-2011 at 03:12 PM.

  8. #8
    Terrorblade's Avatar Contributor I spent 5k CC and all I got was this user title
    CoreCoins Purchaser
    Reputation
    153
    Join Date
    Oct 2010
    Posts
    312
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happyhack View Post
    Streppel : Thanks guy ! I didn't know it, very interresting software. I didn't found anything yet, but i'm working on. It seems some memory area with value 12340 (build number), that i changed, change back to 12340 while a connection. The only way i know, should be found that memory operations in asm, and change them one by one. If someone knows a simpler way, so tell me.

    Terrorblade : Yea, i think about it ^^ I've done it, but the build number was still the same. That's why i think the build number is obscured or modified with memory operations.
    Are you searching for it as a 32 unsigned int? Cause its not stored as a string.
    Stuff & Things

  9. #9
    happyhack's Avatar Private
    Reputation
    8
    Join Date
    Apr 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Terrorblade View Post
    Are you searching for it as a 32 unsigned int? Cause its not stored as a string.
    I searched for it as a string, and as an hex value too. So I should find it if it was stored as an 32 int or 16 int. But the build number was still the same.

    ---------- Post added at 03:08 AM ---------- Previous post was at 02:58 AM ----------

    OMG I just found it guys.
    Originally Posted by happyhack View Post
    I searched for it as a string, and as an hex value too. So I should find it if it was stored as an 32 int or 16 int. But the build number was still the same.
    I just try again to do it. Really sorry about it, it seems i was wrong, I really don't know what I did the first time, I just found it. I will post here the offset of the build number sent to the server. Thanks guys for your help ^^

  10. #10
    Terrorblade's Avatar Contributor I spent 5k CC and all I got was this user title
    CoreCoins Purchaser
    Reputation
    153
    Join Date
    Oct 2010
    Posts
    312
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happyhack View Post
    I searched for it as a string, and as an hex value too. So I should find it if it was stored as an 32 int or 16 int. But the build number was still the same.

    ---------- Post added at 03:08 AM ---------- Previous post was at 02:58 AM ----------

    OMG I just found it guys.

    I just try again to do it. Really sorry about it, it seems i was wrong, I really don't know what I did the first time, I just found it. I will post here the offset of the build number sent to the server. Thanks guys for your help ^^
    your welcome.
    Stuff & Things

  11. #11
    happyhack's Avatar Private
    Reputation
    8
    Join Date
    Apr 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, you could see it there Imageshack - sansre2wz.png
    the offset of the build number is 5020144 in Wow.exe, on the picture i changed 3430 to 3530 ( = 12341) and as you can see, the number sent to the server is 12341.
    I'm working with Wow.exe 3.3.5.12340 but I think we could change it with cataclysm too by the same way.
    Thanks and hope this topic could help someone else.

    Other thing i found, just few bits before, at offset 5020131, 5020135 and 5020139 are the high version number. I changed them from 3.3.5 to 9.8.6 on that picture.
    http://imageshack.us/f/706/sansre3e.png/
    Last edited by happyhack; 06-08-2011 at 12:12 PM.

  12. #12
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happyhack View Post
    So, you could see it there Imageshack - sansre2wz.png
    the offset of the build number is 5020144 in Wow.exe, on the picture i changed 3430 to 3530 ( = 12341) and as you can see, the number sent to the server is 12341.
    I'm working with Wow.exe 3.3.5.12340 but I think we could change it with cataclysm too by the same way.
    Thanks and hope this topic could help someone else.
    Useful information, thanks for sharing your results. +Rep

Similar Threads

  1. Custom wow.exe
    By yamax in forum Programming
    Replies: 16
    Last Post: 01-03-2011, 10:37 AM
  2. [How-To] Edit the build of WoW.exe
    By yamax in forum Programming
    Replies: 2
    Last Post: 11-20-2010, 02:29 PM
  3. strange command in decompile of wow.exe
    By vivec45 in forum World of Warcraft General
    Replies: 1
    Last Post: 08-25-2007, 07:35 AM
  4. WoW Thing! Custom Dir.
    By issacobra in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 03-28-2007, 06:25 PM
  5. Error in checking WoW.exe CRC code hack?
    By Trichelieu in forum World of Warcraft General
    Replies: 0
    Last Post: 06-11-2006, 02:24 PM
All times are GMT -5. The time now is 04:43 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