diff --git a/trueseeing/app/cmd/android/engage.py b/trueseeing/app/cmd/android/engage.py index dbf960c..b43e546 100644 --- a/trueseeing/app/cmd/android/engage.py +++ b/trueseeing/app/cmd/android/engage.py @@ -48,7 +48,8 @@ def get_commands(self) -> CommandMap: def get_options(self) -> OptionMap: return { - 'vers':dict(n='vers=X.Y.Z', d='specify frida-gadget version to use [xf,xfs]') + 'vers':dict(n='vers=X.Y.Z', d='specify frida-gadget version to use [xf,xfs]'), + 'w':dict(n='wNAME=FN', d='wordlist, use as {NAME} [xz]'), } async def _engage_tamper_discard(self, args: deque[str]) -> None: diff --git a/trueseeing/app/cmd/android/recon.py b/trueseeing/app/cmd/android/recon.py index f2b2279..6d99e07 100644 --- a/trueseeing/app/cmd/android/recon.py +++ b/trueseeing/app/cmd/android/recon.py @@ -10,7 +10,7 @@ if TYPE_CHECKING: from typing import Optional, Tuple, Literal, AsyncIterator, Dict - from trueseeing.api import CommandHelper, Command, CommandMap, OptionMap + from trueseeing.api import CommandHelper, Command, CommandMap from trueseeing.core.android.context import APKContext UIPatternType = Literal['re', 'xpath'] @@ -50,11 +50,6 @@ def get_commands(self) -> CommandMap: 'ru':dict(e=self._recon_dump_ui, n='ru [output.xml]', d='recon: dump device UI'), } - def get_options(self) -> OptionMap: - return { - 'w':dict(n='wNAME=FN', d='wordlist, use as {NAME} [xz]'), - } - def _get_apk_context(self) -> APKContext: return self._helper.get_context().require_type('apk')