12/08/2019

Easy command for find iOS Application directory on Jailed Device

Unlike Android, iOS has a random pattern of directory names for each app. This is a little annoying when analyzing it.



but you can simply check it out by using the commands below. (Create for Memo)

$ find . -maxdepth 3 | grep <Search App Name>


With the -type option, you can search in fast.

$ find . -type f -maxdepth 3 | grep <Search App Name>
$ find . -type d -maxdepth 3 | grep <Search App Name>


e.g
$ find . -maxdepth 3 | grep YouTube






HAHWUL

Security engineer, Gopher and H4cker!

Share: | Coffee Me:

1 comment:

  1. Other ways.
    (1) Objection > env (https://twitter.com/g33kyshivam/status/1203686128462618624?s=20)
    (2) see the creation/modification date of `ls -al`
    (3) idb > selecte app (see cli log or gui screen)

    ReplyDelete