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

Responder URL and Version Update for Quickcreds #49

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions modules/quickcreds
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LOOTDIR="/root/loot/quickcreds/"
RESPLOG=$LOOTDIR"responder.log"
RESPROOT="/sd"
RESPTEMPDL="/tmp/ResponderDownload/"
RESPURL="https://github.com/lgandx/Responder/archive/master.zip"
RESPURL="https://github.com/lgandx/Responder/archive/refs/tags/v3.0.6.0.zip"
RESPLOGDIR=$RESPROOT/"Responder/logs"
SLEEPTIMER="1"

Expand Down Expand Up @@ -82,11 +82,10 @@ function configure {
# Create new
/bin/mkdir -p "$RESPTEMPDL"
# Download and extract
/usr/bin/wget --progress=dot "$RESPURL" -P "$RESPTEMPDL" 2>&1 | /usr/bin/dialog --progressbox "Download dependency responder" 14 72
/usr/bin/wget --progress=dot "$RESPURL" -O "$RESPTEMPDL"master.zip 2>&1 | /usr/bin/dialog --progressbox "Download dependency responder" 14 72
# Unpack the GitHub download
/usr/bin/unzip "$RESPTEMPDL"master.zip -d "$RESPTEMPDL" 2>&1 | /usr/bin/dialog --progressbox "Unpacking dependency responder" 14 72
/bin/rm "$RESPTEMPDL"Responder-master/tools/MultiRelay/bin/*.exe
/bin/mv "$RESPTEMPDL"Responder-master "$RESPTEMPDL"Responder
/bin/mv "$RESPTEMPDL"Responder-3.0.6.0 "$RESPTEMPDL"Responder
/bin/mv "$RESPTEMPDL"Responder "$RESPROOT"
/bin/rm -rf "$RESPTEMPDL"master.zip*
fi
Expand Down