Added
{ New } - Infection Analysis Endpoint
7 months ago by Dan Benshitrit
Docs: POST search-by-stealer/infection-analysis
- Added a new endpoint:
POST /infection-analysis - Purpose: Provides a detailed AI-generated analysis of how a specific identity was likely compromised.
- Response includes:
likely_infection_url: Most probable infection source URL.infection_confidence: Confidence score (0–1) indicating the likelihood of that URL being the infection point.infection_reasoning: Explanation of the inferred infection path.infection_flow: Chronological breakdown of visited URLs leading up to the infection.analyst_summary: AI-written narrative summarizing the infection incident.
This new capability enhances incident investigation workflows by offering immediate, explainable insights into breach origins.
Example Request:
curl --request POST \
--url https://api.hudsonrock.com/json/v3/search-by-stealer/infection-analysis \
--header 'accept: application/json' \
--header 'api-key: <API_KEY>' \
--header 'content-type: application/json' \
--data '{"stealer": "[IN]175.101.37.65"}'