General Threat Detection
For APIs and endpoints that don't fit a specific use case — internal tools, webhooks, backend services — Sentinel can still be applied for broad-spectrum abuse and bot mitigation, without building a use-case-specific flow around it.
What you're defending against
- Brute-force attempts and vulnerability scanning — probing for weak credentials or exposed paths.
- High-frequency malicious requests — scripted abuse rather than a specific attack pattern.
- Bots and scrapers — automated clients that don't identify as such.
- Credential stuffing — reused leaked credentials tested at volume.
Recommended configuration
- Enable Threat Intelligence — real-time IP blocklisting from open-source feeds plus Sentinel's own detection of brute-force attempts, vulnerability scans, and other abuse patterns. This is the broadest, lowest-effort layer: known-bad IPs get blocked or penalized before anything else runs.
- Enable Adaptive Captcha so blocklisted or otherwise risky requests get an escalated challenge automatically, rather than a flat allow/deny.
- Rely on Detection Signals — Header Entropy flags non-standard clients rotating headers to look like different devices, which is a strong bot signal on its own.
- Use Classifier where you have content or metadata to evaluate — it isn't just for text; IP, device, and location classification apply generally.
- Keep Autopilot on — for a general-purpose endpoint without a specific traffic profile to tune against, automatic adjustment is usually a better starting point than guessing at manual thresholds.
Working with the Threats API directly
Beyond passive protection, you can query and manage IP reputation programmatically:
POST /v1/threat— check an IP's current status before deciding how to handle a request yourself.POST /v1/threat/report— report abuse you've detected elsewhere in your stack, contributing toward Sentinel's own rate-limit-based blocking.POST /v1/threat-list— immediately block (or allow) a specific IP, overriding the threshold-based flow.
See Threat Intelligence for the full request/response details.
Integration path
- Finish installing Sentinel.
- Configure Threat Intelligence — the data sources and thresholds you need.
- Add Classifier calls anywhere you have content, IP, or device data worth scoring.