Categorías de amenazas
ReportedIP uses 30 predefined threat categories to classify malicious activity. Each category has a severity level from 1 (low) to 10 (critical) that influences the confidence score calculation. When reporting an IP, you specify one or more category IDs to describe the type of attack observed.
All Categories
Using Categories in the API
When reporting an IP via the /report endpoint, include the category ID in your request
to classify the type of threat observed. The category severity directly influences the confidence score.
Full endpoint documentation lives in the Referencia de la API;
the Página de la lista negra shows how to build
category-filtered, service-specific block lists.
Report with Category
curl -X POST \
-H "X-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ip": "1.2.3.4", "categories": [4, 15], "comment": "Brute force SSH + port scan"}' \
"https://reportedip.de/wp-json/reportedip/v2/report"
{
"data": {
"ipAddress": "1.2.3.4",
"abuseConfidencePercentage": 42,
"reportId": "12345"
}
}
Retrieve All Categories
You can fetch the full list of categories programmatically:
curl "https://reportedip.de/wp-json/reportedip/v2/categories"
Severity Scale
The severity scale ranges from 1 to 10 and maps to four threat levels:
| Level | Severity | Descripción | Example |
|---|---|---|---|
| Low | 1 – 3 | Minor or informational threats | Web scraping, comment spam |
| Medium | 4 – 6 | Moderate threats requiring attention | Brute force login, credential stuffing |
| High | 7 – 8 | Serious threats with potential damage | SQL injection, XSS attacks |
| Critical | 9 – 10 | Severe threats requiring immediate action | DDoS, ransomware, zero-day exploits |
Última actualización: · Gestionado por el ReportedIP