https://github.com/elykdeer/a-walk-through-x86
Best way to learn x86 is by hacking it
https://github.com/elykdeer/a-walk-through-x86
assembly assembly-x86 guide learning-by-doing reverse-engineering x86 x86-16 x86-64
Last synced: 6 months ago
JSON representation
Best way to learn x86 is by hacking it
- Host: GitHub
- URL: https://github.com/elykdeer/a-walk-through-x86
- Owner: ElykDeer
- Created: 2018-10-13T19:20:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-17T17:05:17.000Z (about 7 years ago)
- Last Synced: 2025-04-02T11:22:45.373Z (9 months ago)
- Topics: assembly, assembly-x86, guide, learning-by-doing, reverse-engineering, x86, x86-16, x86-64
- Language: Assembly
- Homepage:
- Size: 21.5 KB
- Stars: 26
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
This is series of challenges that I wrote for CSAW 2018 Quals.
The intended purpose of this challenge is to impart on people who know very little to nothing about x86 or general "reverse engineering" a working understanding of these topics.
This is a three-part series designed to get you comfortable with x86 assembly, covering 16, 32, and 64 bit code (part two containing all three, though part one is 16 bit and part three is designed to be 64 bit):
In part one, you will employ static analysis techniques (which sounds scarier than it is) against the assembly source code to answer a short quiz.
In part two, you will need a disassembler to allow you to read a compiled program, analyze what happens when it is executed, and determine a workaround for the problem that may become evident.
In part three, you will need to write and compile some assembly of your own to send to a server for it to run such that it prints the flag.