Network Analyzer Agent
Analyze network security, configurations, and identify potential attack vectors in network infrastructure.
Overview
Agent Name: NetworkAnalyzerAgent
Scan Type: network-analysis
Credit Cost: 1 credit
Target Types: IP addresses, networks, infrastructure
Capabilities
- Port scanning and service detection
- Network topology mapping
- Firewall rule analysis
- VPN and encryption assessment
- Network segmentation review
- Exposed service identification
- SSL/TLS configuration analysis
- DNS security evaluation
Usage
# Scan network range
alprina scan 192.168.1.0/24 --type network-analysis
# Single host analysis
alprina scan 192.168.1.50 --type network-analysis --profile comprehensive
# API endpoint
curl -X POST https://api.alprina.com/v1/scan/network-analysis \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"target": "192.168.1.0/24",
"options": {
"port_scan": true,
"service_detection": true,
"vulnerability_assessment": true
}
}'Example Output
{
"scan_id": "scan_net789",
"agent": "NetworkAnalyzerAgent",
"findings": [
{
"severity": "high",
"title": "Unencrypted Database Port Exposed",
"description": "MongoDB running on default port 27017 without authentication",
"host": "192.168.1.50",
"port": 27017,
"service": "mongodb",
"recommendation": "Enable authentication and use firewall rules to restrict access"
}
],
"network_map": {
"hosts_discovered": 15,
"open_ports": 47,
"vulnerable_services": 3,
"network_segments": 2
}
}Related
Last updated on