You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm developing a feature called "quick command" in frida REPL, like:
[Local::a.exe ]-> .d 401000 10
0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF
00401000 55 8b ec 81 c4 fc fe ff ff 8b 45 0c 83 f8 01 75 U.........E....u
The quick cmd starts with '.' (same as nodejs REPL), and can be customized dynamically by the javascript loaded.
For example, register a new quick cmd 'u' in agent.js :
REPL.register_quick_cmd('u',// the quick cmd1,// at least 1 argumentfunctiondisasm(addr,inst_cnt=10){ ... }// target function)
I'm developing a feature called "quick command" in frida REPL, like:
The quick cmd starts with '.' (same as nodejs REPL), and can be customized dynamically by the javascript loaded.
For example, register a new quick cmd 'u' in
agent.js
:Which can be used in REPL:
I have not contributed to this project yet, and would like to know if it is possble to make a pull request for this feature directly?
The text was updated successfully, but these errors were encountered: