From 1dc5054c4d21b4b5240d24e7ebcc3eb344731284 Mon Sep 17 00:00:00 2001 From: nzdjb Date: Sat, 22 Oct 2022 16:46:29 +1300 Subject: [PATCH] feat: Command injection with newlines --- Command Injection/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Command Injection/README.md b/Command Injection/README.md index 54aa11b..c97f6ed 100644 --- a/Command Injection/README.md +++ b/Command Injection/README.md @@ -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