Reorganized

This commit is contained in:
Mari Wahl 2014-11-03 10:49:17 -05:00
parent ab54dc8e70
commit 2afd831662
281 changed files with 253 additions and 33 deletions

View file

@ -1,26 +1,49 @@
# Tools
# Reverse Engineering
-------------
## Tools
- X86 Win32 Cheat sheet
- Intro X86
- base conversion
- Command line tricks
### Online References
[Reverse Engineering, the Book]: http://beginners.re/
# Dissasembly
----
## IDA
- Cheat sheet
-------------
## GDB
- Commands and cheat sheet
#### gdb
```
```sh
$ gcc -ggdb -o <filename> <filename>.c
```
Starting with some commands:
```
```sh
$ gdb <program name> -x <command file>
```
For example:
```
```sh
$ cat command.txt
```
set disassembly-flavor intel
disas main
```
@ -28,12 +51,10 @@ disas main
#### objdump
Display information from object files:
• Where object file can be an intermediate file
created during compilation but before linking, or a
fully linked executable
Display information from object files: Where object file can be an intermediate file
created during compilation but before linking, or a fully linked executable
```
```sh
$ objdump -d <bin>
```

Some files were not shown because too many files have changed in this diff Show more