mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-07-31 18:58:39 -04:00
Reorganized
This commit is contained in:
parent
ab54dc8e70
commit
2afd831662
281 changed files with 253 additions and 33 deletions
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue