youngjun-chang / mre

《마스터링 리버스 엔지니어링》 예제 코드

Home Page:http://wikibook.co.kr/mre

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mastering Reverse Engineering

Mastering Reverse Engineering

This is the code repository for Mastering Reverse Engineering, published by Packt.

Re-engineer your ethical hacking skills

What is this book about?

If you want to analyze software in order to exploit its weaknesses and strengthen its defenses, then you should explore reverse engineering. Reverse Engineering is a hackerfriendly tool used to expose security flaws and questionable privacy practices.In this book, you will learn how to analyse software even without having access to its source code or design documents. You will start off by learning the low-level language used to communicate with the computer and then move on to covering reverse engineering techniques.

This book covers the following exciting features: Learn core reverse engineering Identify and extract malware components Explore the tools used for reverse engineering Run programs under non-native operating systems Understand binary obfuscation techniques Identify and analyze anti-debugging and anti-analysis tricks

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example, Chapter02.

The code will look like the following:

while (true) {
    for (char i = 1; i <= 255; i++) {
      if (GetAsyncKeyState(i) & 1) {
        sprintf_s(lpBuffer, "\\x%02x", i);
        LogFile(lpBuffer, (char*)"log.txt");
      }
    }

Following is what you need for this book: If you are a security engineer or analyst or a system programmer and want to use reverse engineering to improve your software and hardware, this is the book for you. You will also find this book useful if you are a developer who wants to explore and learn reverse engineering. Having some programming/shell scripting knowledge is an added advantage.

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Author

Reginald Wong has been in the software security industry for more than 15 years. Currently, Reggie is a lead anti-malware researcher at Vipre Security, a J2 Global company, covering various security technologies focused on attacks and malware. He previously worked for Trend Micro as the lead for the Heuristics team, dealing with forward-looking malware detection. Aside from his core work, he has also conducted in-house anti-malware training for fresh graduates. He is currently affiliated with CSPCert.ph, Philippines' CERT, and is a reporter for Wildlist.org. He has also been invited to speak at local security events, including Rootcon.

Suggestions and Feedback

Click here if you have any feedback or suggestions.

About

《마스터링 리버스 엔지니어링》 예제 코드

http://wikibook.co.kr/mre

License:MIT License


Languages

Language:C++ 77.8%Language:Assembly 11.6%Language:C 8.7%Language:HTML 1.8%