Retrieves the complete file tree structure for a victim log. Use file IDs from the tree to download individual files.
Response Format Note: This endpoint returns an unwrapped response (log_id, log_name, victim_tree at root level)
rather than wrapped in the standard {success, data} envelope. SDKs v1.0.3+ handle this automatically.
Example response:
{
"log_id": "abc123def456",
"log_name": "victim_2024_01_15",
"victim_tree": {
"id": "root",
"name": "/",
"type": "directory",
"children": [
{
"id": "f1",
"name": "Passwords",
"type": "directory",
"children": [
{
"id": "f1a",
"name": "Chrome.txt",
"type": "file",
"size_bytes": 1024
}
]
}
]
}
}
log_idlog_id is a unique identifier for a specific victim’s stealer log. You get this from:
| Field | Description |
|---|---|
log_id | Unique identifier for this victim log |
log_name | Human-readable name for the log |
victim_tree | Hierarchical file tree structure |
victim_tree.id | Unique file/directory ID (use with file endpoint) |
victim_tree.type | Either file or directory |
victim_tree.size_bytes | File size in bytes (files only) |
victim_tree.children | Child nodes (directories only) |
id from file nodes in the tree to get file contents:
API key for authentication (lowercase header name)
Victim manifest