Skip to content

Instantly share code, notes, and snippets.

@Areizen
Areizen / bypass_throttle.js
Created June 11, 2020 09:56
Bypass android throttle when pincode is wrong
/*
Run this script :
$> frida -U -l bypass-throttle.js gatekeeperd
Explainations :
Bypass android throttle when pincode is wrong
Frida enumeration :
@Areizen
Areizen / uninstall.py
Last active July 23, 2020 18:40
Uninstall Device administrator applications
#!/usr/bin/python3
import frida
import subprocess
import sys
if len(sys.argv) !=2:
print(f"[-] Usage : python3 {sys.argv[0]} <package_to_uninstall>")
sys.exit(-1)
def message(message, data):
@Areizen
Areizen / download.py
Created June 30, 2022 18:47
Dirty download app from playstore
from re import sub
import subprocess
import sys
import re
from bs4 import BeautifulSoup
import time
def dump_layout():
path_out = subprocess.check_output(["adb", "shell", "uiautomator", "dump"])
path_out = path_out.split(b': ')[1]
class Shrimp:
def __init__(self, name, pH, kH, gH):
self.name = name
self.kH = kH
self.pH = pH
self.gH = gH
def canSurvive(self, pH,kH,gH):
print("="*10)
print(self.name)