From 80bb644ba7da908fe6196059b27e07ad16456c91 Mon Sep 17 00:00:00 2001 From: SteveBG3 <128597777+SteveBG3@users.noreply.github.com> Date: Wed, 22 Mar 2023 11:46:33 +0000 Subject: [PATCH] Found an issue when install Posh using the one line cURL command on clean install of Kali 2022.4 (other methods and versions may be effected) were the python moduel yaml was not availible to the posh scripts meaning the server cannot launch. Added one line (118) to explicitly install pyyaml inside the Python env. This resolved the issue for me and my team. --- Install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Install.sh b/Install.sh index 83f12b2f..8b52caec 100755 --- a/Install.sh +++ b/Install.sh @@ -115,6 +115,7 @@ python3 -m pip install --upgrade pip > /dev/null python3 -m pip install pandas pipenv > /dev/null cd "$POSH_DIR" python3 -m pipenv --three install >/dev/null +python3 -m pipenv install pyyaml #Needed to fix bug were yaml moduel not included in python env causing posh-server command to crash. cd resources/SharpSocks/ unzip -o SharpSocksServer.zip chmod +x SharpSocksServer/SharpSocksServer