Skip to content

Instantly share code, notes, and snippets.

@joec4i
Last active January 3, 2016 16:19
Show Gist options
  • Save joec4i/8488781 to your computer and use it in GitHub Desktop.
Save joec4i/8488781 to your computer and use it in GitHub Desktop.
Cracked Samsung Galaxy Note II pin code for a friend. Luckily it has usb debug turned on. And I just love bash one-liners.
for i in $(seq 0 9999); do x=$(printf %04d $i); echo $x; adb shell input text $x; adb shell input tap 540 360; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment