apple-tools
apple-tools copied to clipboard
How do I use foul play?
I found this project on Reddit and was hoping it could be used to side load iOS apps onto my M1 Macbook Air. I cloned the foulplay project and compiled it but all I have now is a Unix Executable File that doesn't seem to do anything when double clicked or ran through terminal. Not sure what to do from here.
The executable just does not print any error messages, but it does return non-zero exit code if something goes wrong. So the simplest approach is:
./foulplay srcfile dstfile || echo failed
That will give you a "helpful" failed
message if something goes wrong.
Then you can change the code and add printf()
here and there to better know what actually happens.
when I try to dump this app, I got a mmap error:
➜ ./foulplay /Applications/PinTok.app/Wrapper/PinTok.app/PinTok ~/Desktop/PinTok
mmap: Invalid argument
compiled it but all I have now is a Unix Executable File
@17hoehbr sorry for asking a stupid question but do you build these tools with xcode? could you please provide the command you used to build these?