Here you can find a list of panic log and how to get them using frida REPL:
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/env python3 | |
| import signal | |
| import threading | |
| import _frida | |
| import frida | |
| from frida.core import Device, Session, Script, ScriptMessage | |
| signal_event: threading.Event = threading.Event() |
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/env python3 | |
| import json | |
| import frida | |
| from frida.core import Device, Session, Script, ScriptExportsSync | |
| compiler: frida.Compiler = frida.Compiler() | |
| compiler.on("diagnostics", lambda diag: print(f"on_diagnostics: {diag}")) | |
| bundle: str = compiler.build('permissions.ts', compression='terser') |
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/env python3 | |
| import signal | |
| import sys | |
| import threading | |
| from typing import List, Tuple | |
| import _frida | |
| import frida | |
| from frida.core import Session, Device, Script |
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/env python3 | |
| import signal | |
| import sys | |
| import _frida | |
| import frida | |
| from frida.core import Session, Script, Device, ScriptMessage | |
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
| import threading | |
| from frida_tools.application import Reactor | |
| import frida | |
| class Application: | |
| def __init__(self): | |
| self._stop_requested = threading.Event() |
Here, I'll show you how to compile Frida for both rootfull and rootless jailbreaks.
On Dopamine/Fugu15 Max or palera1n you can add my repo (open the link in your favorite browser on your jailbroken iDevice).
The DEBs you will install are build using the following instructions.
NewerOlder