1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00
pwncat/data/pwncatrc
Caleb Stewart d62366da45 Run/local command and shortcuts
Added the "run" and "local" commands for remote and local command
execution respectively and the "shortcut" command to allow for shortcuts
like "!ls" for local commands and "@ls" for remote commands.
2020-05-17 02:29:51 -04:00

29 lines
723 B
Plaintext

# Set your remote hosts file
set lhost "127.0.0.1"
# Set your command prefix
set prefix c-k
# Set the default private key to use for privilege escalation
set privkey "data/pwncat"
# Set the pwncat backdoor user and password
set backdoor_user "pwncat"
set backdoor_pass "pwncat"
set on_load {
# Run a command upon a stable connection
# privesc -l
}
# Examples of command bindings
bind s "sync"
bind c "set state command"
# Create aliases for commands
alias up upload
alias down download
# Shortcuts allow single-character prefix which indicate the entire command
# string be passed as the arguments to a specific command. For example:
# "!ls" run "local ls" given the below directives
shortcut ! local
shortcut @ run