Skip to content

Commit 08df3fb

Browse files
authored
Added --watch and friends to notify (#581)
1 parent 5ed9576 commit 08df3fb

File tree

4 files changed

+49
-4
lines changed

4 files changed

+49
-4
lines changed

agent/src/android/hooking.ts

+26-1
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,36 @@ const getPatternType = (pattern: string): PatternType => {
6464
return PatternType.Klass;
6565
};
6666

67-
export const lazyWatchForPattern = (query: string): void => {
67+
export const lazyWatchForPattern = (query: string, watch: boolean, dargs: boolean, dret: boolean, dbt: boolean): void => {
6868
// TODO: Use param to control interval
6969
let found = false;
70+
const job: IJob = {
71+
identifier: jobs.identifier(),
72+
implementations: [],
73+
type: `notify-class for: ${query}`,
74+
};
75+
76+
// This method loops over all enumerate matches and then calls watch
77+
// with the arguments specified in the parent function
78+
const watchMatches = (matches: Java.EnumerateMethodsMatchGroup[]) => {
79+
matches.forEach(match => {
80+
match.classes.forEach(_class => {
81+
_class.methods.forEach(_method => {
82+
watchMethod(_class.name + "." + _method, job, dargs, dbt, dret);
83+
})
84+
})
85+
})
86+
}
7087

7188
// Check if the pattern is found before starting an interval
7289
javaEnumerate(query).then(matches => {
7390
if (matches.length > 0) {
7491
found = true;
7592
send(`${c.green(query)} is already loaded / available`);
93+
if (watch) {
94+
watchMatches(matches);
95+
jobs.add(job);
96+
}
7697
}
7798
});
7899

@@ -87,6 +108,10 @@ export const lazyWatchForPattern = (query: string): void => {
87108
if (!found && matches.length > 0) {
88109
send(`${c.green(query)} is now available`);
89110
found = true;
111+
if (watch) {
112+
watchMatches(matches);
113+
jobs.add(job);
114+
}
90115
}
91116

92117
if (found) clearInterval(interval);

agent/src/rpc/android.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const android = {
5858
androidHookingWatch: (pattern: string, watchArgs: boolean, watchBacktrace: boolean, watchRet: boolean): Promise<void> =>
5959
hooking.watch(pattern, watchArgs, watchBacktrace, watchRet),
6060
androidHookingEnumerate: (query: string): Promise<Java.EnumerateMethodsMatchGroup[]> => hooking.javaEnumerate(query),
61-
androidHookingLazyWatchForPattern: (query: string): void => hooking.lazyWatchForPattern(query),
61+
androidHookingLazyWatchForPattern: (query: string, watch: boolean, dargs: boolean, dret: boolean, dbt: boolean): void => hooking.lazyWatchForPattern(query, watch, dargs, dret, dbt),
6262

6363
// android heap methods
6464
androidHeapEvaluateHandleMethod: (handle: number, js: string): Promise<void> => heap.evaluate(handle, js),

objection/commands/android/hooking.py

+19-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,17 @@ def _should_dump_backtrace(args: list = None) -> bool:
5151
return '--dump-backtrace' in args
5252

5353

54+
def _should_watch(args: list = None) -> bool:
55+
"""
56+
Check if --dump-args is part of the arguments.
57+
58+
:param args:
59+
:return:
60+
"""
61+
62+
return '--watch' in args
63+
64+
5465
def _should_dump_args(args: list = None) -> bool:
5566
"""
5667
Check if --dump-args is part of the arguments.
@@ -207,7 +218,14 @@ def notify(args: list = None) -> None:
207218
return
208219

209220
api = state_connection.get_api()
210-
api.android_hooking_lazy_watch_for_pattern(query)
221+
should_watch = _should_watch(args)
222+
dump_arguments = _should_dump_args(args)
223+
dump_backtrace = _should_dump_backtrace(args)
224+
dump_return = _should_dump_return_value(args)
225+
api.android_hooking_lazy_watch_for_pattern(query,
226+
should_watch, dump_arguments,
227+
dump_return,
228+
dump_backtrace)
211229

212230

213231
def watch(args: list = None) -> None:

objection/console/commands.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,9 @@
352352
},
353353
'notify': {
354354
'meta': 'Notify when a class becomes available',
355-
'exec': android_hooking.notify
355+
'exec': android_hooking.notify,
356+
'flags': ['--dump-args', '--dump-return', '--dump-backtrace', '--watch']
357+
356358
},
357359
'generate': {
358360
'meta': 'Generate Frida hooks for Android',

0 commit comments

Comments
 (0)