Files
nox-project-nox-framework/sources/abuseipdb.json
T
2026-04-07 10:17:43 +02:00

33 lines
763 B
JSON

{
"name": "abuseipdb",
"category": "threat_intel",
"endpoint": "https://api.abuseipdb.com/api/v2/check?ipAddress={target}",
"method": "GET",
"requires_auth": true,
"selectors": {
"score": "$.data.abuseConfidenceScore"
},
"rate_limit": 1.0,
"headers": {
"Key": "{ABUSEIPDB_API_KEY}"
},
"api_key_slots": [
"{ABUSEIPDB_API_KEY}"
],
"input_type": "ip",
"output_type": [
"ip"
],
"normalization_map": {
"abuseConfidenceScore": "abuse_score"
},
"tags": [
"passive",
"threat"
],
"health_check_url": "https://api.abuseipdb.com",
"expected_status": 200,
"reliability_score": 5,
"backup_endpoints": [],
"confidence": 1.0
}