Skip to content

Commit

Permalink
Add katana tool
Browse files Browse the repository at this point in the history
  • Loading branch information
QU35T-code committed Jun 6, 2024
1 parent 4ee76b9 commit 530853d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sources/assets/shells/history.d/katana
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
katana -u https://$TARGET
katana -u https://$TARGET,https://$TARGET
katana -list url_list.txt
katana -u https://$TARGET -headless -no-incognito
11 changes: 11 additions & 0 deletions sources/install/package_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -846,6 +846,16 @@ function install_sslscan() {
add-to-list "sslscan,https://github.com/rbsec/sslscan,a tool for testing SSL/TLS encryption on servers"
}

function install_katana() {
# CODE-CHECK-WHITELIST=add-aliases
colorecho "Installing katana"
go install -v github.com/projectdiscovery/katana/cmd/katana@latest
asdf reshim golang
add-history katana
add-test-command "katana --help"
add-to-list "katana,https://github.com/projectdiscovery/katana,A next-generation crawling and spidering framework."
}

# Package dedicated to applicative and active web pentest tools
function package_web() {
set_env
Expand Down Expand Up @@ -922,6 +932,7 @@ function package_web() {
install_soapui # SoapUI is an open-source web service testing application for SOAP and REST
install_sqlmap # SQL injection scanner
install_sslscan # SSL/TLS scanner
install_katana # A next-generation crawling and spidering framework
end_time=$(date +%s)
local elapsed_time=$((end_time - start_time))
colorecho "Package web completed in $elapsed_time seconds."
Expand Down

0 comments on commit 530853d

Please sign in to comment.