analyze_target
Analyze domains, IPs, or URLs to generate comprehensive security profiles using AI-driven assessment for bug bounty reconnaissance and vulnerability testing.
Instructions
Analyze target and create comprehensive profile using AI.
Args: target: Target domain, IP, or URL to analyze
Returns: Comprehensive target profile with AI analysis
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes |
Implementation Reference
- src/mcp_server/app.py:1491-1510 (handler)The MCP tool handler and registration for 'analyze_target'. This function proxies the request to the REST API server's intelligence endpoint '/api/intelligence/analyze-target' to perform AI-powered target analysis.def analyze_target(target: str) -> dict[str, Any]: """Analyze target and create comprehensive profile using AI. Args: target: Target domain, IP, or URL to analyze Returns: Comprehensive target profile with AI analysis """ data = {"target": target} logger.info(f"🧠 Analyzing target: {target}") result = api_client.safe_post("api/intelligence/analyze-target", data) if result.get("success"): logger.info(f"✅ Target analysis completed for {target}") else: logger.error(f"❌ Target analysis failed for {target}") return result