Skip to content

Commit

Permalink
Merge branch 'dev' into fix-volatility3-pipx
Browse files Browse the repository at this point in the history
  • Loading branch information
ShutdownRepo authored Dec 13, 2024
2 parents 96b5f19 + 345df5d commit 8ad2d56
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sources/install/package_ad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,14 @@ function install_LDAPWordlistHarvester() {
function install_pywerview() {
# CODE-CHECK-WHITELIST=add-aliases
colorecho "Installing pywerview"
pipx install --system-site-packages git+https://github.com/the-useless-one/pywerview
#pipx install --system-site-packages git+https://github.com/the-useless-one/pywerview
# Temp fix for : https://github.com/the-useless-one/pywerview/issues/68
local temp_fix_limit="2025-02-01"
if [[ "$(date +%Y%m%d)" -gt "$(date -d $temp_fix_limit +%Y%m%d)" ]]; then
criticalecho "Temp fix expired. Exiting."
else
pipx install --system-site-packages git+https://github.com/the-useless-one/pywerview@pyproject
fi
add-history pywerview
add-test-command "pywerview --help"
add-to-list "pywerview,https://github.com/the-useless-one/pywerview,A (partial) Python rewriting of PowerSploit's PowerView."
Expand Down

0 comments on commit 8ad2d56

Please sign in to comment.