objection icon indicating copy to clipboard operation
objection copied to clipboard

iOS Hooking List Output

Open ngkogkos opened this issue 7 years ago • 6 comments

As per title, add extra optional argument for dumping class_methods and classes in filesystem files.

It would be nice if we could grep or somehow search in this output.

ngkogkos avatar Oct 19 '18 09:10 ngkogkos

+1 on this

dgrivera avatar Feb 20 '19 02:02 dgrivera

In general, it would be great to be able to grep when running any command, e.g.

env | grep BundlePath

or

ios plist cat Info.plist | grep CFBundleExecutable

I know about ! but it seems to work only at the beginning of the line.

cpholguera avatar Apr 07 '19 17:04 cpholguera

While this is not the ideal solution, in the interim you may run once off commands with objection run. Something like objection run "env" | grep -i BundlePath should get you your output into a shell you can work with.

leonjza avatar Apr 07 '19 19:04 leonjza

Sure, that's usually my workaround ^^ I just wanted to suggest that as an idea for a future feature maybe. It could work similar to radare2's pipes | or internal grep ~. That could be very handy.

Thanks for the answer Leon!

cpholguera avatar Apr 07 '19 21:04 cpholguera

While this is not the ideal solution, in the interim you may run once off commands with objection run. Something like objection run "env" | grep -i BundlePath should get you your output into a shell you can work with.

Unfortunately, that won't work for example to grep the output of the list of classes: android hooking list classes.. which would be nice...

cryptax avatar Feb 21 '22 11:02 cryptax