This post is by a banned member (Egrety) - Unhide
OP 23 June, 2023 - 05:19 PM
Reply
if you are an expert in the field, share some books here. somebody wants to learn. tips accepted too!
This post is by a banned member (Emy_Adam0) - Unhide
25 June, 2023 - 01:28 PM
Reply
- "Practical Reverse Engineering: x86, x64, ARM, Windows Kernel, Reversing Tools, and Obfuscation" by Bruce Dang, Alexandre Gazet, and Elias Bachaalany.
- "The IDA Pro Book: The Unofficial Guide to the World's Most Popular Disassembler" by Chris Eagle.
- "Reverse Engineering for Beginners" by Dennis Yurichev.
- "Reversing: Secrets of Reverse Engineering" by Eldad Eilam.
- "Reverse Engineering: An Industrial Perspective" by Rolf Rolles.
- "Gray Hat Python: Python Programming for Hackers and Reverse Engineers" by Justin Seitz.
- "Reversing: The Hacker's Guide to Reverse Engineering" by Kris Kaspersky.
- "Practical Malware Analysis: The Hands-On Guide to Dissecting Malicious Software" by Michael Sikorski and Andrew Honig.
- "The Art of Assembly Language" by Randall Hyde.
- "The Rootkit Arsenal: Escape and Evasion in the Dark Corners of the System" by Bill Blunden.
When it comes to reverse engineering, here are some tips to keep in mind:
- Learn Assembly Language: Understanding assembly language is crucial for reverse engineering. Familiarize yourself with the assembly instructions of the target architecture you are working with (e.g., x86, ARM) to analyze and modify compiled code effectively.
- Utilize Disassemblers and Debuggers: Tools like IDA Pro, Ghidra, or OllyDbg can assist in disassembling and debugging binary files. These tools help you analyze the code, identify functions, and trace program flow.
- Develop Strong Foundations in Computer Architecture: Knowledge of computer architecture, memory management, and operating system internals is essential to comprehend how software operates at a low level.
- Practice with CTFs and Crackmes: Capture The Flag (CTF) challenges and crackmes provide hands-on experience in reverse engineering various types of applications and help you sharpen your skills.
- Collaborate and Engage with the Community: Joining reverse engineering forums, attending conferences, and participating in online communities can provide valuable insights, discussions, and access to resources shared by experts in the field.
- Understand Obfuscation and Anti-Reversing Techniques: Learn about common obfuscation techniques used by software developers to protect their code and the countermeasures used by attackers to bypass these protections.
- Document and Take Notes: Document your findings, techniques, and insights during the reverse engineering process. This helps in building a knowledge base and aids in future reference.
- Stay Ethical and Legal: Ensure that you are engaging in reverse engineering activities within legal boundaries. Respect intellectual property rights and obtain necessary permissions for the target software you are working with.
|