mirror of
https://github.com/nettitude/PoshC2
synced 2026-06-08 16:22:47 +00:00
21 lines
389 B
Bash
Executable File
21 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# trap ctrl-c and call ctrl_c()
|
|
trap ctrl_c INT
|
|
|
|
function ctrl_c() {
|
|
popd > /dev/null
|
|
exit
|
|
}
|
|
|
|
source /usr/local/bin/_posh-common
|
|
get_posh_dir
|
|
get_posh_project_dir
|
|
|
|
pushd $POSH_DIR >/dev/null
|
|
if [ "$?" -eq "0" ]; then
|
|
|
|
sudo python3 -m pipenv run python3 -u start_api.py --server 2>&1 | sudo tee -a "$POSH_PROJECT_DIR/poshc2_api_server.log"
|
|
popd > /dev/null
|
|
fi
|