mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-01 22:36:05 -04:00
25 lines
350 B
Markdown
25 lines
350 B
Markdown
# 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>
|
|
```
|
|
|