some small fixes

This commit is contained in:
Mari Wahl 2014-10-07 18:30:14 -04:00
parent 9d7f94f363
commit 117958bd9c
3 changed files with 25 additions and 0 deletions

Binary file not shown.

View file

@ -1,3 +1,25 @@
# Tools
[Reverse Engineering, the Book]: http://beginners.re/
# Dissasembly
#### gdb
```
$ gcc -ggdb -o <filename> <filename>.c
```
#### 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
```
$ objdump -d <bin>
```

View file

@ -0,0 +1,3 @@
# Tools
[Reverse Engineering, the Book]: http://beginners.re/