feat: Command injection with newlines

This commit is contained in:
nzdjb 2022-10-22 16:46:29 +13:00 committed by GitHub
parent 8df30de938
commit 1dc5054c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,6 +55,13 @@ original_cmd_by_server | ls
original_cmd_by_server || ls # Only if the first cmd fail
```
Commands can also be run in sequence with newlines
```bash
original_cmd_by_server
ls
```
### Inside a command
```bash