-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactions.json.example
More file actions
67 lines (63 loc) · 1.51 KB
/
Copy pathactions.json.example
File metadata and controls
67 lines (63 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"version": 1,
"actions": {
"hello_world": {
"exe": "python",
"require_token": false,
"cwd": null,
"args":[
"-c",
"print('Hello {{name}}! Your request came from {{ip}}.')"
],
"timeout_seconds": 5,
"capture_output": true,
"rate_limit": {
"max_requests": 10,
"window_seconds": 60
}
},
"linux_discord_relay": {
"exe": "python",
"cwd": "/app/scripts",
"args":[
"discord_sender.py",
"--msg", "{{msg}}"
],
"timeout_seconds": 10,
"capture_output": true
},
"windows_background_task": {
"exe": "C:\\path\\to\\pythonw.exe",
"cwd": "C:\\path\\to\\working\\directory",
"args":[
"tts_manager.py",
"--text", "{{text_raw}}",
"--b64", "{{attachment_b64}}"
],
"timeout_seconds": 600,
"capture_output": true,
"background": true,
"decode_b64_params": ["attachment_b64"]
},
"windows_hidden_vbs": {
"exe": "C:\\Windows\\System32\\wscript.exe",
"cwd": "C:\\Scripts\\Automation",
"args": ["run_hidden.vbs"],
"timeout_seconds": 10,
"capture_output": false
},
"secure_sysinfo_stealth": {
"exe": "bash",
"require_token": "UPLINK_CUSTOM_KEY_123",
"cwd": "/opt/scripts",
"args":[
"get_sysinfo.sh",
"--caller-ip", "{{ip}}"
],
"timeout_seconds": 30,
"capture_output": true,
"background": false,
"stealth": true
}
}
}