🔌 Burp Suite Integration / Burp Suite

Neuro Pentest × Burp Suite — complete workflow with CVE intelligence, scan history, diff & JIRA

📤 Export CVEs / Экспорт CVEs в XML

Download vulnerabilities as Burp Suite XML. Filter by product keyword or minimum CVSS score.

💉 Export Payloads / Экспорт payload

Download Burp Intruder payload sets. Select categories and optional encoding.

🎯 Intruder / Генератор payload

Generate a full Burp Intruder config — pick categories, target URL, and parameter name.

📥 Import / Импорт результатов

Upload a Burp scan XML or JSON — saved to scan history for future reference.

No file selected

🔗 JIRA Export / Экспорт в JIRA

Push vulnerability findings as JIRA tickets. Configure your JIRA instance below.

JIRA Cloud with API token required. Create a token at id.atlassian.com/manage-profile/security/api-tokens

📚 API Endpoints / API эндпоинты

REST API for CI/CD and extension integration.

GET /api/burp/cves — list/filter CVEs GET /api/burp/cve/:id — NVD lookup + EPSS GET /api/burp/epss/:id — EPSS score only GET /api/burp/export/cve/xml — Burp XML export GET /api/burp/export/payloads/json GET /api/burp/intruder/generate GET /api/burp/payload-sets GET /api/burp/payloads/:cat GET /api/burp/scans — scan history GET /api/burp/scans/:id — scan detail GET /api/burp/scans/:id/export — re-export GET /api/burp/scans/diff?id1=&id2= POST /api/burp/export/jira POST /api/burp/import/scan DELETE /api/burp/scans/:id

🔧 Burp Extension / Расширение

Neuro Pentest extension for Burp Suite Pro — download and install in Extender.

🧠 AI Analysis / AI анализ уязвимостей

Powered by local Ollama LLM. Analyze any vulnerability type, get CVSS scoring, business impact, and remediation guidance. Supported types: IDOR, BOLA, SQLi, XSS, SSRF, LFI, RCE, Auth Bypass, JWT, etc.

📁 Scan History / История сканирований

🔍 CVE Lookup / Поиск CVE в NVD

Look up real CVE data from the National Vulnerability Database (NVD). EPSS = probability of exploitation in the next 30 days (higher = more likely to be exploited).

📊 Compare / Сравнение сканирований

Select two scans to see what changed between them: new issues, removed issues, and severity changes.

vs

📖 Quick Reference

1. Export CVEs
Filters → Download XML → Import into Burp
2. Intruder Payloads
Check categories → Encoding → Load in Burp Intruder
3. Import Scans
Upload XML/JSON → saved to history → re-export anytime
4. Compare
Select two scans → see what's new, removed, changed
5. CVE Lookup
Enter any CVE ID → live NVD data + EPSS score
6. JIRA Export
Configure JIRA → pick scan → export findings as tickets
// ---- Unified theme toggle ---- function toggleTheme(){var b=document.body,isLight=b.classList.contains('light');b.classList.toggle('light',!isLight);var btn=document.getElementById('ttBtn'),lbl=document.getElementById('ttLabel');if(!isLight){btn.title='Switch to dark';lbl.textContent='Светлая';try{$('ttKnob')&&($('ttKnob').style.background='#fcd34d')}catch(e){}}else{btn.title='Switch to light';lbl.textContent='Тёмная';try{$('ttKnob')&&($('ttKnob').style.background='#00d9ff')}catch(e){}}localStorage.setItem('np-theme',b.classList.contains('light')?'light':'dark');} (function(){try{var s=localStorage.getItem('np-theme');if(s==='light'){document.body.classList.add('light');var btn=document.getElementById('ttBtn'),lbl=document.getElementById('ttLabel');if(btn){btn.title='Switch to dark';lbl.textContent='Светлая'}try{$('ttKnob')&&($('ttKnob').style.background='#fcd34d')}catch(e){}}}catch(e){}}());