Get a list of issue to import into your SIEM. Issues are one or more incidents that have been grouped by the Issue Keys. To receive a stream of the latest issues, save the issue id as bookmark and query on some interval for the latest issues that > this bookmark, ie the latest issue id you have previously queried. For additional details about each issue, you can query the GetIssueDetails API for the specific issue id
Successful response
Invalid params or missing params.
Authorization information is missing or invalid.
{- "success": true,
- "results": [
- {
- "issue_time": "2024-08-01T10:31:42.000Z",
- "issue_id": "17263-1722579276407",
- "issue_type": "Auth Hash Security",
- "playbook_name": "Auth Hash Security Playbook",
- "issue_keys": {
- "domain": "example.com",
- "hash_algo": "sha256"
}, - "message": "The directory on example.com uses a weak hash algorithm md4 which is not secure and easy to crack.",
- "risk": "Low",
- "flow_count": 500,
- "incident_count": 20,
- "issue_details_api": "https://console.authmind.com/amapi/v1/getIssueDetails?issue_id=17263-1722579276407"
}
], - "metadata": { }
}
Get specific details about an issue and all related incidents for the issue.
Successful response.
Invalid params or missing params.
Authorization information is missing or invalid.
{- "success": true,
- "results": [
- {
- "first_seen": "2024-07-01T10:31:42.000Z",
- "last_seen": "2024-08-01T10:31:42.000Z",
- "risk": "Low",
- "message": "The directory on example.com uses a weak hash algorithm md4 which is not secure and easy to crack.",
- "issue_type": "Auth Hash Security",
- "issue_keys": {
- "domain": "example.com",
- "hash_algo": "sha256"
}, - "total_flow_count": 100,
- "total_incident_count": 1,
- "incidents": [
- {
- "asset_hostname": "example.auto.local",
- "asset_name": "Kerberos App",
- "asset_port": 88,
- "asset_protocol": "Kerberos",
- "asset_type": "App",
- "first_seen": "2024-08-01T10:31:42.000Z",
- "flow_count": 100,
- "identity_hostname": "example.auto.local",
- "identity_name": "xyz@example.com",
- "identity_type": "User",
- "incident_id": 3830559,
- "incident_risk": "Low",
- "incident_highlights": "<i><b>xyz.example.com</i></b> uses a weak password hash algorithm - <i><b>md4</i></b>",
- "last_seen": "2024-08-01T10:31:42.000Z",
- "playbook_name": "Auth Hash Security Playbook",
- "site_code": "AD01",
- "status": "Open"
}
]
}
], - "metadata": { }
}