callback_check
Check if callbacks matching an identifier have been received via HTTP or DNS to confirm payload execution.
Instructions
Check if any callbacks matching an identifier have been received.
Searches HTTP paths and DNS query names for the given substring. Useful after injecting a payload to see if the target called back.
Args: identifier: Substring to match in the request path or DNS query name. Empty string matches all callbacks. since_minutes: Only check callbacks from the last N minutes (default 60).
Returns: Dict with found status, match count, and matching entries.
Example: callback_check(identifier='ssrf-test1') callback_check(identifier='xxe', since_minutes=5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | No | ||
| since_minutes | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |