├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── Section 1 - Basics ├── README.md └── guide_images │ ├── processes-cant-leak.png │ └── viewing-NT-header.png ├── Section 2 - Hooking ├── README.md └── guide_images │ ├── inline-hook-with-trampoline-controlflow.png │ └── inline-hook-with-trampoline.png ├── Section 3 - Injection └── README.md ├── Section 4 - Information Gathering └── README.md ├── Section 5 - About ESP ├── README.md └── guide_images │ ├── chams-example.png │ └── esp-example.png ├── Section 6 - About Aimbot └── README.md └── Section 7 - Networking └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | brainstorming.txt 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/README.md -------------------------------------------------------------------------------- /Section 1 - Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 1 - Basics/README.md -------------------------------------------------------------------------------- /Section 1 - Basics/guide_images/processes-cant-leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 1 - Basics/guide_images/processes-cant-leak.png -------------------------------------------------------------------------------- /Section 1 - Basics/guide_images/viewing-NT-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 1 - Basics/guide_images/viewing-NT-header.png -------------------------------------------------------------------------------- /Section 2 - Hooking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 2 - Hooking/README.md -------------------------------------------------------------------------------- /Section 2 - Hooking/guide_images/inline-hook-with-trampoline-controlflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 2 - Hooking/guide_images/inline-hook-with-trampoline-controlflow.png -------------------------------------------------------------------------------- /Section 2 - Hooking/guide_images/inline-hook-with-trampoline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 2 - Hooking/guide_images/inline-hook-with-trampoline.png -------------------------------------------------------------------------------- /Section 3 - Injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 3 - Injection/README.md -------------------------------------------------------------------------------- /Section 4 - Information Gathering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 4 - Information Gathering/README.md -------------------------------------------------------------------------------- /Section 5 - About ESP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 5 - About ESP/README.md -------------------------------------------------------------------------------- /Section 5 - About ESP/guide_images/chams-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 5 - About ESP/guide_images/chams-example.png -------------------------------------------------------------------------------- /Section 5 - About ESP/guide_images/esp-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 5 - About ESP/guide_images/esp-example.png -------------------------------------------------------------------------------- /Section 6 - About Aimbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 6 - About Aimbot/README.md -------------------------------------------------------------------------------- /Section 7 - Networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotae4/intro-to-gamehacking/HEAD/Section 7 - Networking/README.md --------------------------------------------------------------------------------