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

Extract wordlists from dirb #44

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
8 changes: 6 additions & 2 deletions scripts/gobuster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ git clone https://github.com/oj/gobuster /opt/gobuster

cd /opt/gobuster && \
make && \
cp /opt/gobuster/gobuster /usr/local/bin/gobuster

cp /opt/gobuster/gobuster /usr/local/bin/gobuster && \
git clone --no-checkout https://github.com/v0re/dirb.git && \
outzhu marked this conversation as resolved.
Show resolved Hide resolved
cd dirb && \
git config core.sparseCheckout true && \
echo wordlists/ > .git/info/sparse-checkout && \
git checkout master
outzhu marked this conversation as resolved.
Show resolved Hide resolved
1 change: 0 additions & 1 deletion scripts/jd_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ mkdir -p /opt/jd_cli && \
curl -LO "https://repo1.maven.org/maven2/com/github/kwart/jd/jd-cli/${JD_CLI_VERSION}/jd-cli-${JD_CLI_VERSION}.jar" && \
mv jd-cli-${JD_CLI_VERSION}.jar jd-cli.jar && \
chmod +x /opt/jd_cli/jd-cli