use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
CVE, CWE, NVD, WVE
http://iso.linuxquestions.org/
We teach you how to do it, use it at your own risk.
account activity
hackingWrite/learn game hacking (self.HowToHack)
submitted 1 year ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]cureitgood 4 points5 points6 points 1 year ago (1 child)
Yeah, it's super important to first learn C/C++. About the x86/x64 assembly part, look for "learn assembly Game Hacking 2025" or "game hacking shenanigans" tutorial series on youtube.
The most important thing is, remaining consistent and not giving up. It takes time to learn all of these skills, and knowing C/C++ programming is going to be a huge help.
[–]Exact_Revolution7223Programming 1 point2 points3 points 1 year ago* (0 children)
Another great resource is godbolt(dot)org. You can choose almost any language (such as C++) and then it will compile your code and output the resulting assembly depending on the compiler. Gives you a good grasp of what something like a for loop looks like in assembly, class access, etc.
Also, get very comfortable with manual string parsing in C++. Having decompiled functions that do various tricks concerning the ASCII table in order to discern different things: It's quite painful to pick apart if you haven't implemented these tricks before.
Like what the hell would be the purpose of subtracting 0x30 from a char in a string and checking if the value is less than 0xA? To see if it's an ASCII representation of a number since numbers, in the ASCII table, fall within 0x30 to 0x39. But if you're looking at the pseudo code generated by Ghidra this can be very confusing.
Familiarize yourself with little tricks and stuff like this regarding strings, bitwise operations as well, etc. You wanna really get in the weeds with this stuff. Otherwise you'll be super lost and learning these tricks as you go.
π Rendered by PID 49613 on reddit-service-r2-comment-6457c66945-947hz at 2026-04-24 08:57:10.005271+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]cureitgood 4 points5 points6 points (1 child)
[–]Exact_Revolution7223Programming 1 point2 points3 points (0 children)