sensepost / objection

📱 objection - runtime mobile exploration
GNU General Public License v3.0
7.17k stars 825 forks source link

Does objection have the function of exporting results? #641

Open prship opened 9 months ago

prship commented 9 months ago

When a command outputs too many results, it often overflows the console. Is there a feature to export the results to a local file? For example: ios hooking list classes -o output.txt or ios hooking list classes >> output.txt

IsakOCD commented 6 months ago

Not during runtime, but you can use the run subcommand: Eg: objection -q run "ios hooking list classes" >> output.txt

https://github.com/sensepost/objection/issues/314

makimura-yu commented 4 months ago

This command did it: Eg: objection -g {ProcessName} run "ios hooking list classes" > output.txt