Codebase list poshc2 / 06a953b resources / scripts / posh-cookie-decrypter
06a953b

Tree @06a953b (Download .tar.gz)

posh-cookie-decrypter @06a953braw · history · blame

#!/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 "$POSH_DIR/cookie_decrypter.py"
    popd > /dev/null

fi