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

Added modules broken link checker #588

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions images/provisioners/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,10 @@
"echo 'Installing naabu'",
"/bin/su -l op -c 'GO111MODULE=on /usr/local/go/bin/go install github.com/projectdiscovery/naabu/v2/cmd/naabu@latest'",

"echo 'Install broken link checker'",
"/bin/su -l op -c 'apt install npm'",
"/bin/su -l op -c 'npm install broken-link-checker -g'",

"echo 'Installing nmap'",
"sudo apt-get -qy --no-install-recommends install build-essential libssl-dev flex bison",
"/bin/su -l op -c 'wget https://nmap.org/dist/nmap-7.92.tgz -O /home/op/recon/nmap.tar.gz && cd /home/op/recon/ && tar zxf nmap.tar.gz --transform s/nmap-7.92/nmap/ && rm nmap.tar.gz && cd /home/op/recon/nmap/ && sudo ./configure --without-ndiff --without-zenmap --without-nping --without-ncat --without-nmap-update --with-libpcap=included && sudo make && sudo make install'",
Expand Down
4 changes: 4 additions & 0 deletions modules/blc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[{
"command":"cat input | /usr/bin/xargs -n1 -I@ /usr/local/bin/blc -rof --filter-level 3 @ | tee output",
"ext":"txt"
}]