Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/system/xbin/bash
- #This scripts starts a dropbear damon on an Android device
- #This first line loads variables from file
- . /system/etc/sshd.conf
- cd /system/exbin
- ./dropbear -A -N root -U 0 -G 0 -C "$PASS" -p "$PORT"
- echo "Check if Dropbear is running..."
- echo ""
- ps | grep dropbear
- echo ""
- echo "done"
- exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement