mirror of
https://github.com/nox-project/nox-framework.git
synced 2026-06-08 08:05:50 +00:00
32 lines
760 B
JSON
32 lines
760 B
JSON
{
|
|
"name": "securitytrails_history",
|
|
"category": "dns_recon",
|
|
"endpoint": "https://api.securitytrails.com/v1/history/{target}/dns/a",
|
|
"method": "GET",
|
|
"requires_auth": true,
|
|
"selectors": {
|
|
"history": "$.records[*].values[*].ip"
|
|
},
|
|
"rate_limit": 1.0,
|
|
"headers": {
|
|
"APIKEY": "{SECURITYTRAILS_API_KEY}"
|
|
},
|
|
"api_key_slots": [
|
|
"{SECURITYTRAILS_API_KEY}"
|
|
],
|
|
"input_type": "domain",
|
|
"output_type": [
|
|
"ip"
|
|
],
|
|
"normalization_map": {
|
|
"ip": "historical_ip"
|
|
},
|
|
"tags": [
|
|
"passive"
|
|
],
|
|
"health_check_url": "https://api.securitytrails.com",
|
|
"expected_status": 200,
|
|
"reliability_score": 5,
|
|
"backup_endpoints": [],
|
|
"confidence": 1.0
|
|
} |