Results 1 to 10 of 10
  1. #1
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive

    [TUTORIAL] Another NOP way (NEW)

    Ok in this cutted source you will easily get the point how to use this way to NOP! If you dont get it ... pls dont post it and leave this thread!

    Globals:
    Code:
    #define GLASSWALLS 0x57218A
    #define PUSH 0x6A
    #define NOP 0x90 //Only if you NOP something
    #define GWLength 2 //The Bytelength of Glasswalls
    BYTE gw_ON[WHLength] = {PUSH, 0x00}; //GW On
    BYTE gw_OFF[WHLength] = {PUSH, 0x01}; //GW Off
    
    void memoryediting(int address, BYTE *data, int length){
         int protection;
         VirtualProtect((void *)address, length, PAGE_READWRITE, (PDWORD)&protection);
         memcpy((void *)address, (const void *)data, length);
         VirtualProtect((void *)address, length, protection, 0);
    }
    Using it in a Hotkeyhack
    Code:
    if(GetAsyncKeyState(VK_F12)<0){
    	if(gw){
    		Sleep(200);
    		memoryediting(GLASSWALLS, gw_OFF, GWLength);
    		gw = false;
    	}else{
    		Sleep(200);
    		memoryediting(GLASSWALLS, gw_ON, GWLength);
    		gw = true;
    	}
    }
    Have fun =)

  2. The Following 5 Users Say Thank You to Solify For This Useful Post:

    confict (09-04-2010),ded12 (09-15-2010),HaX4LiFe! (09-06-2010),o-o (09-07-2010),Sydney (09-04-2010)

  3. #2
    doofbla's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Biel*****/Germany
    Posts
    369
    Reputation
    10
    Thanks
    179
    My Mood
    Psychedelic
    Very nice dude

    I think this is (when defined the adresses) very easy to write/read N-I-C-E
    _____________________________________________

    READING TUTORIAL:

    1. READ MY POST
    2. THINK ABOUT MY POST
    3. PRESS THANKS
    4. MAYBE CORRECT MY POSTS :P




    Dijkstra:
    "Computer Science is no more about computers than astronomy is about
    telescopes."


    THANKS BUTTON RIGHT DOWN --->

  4. The Following User Says Thank You to doofbla For This Useful Post:

    Solify (09-04-2010)

  5. #3
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive
    Quote Originally Posted by doofbla View Post
    Very nice dude

    I think this is (when defined the adresses) very easy to write/read N-I-C-E
    ye you are able to change the bytes and addies very fast =)

  6. #4
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Looks good.

  7. The Following User Says Thank You to wassup40 For This Useful Post:

    Solify (09-04-2010)

  8. #5
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Looks Good...

    /Thanked

    Thanks Cosmos


  9. The Following User Says Thank You to Sydney For This Useful Post:

    Solify (09-04-2010)

  10. #6
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    Looks nais man.
    Got my thanks

    ITS MEH BITCHESSS !!!

  11. The Following User Says Thank You to confict For This Useful Post:

    Solify (09-04-2010)

  12. #7
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Its still the same func... you just used vars instead of using the text itself...

  13. #8
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive
    Quote Originally Posted by Mr.Magicman View Post
    Its still the same func... you just used vars instead of using the text itself...
    ye i know, but with this, you are able to change the bytes/addies faster =)

  14. #9
    HaX4LiFe!'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1,639
    Reputation
    22
    Thanks
    1,420
    love you solify(no homo) thanks

  15. The Following User Says Thank You to HaX4LiFe! For This Useful Post:

    Solify (09-06-2010)

  16. #10
    schim's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My chair
    Posts
    367
    Reputation
    10
    Thanks
    114
    My Mood
    Twisted
    Really don't see the point of this... but whatever the code looks nice and if it works, it's eye candy at the least

Similar Threads

  1. Another twist at new style.
    By Super Martin in forum Showroom
    Replies: 13
    Last Post: 12-27-2010, 08:10 AM
  2. another nop way
    By wassup40 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 22
    Last Post: 09-04-2010, 08:33 AM
  3. [TUT] Another nop way
    By wassup40 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 09-04-2010, 04:28 AM
  4. [Tutorial] New Way to make CA load faster
    By Andyklk2009 in forum Combat Arms Hacks & Cheats
    Replies: 13
    Last Post: 10-08-2008, 04:24 PM
  5. {{{NEW}}} D3D My Way!! {{{NEW}}}
    By SMGamer in forum WarRock - International Hacks
    Replies: 14
    Last Post: 06-10-2008, 01:16 PM