Results 1 to 15 of 15
  1. #1
    thijsduijker's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    368
    Reputation
    44
    Thanks
    185
    My Mood
    Doh

    Question C++ Simple Name ESP

    I've tried to make a simple name ESP in C++.
    I've been reading a eBook.
    So i tried something.
    Don't be mad because i'm a super noob everyone started this way (or you are a master genius like @ @Kenshin13 )

     

    #include <windows.h>
    #include <stdio.h>

    //declares
    #define NOP 0x90
    //declares

    void nop_(PVOID address, int bytes){
    DWORD d, ds;
    VirtualProtect(address, bytes, PAGE_EXECUTE_READWRITE, &d);
    memset(address, NOP, bytes);VirtualProtect(address,bytes,d,&ds);
    }

    //---Adress List---//
    #define Playerpointer 0x00588A30
    #define Serverpointer 0x00588A35
    DWORD *ingame= (DWORD*)Playerpointer;

    /*Doesn't Work*/
    void NameESP()
    {
    if (GetAsyncKeyState(VK_NUMPAD0) &1)
    {
    nop_((PVOID)0x00588A35, 2);
    nop_((PVOID)0x00588A30, 4);
    }
    }
    /* Fullbright doesn't work either*/
    void Fullbright()
    {
    if (GetAsyncKeyState(VK_NUMPAD1) &1)
    {
    *(DWORD*)0x5F9690C = 1;
    }
    }


    This is for Teknomw3.
    It injects properly but when i press numpad1/numpad0 i get nothing.
    When i hold it nothing either.
    If someone wants to help through skype: thijs518.
    Thanks.
    O F W G K T A D G A F
    https://ofwgkthijs.tumblr.com
    Proudly Kenshin13's Bitch

  2. #2
    5DOG5's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    aha dar lKS a

  3. #3
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Maybe it's the wrong address @

  4. #4
    thijsduijker's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    368
    Reputation
    44
    Thanks
    185
    My Mood
    Doh
    Quote Originally Posted by 5DOG5 View Post
    aha dar lKS a
    English please.
    O F W G K T A D G A F
    https://ofwgkthijs.tumblr.com
    Proudly Kenshin13's Bitch

  5. #5
    Denis902's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    #define NOP 0x90
    //declares

    void nop_(PVOID address, int bytes);
    {
    DWORD d, ds;
    VirtualProtect(address, bytes, PAGE_EXECUTE_READWRITE, &d);
    memset(address, NOP, bytes);VirtualProtect(address,bytes,d,&ds);
    }

    the right code
    Last edited by Denis902; 08-03-2013 at 09:40 AM.

  6. #6
    Cernunnos's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    4
    Check the addy's.
    Last edited by Cernunnos; 08-03-2013 at 06:02 PM. Reason: [Wrong answer (simple mistake)]

  7. #7
    ianrisher's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    20
    My Mood
    Angelic
    Check addresses.
    Code:
    .__                    .__       .__                  
    |__|____    ___________|__| _____|  |__   ___________ 
    |  \__  \  /    \_  __ \  |/  ___/  |  \_/ __ \_  __ \
    |  |/ __ \|   |  \  | \/  |\___ \|   Y  \  ___/|  | \/
    |__(____  /___|  /__|  |__/____  >___|  /\___  >__|   
            \/     \/              \/     \/     \/

  8. #8
    thijsduijker's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    368
    Reputation
    44
    Thanks
    185
    My Mood
    Doh
    Thanks bro's got the fullbright to work nowww
    O F W G K T A D G A F
    https://ofwgkthijs.tumblr.com
    Proudly Kenshin13's Bitch

  9. #9
    Cambodia's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    (Iron Heart Hacker)
    Posts
    162
    Reputation
    10
    Thanks
    1,820
    My Mood
    Mellow
    how can we find address ?
    I will back one day

  10. #10
    letitrain's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    8
    I don't think your NOP function is right.

    Aren't you supposed to specify the exact bytes in terms of length for memset?

    Code:
    memset ( addr, NOP, bytes );
    translates to:

    Code:
    memset ( addr, (void*) "\x90", 6 );
    when it should be:

    Code:
    memset ( addr, (void*) "\x90\x90\x90\x90\x90\x90", 6 );

  11. #11
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    @letitrain




    edit: Maybe you were talking about memcpy?

    Last edited by abuckau907; 08-24-2013 at 12:17 AM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

  12. #12
    Kenshin13[Backup]'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    63
    Reputation
    81
    Thanks
    6
    My Mood
    Amused
    Quote Originally Posted by abuckau907 View Post
    @letitrain




    edit: Maybe you were talking about memcpy?

    memset can be done the same way:

    Code:
    memset((void*)Offset, 0x90, 6);

  13. #13
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    Huh? That is the exact same declaration I posted. (void* , Int, size_t) . Done the same as what?
    Last edited by abuckau907; 08-24-2013 at 10:38 AM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

  14. #14
    Cambodia's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    (Iron Heart Hacker)
    Posts
    162
    Reputation
    10
    Thanks
    1,820
    My Mood
    Mellow
    @abuckau907
    did u know how to find address ?
    I will back one day

  15. #15
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    Quote Originally Posted by Cambodia View Post
    @abuckau907
    did u know how to find address ?
    No, sorry .
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

Similar Threads

  1. [Detected] Only Tekno SIMPLE MW3 NAME ESP
    By Papil in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 11
    Last Post: 07-23-2014, 08:38 AM
  2. [Detected] |- Chupa iMelo Simples -| [WallHack, Esp Box,Line,Name,Distance, Antikick, Respaw ]
    By Unknonw.Coder in forum Combat Arms Brazil Hacks
    Replies: 15
    Last Post: 09-28-2012, 04:09 PM
  3. [Release] Name ESP 0.84
    By tazbaby in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 86
    Last Post: 01-14-2010, 07:54 AM
  4. HELP NAME ESP
    By mrkprv in forum Visual Basic Programming
    Replies: 4
    Last Post: 04-29-2008, 02:21 PM
  5. [REL]vescovo (NAME ESP) v.1
    By vescovo in forum WarRock - International Hacks
    Replies: 14
    Last Post: 11-18-2007, 07:32 PM