Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/kerberos tools #264

Merged
merged 3 commits into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions sources/install/package_ad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,13 @@ function install_gmsadumper() {
python3 -m venv ./venv
source ./venv/bin/activate
pip3 install -r requirements.txt
# same as https://github.com/franc-pentest/ldeep/issues/41
local TEMP_FIX_LIMIT="2023-11-18"
if [ "$(date +%Y%m%d)" -gt "$(date -d $TEMP_FIX_LIMIT +%Y%m%d)" ]; then
criticalecho "Temp fix expired. Exiting."
else
pip3 install pycryptodome
fi
deactivate
add-aliases gmsadumper
add-history gmsadumper
Expand Down Expand Up @@ -945,6 +952,13 @@ function install_ldeep() {
colorecho "Installing ldeep"
fapt libkrb5-dev krb5-config
pipx install ldeep
# https://github.com/franc-pentest/ldeep/issues/41
local TEMP_FIX_LIMIT="2023-11-18"
if [ "$(date +%Y%m%d)" -gt "$(date -d $TEMP_FIX_LIMIT +%Y%m%d)" ]; then
criticalecho "Temp fix expired. Exiting."
else
pipx inject ldeep pycryptodome
fi
add-history ldeep
add-test-command "ldeep --help"
add-to-list "ldeep,https://github.com/franc-pentest/ldeep,ldeep is a tool to discover hidden paths on Web servers."
Expand Down
Loading