-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhindsight_processing_input.json
More file actions
41 lines (41 loc) · 1.59 KB
/
hindsight_processing_input.json
File metadata and controls
41 lines (41 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"working_directory_path": {
"type": "string",
"format": "localFilePath",
"title": "Working Directory Path",
"description": "Absolute path to the directory where Hindsight output artifacts will be stored."
},
"hindsight_executable_path": {
"type": "string",
"format": "localFilePath",
"title": "Hindsight Executable Path",
"description": "Absolute path to the hindsight.exe binary on the target endpoint."
},
"output_format": {
"type": "string",
"enum": ["xlsx", "sqlite", "jsonl"],
"title": "Output Format",
"description": "File format for Hindsight forensic output (xlsx for Excel, sqlite for database, jsonl for JSON lines)."
},
"target_browser": {
"type": "string",
"enum": ["Google Chrome", "Microsoft Edge", "Brave"],
"title": "Target Browser",
"description": "Name of the Chromium-based browser to collect forensic data from."
},
"target_hostname": {
"type": "string",
"title": "Target Hostname",
"description": "Hostname of the endpoint system, used for naming output artifacts."
},
"target_username": {
"type": "string",
"title": "Target Username",
"description": "Windows username whose browser profile to analyze. If empty, auto-discovers the currently logged-in user."
}
},
"required": ["working_directory_path", "hindsight_executable_path", "output_format", "target_browser", "target_hostname"]
}