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 penelope tool #410

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from
Draft
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/shells/history.d/penelope
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
penelope 888
penelope -a
penelope -i eth0 888
10 changes: 10 additions & 0 deletions sources/install/package_network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,15 @@ function install_chisel() {
add-to-list "chisel,https://github.com/jpillora/chisel,Go based TCP tunnel with authentication and encryption support"
}

function install_penelope() {
# CODE-CHECK-WHITELIST=add-aliases
colorecho "Installing Penelope"
pipx install --system-site-packages git+https://github.com/brightio/penelope.git
add-history penelope
add-test-command "penelope.py -v"
add-to-list "penelope,https://github.com/brightio/penelope,Penelope is a shell handler designed to be easy to use and intended to replace netcat when exploiting RCE vulnerabilities."
}

function install_sshuttle() {
# CODE-CHECK-WHITELIST=add-aliases
colorecho "Installing sshtuttle"
Expand Down Expand Up @@ -310,6 +319,7 @@ function package_network() {
install_rustscan
install_legba # Login Scanner
install_ssh-audit # SSH server audit
install_penelope # Shell handler
end_time=$(date +%s)
local elapsed_time=$((end_time - start_time))
colorecho "Package network completed in $elapsed_time seconds."
Expand Down
Loading