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 - joomscan #148

Merged
merged 2 commits into from
Apr 28, 2023
Merged
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
3 changes: 3 additions & 0 deletions sources/assets/zsh/history.d/joomscan
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
joomscan -u $TARGET
joomscan -u $TARGET --enumerate-components
joomscan -u $TARGET --proxy http://127.0.0.1:8080
11 changes: 10 additions & 1 deletion sources/install/package_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function package_web() {
install_kadimus # LFI scanner
install_fuxploider # File upload scanner
# install_patator # Login scanner # FIXME
# install_joomscan # Joomla scanner FIXME (https://github.com/ThePorgs/Exegol-images/actions/runs/3557732633/jobs/5977150292)
install_joomscan # Joomla scanner
install_wpscan # Wordpress scanner
install_droopescan # Drupal scanner
install_drupwn # Drupal scanner
Expand Down Expand Up @@ -247,6 +247,15 @@ function install_fuxploider() {
add-to-list "fuxploider,https://github.com/almandin/fuxploider,a Python tool for finding and exploiting file upload forms/directories."
}

function install_joomscan(){
colorecho "Installing joomscan"
git -C /opt/tools/ clone --depth=1 https://github.com/rezasp/joomscan
add-aliases joomscan
add-history joomscan
add-test-command "joomscan --version"
add-to-list "joomscan,https://github.com/rezasp/joomscan,A tool to enumerate Joomla-based websites"
}

function install_wpscan(){
colorecho "Installing wpscan"
# TODO : Check if deps are already installed
Expand Down