android_of_theseus/frida/theseus_frida/app_exploration.py
Jean-Marie Mineau a6a0740c61
WIP
2025-04-04 15:08:28 +02:00

30 lines
654 B
Python

from pathlib import Path
try:
from grodd_runner import grodd_runner # type: ignore
USE_GRODD = True
except ModuleNotFoundError:
USE_GRODD = False
def explore_app(
package: str,
device: str = "emulator-5554",
android_sdk: Path | None = None,
):
if USE_GRODD:
grodd_runner(
"grodd", device, timeout=300, package=package, android_sdk=android_sdk
)
else:
print(
"\033[31mGrodd is not available, you need to explore the app manually\033[0m"
)
manual_exploration()
def manual_exploration():
print("==> Press ENTER to end the analysis <==")
input()