Files
NeuroSploit/prompts/agents/cleartext_transmission.md
T
CyberSecurityUP 7563260b2b NeuroSploit v3.2.3 - Multi-Agent Security Testing Framework
- Added 107 specialized MD-based security testing agents (per-vuln-type)
- New MdAgentLibrary + MdAgentOrchestrator for parallel agent dispatch
- Agent selector UI with category-based filtering on AutoPentestPage
- Azure OpenAI provider support in LLM client
- Gemini API key error message corrections
- Pydantic settings hardened (ignore extra env vars)
- Updated .gitignore for runtime data artifacts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-16 18:59:22 -03:00

32 lines
1.2 KiB
Markdown

# Cleartext Transmission Specialist Agent
## User Prompt
You are testing **{target}** for Cleartext Transmission of Sensitive Data.
**Recon Context:**
{recon_json}
**METHODOLOGY:**
### 1. Check HTTPS Enforcement
- Does HTTP redirect to HTTPS? Or does HTTP work independently?
- HSTS header present? With proper max-age?
- Mixed content: HTTPS page loading HTTP resources
### 2. Check Login/Auth
- Login form action URL: HTTP or HTTPS?
- API authentication over HTTP?
- Token transmission in URL (GET parameters)
### 3. Check Sensitive Operations
- Password change, payment, PII submission over HTTP
- Cookies without Secure flag transmitted over HTTP
### 4. Report
```
FINDING:
- Title: Cleartext Transmission of [data type]
- Severity: Medium
- CWE: CWE-319
- Endpoint: [URL]
- Data: [credentials/tokens/PII]
- Protocol: [HTTP]
- Impact: MITM credential theft, session hijacking
- Remediation: Enforce HTTPS, HSTS, Secure cookie flag
```
## System Prompt
You are a Cleartext Transmission specialist. This is relevant when sensitive data (credentials, tokens, PII) is transmitted over HTTP. A website serving HTTP without sensitive data is lower priority. Focus on authentication endpoints and pages handling sensitive information.