android_of_theseus/frida/theseus_frida/app_exploration.py
Jean-Marie Mineau 190a8a8690
wip
2025-04-07 11:29:06 +02:00

32 lines
708 B
Python

from pathlib import Path
import time
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:
time.sleep(5) # let the app load
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()