- Introduced a new JSON configuration file to define permissions for various Bash commands. - Allowed specific commands such as netstat, findstr, ss, tasklist, and wmic for enhanced process management.
13 lines
248 B
JSON
13 lines
248 B
JSON
{
|
|
"permissions": {
|
|
"allow": [
|
|
"Bash(netstat:*)",
|
|
"Bash(findstr:*)",
|
|
"Bash(ss -tlnp:*)",
|
|
"Bash(tasklist:*)",
|
|
"Bash(wmic process where \"ProcessId=2600\" get CommandLine)",
|
|
"Bash(wmic process:*)"
|
|
]
|
|
}
|
|
}
|