Jump to content

Where to find ProcessID / Binary Name?


Go to solution Solved by 0xWeiss,

7 posts in this topic

Recommended Posts

  • Solution
Posted

Never mind, I've found it via:

/var/container/Bundle/Application/APPLICATION-NAME/NameOfApp.app

Wish there were an easier way, but that's finnnnnnnneeee.

Posted
5 minutes ago, 0xWeiss said:

How does one go about finding these on mobile?

command in Terminal / NewTerm

ps -e | grep <app name or part of app name>

Example: ps -e | grep CandyCrush

This wil show something like this 

1234 ?? 0:02.34 /var/containers/Bundle/Application/.../CandyCrush.app/CandyCrush

1234 ( is your PID ) it changes evrytime u restart the game
CandyCrush is Binary name
 

1 minute ago, 0xWeiss said:

Never mind, I've found it via:

/var/container/Bundle/Application/APPLICATION-NAME/NameOfApp.app

Wish there were an easier way, but that's finnnnnnnneeee.

jus run this commadn no need to do that it will list its location and PID which changes every time , you gonna need PID if u r into debugging

Posted
6 minutes ago, Aizen_ said:

command in Terminal / NewTerm

ps -e | grep <app name or part of app name>

Example: ps -e | grep CandyCrush

This wil show something like this 

1234 ?? 0:02.34 /var/containers/Bundle/Application/.../CandyCrush.app/CandyCrush

1234 ( is your PID ) it changes evrytime u restart the game
CandyCrush is Binary name
 

jus run this commadn no need to do that it will list its location and PID which changes every time , you gonna need PID if u r into debugging

Doesn’t work that way for me, unfortunately? 
https://imgur.com/a/ANtezG6

Posted (edited)
27 minutes ago, 0xWeiss said:

You used the wrong PID
The PID you picked is not the game’s PID.
It’s the PID of the grep command itself

A real game process will have something like this
/var/containers/Bundle/Application/UUID/GameName.app/GameName

Try these and see which one worked 
1: ps -e | grep -i PartOfGame | grep -v grep


2: ps -axo pid,command | grep -i PartOfGame


3: to show only running apps and games try this
ps -axo pid,command | grep ".app/"



4: lastly the easiest one for me(Recommended) which will show only running game 
ps -ax | grep (Part Of game )

Like: ps -ax | grep Candy





also keep in mind u will see something like this 

iPone:~ mobile% ps -ax | grep Candy
14913 ?? 0:02.90 /var/containers/Bundle/Application/38D5616D-D1E9-49F4-A539-0E0CD64204AD/CandyCrush.app/CandyCrush 15031 ttys000 0:00.07 grep Candy


u see the red number thats not PID u picked this one in the picture , the Green one at the start is Your PID

Hope this Helps

Updated by Aizen_

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines