Secure coding

iOS application security part 47 — Inspecting apps with Frida

Prateek Gianchandani
July 24, 2018 by
Prateek Gianchandani

In this article, we will talk about Frida. Frida is a dynamic instrumentation toolkit which can prove to be extremely useful in iOS application assessments. It can be used to assess apps on jailbroken and non-jailbroken devices (provided you have the source code). We will look at all these examples in this and the coming few articles.

Let's start first with assessment over jailbroken devices. Frida basically works on a client-server model. The client is running on your computer and the server on the iOS device. To install Frida on your computer, simply issue the following command as shown.

Learn Secure Coding

Learn Secure Coding

Build your secure coding skills in C/C++, iOS, Java, .NET, Node.js, PHP and other languages.

On your jailbroken device, add the source https://build.frida.re. Then go to Search and search for Frida.

One of the important things is to make sure both the Frida versions on the iOS device and the computer are same. Otherwise, Frida won't work.

Now SSH into your jailbroken device and you will see a process with the name frida-server which is running.

From your computer, simply issue the command frida-ps -U. Make sure the jailbroken device is connected to your computer over USB. If you get similar output, it means Frida is all set up and running.

Frida comes with a bunch of command-line tools, as can be seen here.

Issuing the command frida-ps will just show you a list of the processes running on your computer. But right now, we are interested in iDevices. Running the command frida-ls-devices will show all the devices connected to the computer. We can interface with this device with frida-ps -U command. If there is more than one device, you will need to specify the UDID.

.

Ok, so we are all set. Let's now look at what we can do with Frida.

In this case, we will be using the application Damn Vulnerable iOS app which you can download here. You might face issues with installing the older Objective C version of the app on iOS 10 or later, because the original app was signed with SHA-1 but since iOS 10 Apple has been using SHA-256. That means you might need to unzip the IPA file, strip out the 64-bit architecture using jtool (or lipo) and then sign it. You can then repackage the app and install it again to the device using Cydia Impactor.

To see a list of all the applications installed on the device along with their unique identifier, run the frida-ps -Uai command.

To see all the running apps, use the frida-ps -Ua command.

To attach to a specific process, run the frida -U processname command. Make sure that the application is running in the foreground on the device. The Frida CLI can be used to emulate a lot of the features of Cycript.

However, in this article, we will look at the frida-trace CLI. This CLI can help you trace various method calls during the application runtime. This can be extremely useful in understanding the inner workings of the application. It's always a good idea to look at the help output as there are many options here.

To trace a particular function, you can specify it with the -i option. You can also provide a regex in the method section as shown in the figure below. E.g, in the example below, you can trace the Crypto calls.

If you use the -I option, you can determine which module from Frida you want to include, which is essentially the dylib from where all functions will be retrieved.

In case of DVIA (Objective-C version), you can go to the Broken Cryptography section and start the challenge. To trace a particular Objective C method, you can specify it with the -m option. If the method calls match the provided regex, you will see the output as shown in the image below.

This is extremely useful in understanding the inner workings of the application, and the same info can be used to patch or bypass certain methods.

Learn Secure Coding

Learn Secure Coding

Build your secure coding skills in C/C++, iOS, Java, .NET, Node.js, PHP and other languages.

Thank you for reading! In the next article, we will look at more examples of using Frida.

Prateek Gianchandani
Prateek Gianchandani

Prateek Gianchandani, a recent IIT graduate, has interests in the field of Penetration Testing, Web Application Security and Intrusion Detection. He is currently a researcher for InfoSec Institute. In the past he has worked for security-based startups.

You can contact him at prateek.searchingeye@gmail.com and on twitter @prateekg147 or you can visit his personal website at highaltitudehacks.com