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

Add Token-Exploiter #422

Open
wants to merge 7 commits into
base: dev
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions sources/install/package_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,14 @@ function install_postman() {
add-to-list "postman,https://www.postman.com/,API platform for testing APIs"
}

function install_token_exploiter() {
# CODE-CHECK-WHITELIST=add-aliases,add-history
colorecho "Installing Token Exploiter"
pipx install --system-site-packages git+https://github.com/psyray/token-exploiter
add-test-command "token-exploiter --help"
add-to-list "token-exploiter,https://github.com/psyray/token-exploiter,Token Exploiter is a tool designed to analyze GitHub Personal Access Tokens."
}

# Package dedicated to applicative and active web pentest tools
function package_web() {
set_env
Expand Down Expand Up @@ -974,6 +982,7 @@ function package_web() {
install_jsluice # Extract URLs, paths, secrets, and other interesting data from JavaScript source code
install_katana # A next-generation crawling and spidering framework
install_postman # Postman - API platform for testing APIs
install_token_exploiter # Github personal token Analyzer
end_time=$(date +%s)
local elapsed_time=$((end_time - start_time))
colorecho "Package web completed in $elapsed_time seconds."
Expand Down
Loading