Results 1 to 11 of 11
  1. #1
    AbsoluteMadman's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1

    Help with learning internals

    So I'm just trying to get into making internals, but since I don't really know anything about it, looking at sources don't really help since I don't know what I'm looking at.

    I'm literally as basic as can be with it right now. I've been making externals for a while.

    I don't know how to find the addresses/offsets to write to, externally I use pattern scanning and shit, but internally I'm clueless.

    I wouldn't know how to read or write those addresses if I could find them. etc.

    I could really use some help since there doesn't seem to be much info available for basic internals.

  2. #2
    Lols12342's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    188
    Reputation
    19
    Thanks
    701
    My Mood
    Amazed
    If you don't know what you reading, than go back to externals and try to learn more c++ simple.
    [IMG]https://cloud-3.steamuserconten*****m/ugc/28484756670281268/F8BB74EE89D3C55FD4286CBAA083D7976AFAB5AA/[/IMG]

    Hacking valve secure servers with a r00ted vpn irak.

  3. #3
    AbsoluteMadman's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Lols12342 View Post
    If you don't know what you reading, than go back to externals and try to learn more c++ simple.
    It's not that I don't know c++, I just don't know shit about internals. Hence this post.

  4. #4
    SilentWarp's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    909
    It's not like it'd bad he doesn't know. I'm great with externals (not pattern scanning) and I just have struggled to grasp internals. People here just say "oh go learn C++" and it's useless. You really are not going to find what you need here, I couldn't.

  5. #5
    gauthier08's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    175
    Reputation
    10
    Thanks
    12
    Well reading or writing can just be done by using reinterpret_cast tbh.
    Example:
    Code:
    DWORD dwClient = (DWORD)GetModuleHandleA("client.dll");
    DWORD* ForceJump = reinterpret_cast<DWORD*>(dwClient + forcejumpoffset);
    
    *ForceJump = 5;
    *ForceJump = 4;
    Like that is what i was doing when i started internally. I recoded my whole external cheat internally without using the sdk, just to learn the pointers mostly. However, then i took a look into other's their sources using the SDK. Afaik, there aren't actual tutorials about internals. So I learnt it by reading and experimenting sources and finally understanding it. Gl.

  6. #6
    AbsoluteMadman's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by gauthier08 View Post
    Well reading or writing can just be done by using reinterpret_cast tbh.
    Example:
    Code:
    DWORD dwClient = (DWORD)GetModuleHandleA("client.dll");
    DWORD* ForceJump = reinterpret_cast<DWORD*>(dwClient + forcejumpoffset);
    
    *ForceJump = 5;
    *ForceJump = 4;
    Like that is what i was doing when i started internally. I recoded my whole external cheat internally without using the sdk, just to learn the pointers mostly. However, then i took a look into other's their sources using the SDK. Afaik, there aren't actual tutorials about internals. So I learnt it by reading and experimenting sources and finally understanding it. Gl.
    Thanks. The part that confuses me about that though is does this mean you use pattern scanning to grab offsets internally too? I feel like there would be an easier way to get them than the same way externals do it.

  7. #7
    gauthier08's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    175
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by AbsoluteMadman View Post
    Thanks. The part that confuses me about that though is does this mean you use pattern scanning to grab offsets internally too? I feel like there would be an easier way to get them than the same way externals do it.
    I use pattern scanning to get my offsets internally, or i just do it manually sometimes.

  8. #8
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by AbsoluteMadman View Post
    Thanks. The part that confuses me about that though is does this mean you use pattern scanning to grab offsets internally too? I feel like there would be an easier way to get them than the same way externals do it.
    There is, I'm not home atm so I can't paste mine in but if I remember correctly, marcHC's internal base has it so look at that


     

    Steam-TriggeredFemenazi
    CS:GO Rank-MG (but I'm a dirty cheater so who cares)
    Discord-ImWhacky#6260

    P.M. me if you have any questions.


  9. #9
    Aphu's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    618
    Quote Originally Posted by gauthier08 View Post
    I use pattern scanning to get my offsets internally, or i just do it manually sometimes.
    You literally have direct memory access internally, why would you pattern scan?

  10. #10
    gauthier08's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    175
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by Aphu View Post
    You literally have direct memory access internally, why would you pattern scan?
    Well for some stuff i still use it.

  11. #11
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Been over a week since last update/bump after answers, assuming solved.

    /Closed.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

Similar Threads

  1. [Solved] Needing help with learning the basics
    By Theonefromfaraway in forum Reign Of Kings Discussions & Help
    Replies: 1
    Last Post: 06-14-2015, 12:34 PM
  2. [Help Request] Someone to help me with learning programming.
    By sageeeefive in forum C++/C Programming
    Replies: 0
    Last Post: 12-01-2013, 07:27 AM
  3. [Help] Help with C# - Want to learn!
    By thatman1 in forum C# Programming
    Replies: 5
    Last Post: 02-22-2013, 06:37 AM
  4. Offering help with learning C++
    By ctpsolo in forum C++/C Programming
    Replies: 16
    Last Post: 08-02-2011, 02:11 PM
  5. help with the international hack!
    By iglompster in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 04-29-2009, 03:56 PM