mirror of
https://github.com/nettitude/PoshC2
synced 2026-06-08 16:22:47 +00:00
20 lines
305 B
Bash
Executable File
20 lines
305 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
|
|
|
|
pushd "$POSH_DIR" >/dev/null
|
|
|
|
if [ "$?" -eq "0" ]; then
|
|
sudo python3 -m pipenv run python3 start.py --client "$@"
|
|
popd > /dev/null
|
|
fi
|