DarkmoonWoW exploits. menu

Shout-Out

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    Traviswowlol's Avatar Member
    Reputation
    28
    Join Date
    Apr 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey look you can use CE on this server i just used the no CD exploit and WoWemu works with no DC, And i can use WPE to mod my hp and mana. wow this server rly is to ezy to hack! gimmeurlife... you will never find out how to fix the HP mod=]

    DarkmoonWoW exploits.
  2. #17
    gimmeurlife's Avatar Member
    Reputation
    12
    Join Date
    Aug 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Traviswowlol View Post
    hey look you can use CE on this server i just used the no CD exploit and WoWemu works with no DC, And i can use WPE to mod my hp and mana. wow this server rly is to ezy to hack! gimmeurlife... you will never find out how to fix the HP mod=]
    haha sure thing bud, if you think so.




    You think you're so uber because you know how to use CE and WPE lawl... All we would have to do is figure out a way to implement the Anti-WPE script into the server and modify it as needed.



    Code:
    /*
       Anti WPE-Pro
       Coded by a59
    */
    #include <windows.h>
    #include <stdio.h>
    
    unsigned long __stdcall AntiWPEPro( void* pVoid )
    {
       bool bHooked = false;
       unsigned char szBuffer[ 8 ];
    
       // First 6 bytes of of Send/Recv
       unsigned char bOriginal[ ] = "\x55"         // PUSH EBP
                             "\x8B\xEC\x83"   // MOV EBP, ESP
                             "\xEC\x10";   // SUB ESP, 10
    
       int i;
    
       unsigned long dwRecvCall = (unsigned long)GetProcAddress( GetModuleHandle( "WS2_32.dll" ), "recv" );
       unsigned long dwSendCall = (unsigned long)GetProcAddress( GetModuleHandle( "WS2_32.dll" ), "send" );
    
       while( true )
       {
          ReadProcessMemory( GetCurrentProcess( ), (void *)dwRecvCall, szBuffer, 6, 0 );
    
          for( i = 0; i < 6; i++ )
          {
             // If we find one part missing, write the original bytes back and break the loop
             if( bOriginal[ i ] != szBuffer[ i ] )
             {
                WriteProcessMemory( GetCurrentProcess( ), (void *)dwRecvCall, bOriginal, 6, 0 );
                break;
             }         
          }
    
          ReadProcessMemory( GetCurrentProcess( ), (void *)dwSendCall, szBuffer, 6, 0 );
    
          for( i = 0; i < 6; i++ )
          {
             // Send + Recvs first 6 bytes are the same, we can use the same buffer
             if( bOriginal[ i ] != szBuffer[ i ] )
             {
                WriteProcessMemory( GetCurrentProcess( ), (void *)dwSendCall, bOriginal, 6, 0 );
                break;
             }
          }
    
          Sleep( 500 );
       }
    
       return 0;
    };
    
    int main( )
    {
       LoadLibrary( "WS2_32.dll" );
       CreateThread( 0, 0, &AntiWPEPro, 0, 0, 0 );
    
       getchar( );
       system( "PAUSE" );
    
       return 0;
    };

    And even if it wasn't possible you never know when a GM will be right next to you .invis'd and ready to hit the "IP Ban" on you....


    P.S. - You know how to hack using a 3rd party program, you're cool now... Go high-five your buddies



    Last edited by gimmeurlife; 07-05-2009 at 11:29 PM.

  3. #18
    Confucius's Avatar Super Moderator Don't Look Back in Anger

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1418
    Join Date
    Oct 2007
    Posts
    2,809
    Thanks G/R
    302/311
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Is this the same Dark Moon WoW as the old darkmoon-wow.com? I loved that server!!!!!!!

  4. #19
    thebigman's Avatar Contributor Reliable Trader
    CoreCoins Purchaser
    Reputation
    89
    Join Date
    Dec 2008
    Posts
    605
    Thanks G/R
    2/0
    Trade Feedback
    26 (96%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Vote Shop Temporarily Disabled

    The vote shop will be temporarily disabled while we get some things fixed on it. You may still vote and collect your vote points in the meantime and they will be redeemable as soon as it is fixed. It will be back up as soon as possible, we just want to ensure the security of the site and the players who enjoy their time here so please be patient.
    Posted by gimmeurlife July 2, 2009 0 comments



    This no longer works.

    @ gimmeurlife
    Stop acting like a little bitch. People post exploits here, we use them, you guys fix them, if you want to discipline us, gtfo. This isn't the section for legit stuff. Its like the scam section, if you don't like it, stop reading it, stop acting like a little bitch because your server was using an outdated, flawed vote / donor shop page.


    edit: Stop hiding behind donor status.

  5. #20
    lol553's Avatar Member
    Reputation
    3
    Join Date
    May 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gimmeurlife View Post
    haha sure thing bud, if you think so.




    You think you're so uber because you know how to use CE and WPE lawl... All we would have to do is figure out a way to implement the Anti-WPE script into the server and modify it as needed.



    Code:
    /*
       Anti WPE-Pro
       Coded by a59
    */
    #include <windows.h>
    #include <stdio.h>
    
    unsigned long __stdcall AntiWPEPro( void* pVoid )
    {
       bool bHooked = false;
       unsigned char szBuffer[ 8 ];
    
       // First 6 bytes of of Send/Recv
       unsigned char bOriginal[ ] = "\x55"         // PUSH EBP
                             "\x8B\xEC\x83"   // MOV EBP, ESP
                             "\xEC\x10";   // SUB ESP, 10
    
       int i;
    
       unsigned long dwRecvCall = (unsigned long)GetProcAddress( GetModuleHandle( "WS2_32.dll" ), "recv" );
       unsigned long dwSendCall = (unsigned long)GetProcAddress( GetModuleHandle( "WS2_32.dll" ), "send" );
    
       while( true )
       {
          ReadProcessMemory( GetCurrentProcess( ), (void *)dwRecvCall, szBuffer, 6, 0 );
    
          for( i = 0; i < 6; i++ )
          {
             // If we find one part missing, write the original bytes back and break the loop
             if( bOriginal[ i ] != szBuffer[ i ] )
             {
                WriteProcessMemory( GetCurrentProcess( ), (void *)dwRecvCall, bOriginal, 6, 0 );
                break;
             }         
          }
    
          ReadProcessMemory( GetCurrentProcess( ), (void *)dwSendCall, szBuffer, 6, 0 );
    
          for( i = 0; i < 6; i++ )
          {
             // Send + Recvs first 6 bytes are the same, we can use the same buffer
             if( bOriginal[ i ] != szBuffer[ i ] )
             {
                WriteProcessMemory( GetCurrentProcess( ), (void *)dwSendCall, bOriginal, 6, 0 );
                break;
             }
          }
    
          Sleep( 500 );
       }
    
       return 0;
    };
    
    int main( )
    {
       LoadLibrary( "WS2_32.dll" );
       CreateThread( 0, 0, &AntiWPEPro, 0, 0, 0 );
    
       getchar( );
       system( "PAUSE" );
    
       return 0;
    };

    And even if it wasn't possible you never know when a GM will be right next to you .invis'd and ready to hit the "IP Ban" on you....


    P.S. - You know how to hack using a 3rd party program, you're cool now... Go high-five your buddies



    That isn't hard to bypass. I can just use my module stealther and change the .dll name and it can't do shit.

  6. #21
    gimmeurlife's Avatar Member
    Reputation
    12
    Join Date
    Aug 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thebigman View Post
    Vote Shop Temporarily Disabled

    The vote shop will be temporarily disabled while we get some things fixed on it. You may still vote and collect your vote points in the meantime and they will be redeemable as soon as it is fixed. It will be back up as soon as possible, we just want to ensure the security of the site and the players who enjoy their time here so please be patient.
    Posted by gimmeurlife July 2, 2009 0 comments



    This no longer works.

    @ gimmeurlife
    Stop acting like a little bitch. People post exploits here, we use them, you guys fix them, if you want to discipline us, gtfo. This isn't the section for legit stuff. Its like the scam section, if you don't like it, stop reading it, stop acting like a little bitch because your server was using an outdated, flawed vote / donor shop page.


    edit: Stop hiding behind donor status.

    Your entire post smelled of "PHAIL-U-ARE".... I never disciplined anyone who came into this thread just simply for coming in here nor did I say I was going to. I simply stated that it was now taken down and would not longer work, so quit acting like you actually know what you're talking about.

    P.S. - WTF does donor status have anything to do with this? I never mentioned it and never used my donor status as any kind of a shield here whatsoever. I think you need to turn your pc off and go take a nap grouch.


    Edit: Your constant use of vulgarity shows your lack of intelligence and inability to communicate like a civilized person.

  7. #22
    Maxmiliam's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't see where this, thing that you shall mod is...
    Please explain better where the mod thing is. =P

  8. #23
    dinos19's Avatar Private
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol i already got 4 things on your shit server but i stoped play >.>


    thatserver sux !

  9. #24
    Pieterkii's Avatar Member
    Reputation
    7
    Join Date
    Jan 2009
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Miss this server man..

  10. #25
    LucasGod's Avatar Active Member
    Reputation
    35
    Join Date
    Mar 2009
    Posts
    462
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)



    also: DarkmoonWoW is NOT Darkmoon-WoW, the good old dead server.

  11. #26
    fedabis's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i'll try to hack theyr donation page with tamper data and ce , if it works i'll make you know

  12. #27
    LucasGod's Avatar Active Member
    Reputation
    35
    Join Date
    Mar 2009
    Posts
    462
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    meh, that server sucks, try hacking Eternion, AMD, WoWgasm, etc.

  13. #28
    fedabis's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok if you want send me a list with servers to try to hack and i'll figure out a way

  14. #29
    LucasGod's Avatar Active Member
    Reputation
    35
    Join Date
    Mar 2009
    Posts
    462
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try the ones I listed.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Dire Maul West Exploit
    By Matt in forum World of Warcraft Exploits
    Replies: 4
    Last Post: 08-17-2013, 05:57 PM
  2. Feralas Exploit
    By Matt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 09-05-2012, 11:21 AM
  3. Rogue Poison Exploit
    By Matt in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 12-18-2006, 09:18 PM
  4. Jump to any height (without any 3rd part apps) MASSIVE Exploit!
    By Matt in forum World of Warcraft Exploits
    Replies: 17
    Last Post: 03-27-2006, 09:53 PM
  5. Bandage Exploit -NO Cooldown-
    By Matt in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 03-21-2006, 04:14 PM
All times are GMT -5. The time now is 08:08 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