Summary
Run a file on disk without spawning /bin/sh likeshell does.
- Needs Admin: False
- Version: 1
- Author: @its_a_feature_
Arguments
path
- Description: Path to the binary on disk to run.
- Required Value: True
- Default Value:
args
- Description: Array of arguments to pass to the program to run
- Required Value: False
- Default Value:
Usage
Detailed Summary
Run a command via Golang’sexec.Command(args.Path, args.Args...) tasking to spin up a subprocess with the path to a binary on disk and an array of arguments.