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 characters
| /* | |
| Run this script : | |
| $> frida -U -l bypass-throttle.js gatekeeperd | |
| Explainations : | |
| Bypass android throttle when pincode is wrong | |
| Frida enumeration : |
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 characters
| #!/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): |
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 characters
| 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] |
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 characters
| 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) |
OlderNewer