Aerosol Posted December 12, 2014 Report Posted December 12, 2014 While security of mobile operating systems is one of the most researched topics today, exploiting and rootkitting ARM-based devices gets more and more interesting. This article will focus on the exploitation of TEEs (Trusted Execution Environments) running in ARM TrustZone to hide a TrustZone-based-rootkit.First let’s take a look over what we are protecting on our modern mobile phones:We protect our communication – doesn’t matter if it’s calls or text messagesOur data – lots of people have documents on their phones (from their businesses, presentations, contracts and so on)Our Credentials – like email passwords, different type of keys, etc.Our Payments – like online wallets (google wallet, yahoo wallet), PayPal, and other bank information.Let’s see what famous rootkits succeeded to collect information from mobiles, and remain hidden for a long time.CarrierIQUsed for logging user keystrokes, recording telephone calls, storing text messages, tracking location and more than that was difficult or impossible to disable.The software’s meant to improve the customer experience, however in nearly every case, CarrierIQ users don’t know about the software’s existence, as it runs hidden in the background and doesn’t require authorized consent to function. This rootkit was discovered by Trevor Eckhart and he demonstrated in a video that CarrierIQ is tracking our data. At the end, his questions are:- Why do key presses submit UI01 & unique key codes?- Why does SMSNotify get called and show to be dispatching text messages to CarrierIQ ?- Why is my Browser data being read, especially HTTPs on my WiFi?- Why is this not opt-in and Why is it so hard to FULLY remove?What you can do?Trevor Eckhartcreated a tool called Logging TestApp which turned into a full security suite and can be used to verify what logging is being done on your phone and where data is going. It will assist you in manually removing parts you do not know are running. Alternatively, the pro version of Logging TestApp -automates everything - and is available in the Android Marketplace for $1 – it has also proven successful in most situations.FinFisher – FinSpyFinSpy is a Remote Monitoring Solution that enables governments, agencies and companies to face the current challenges of monitoring mobiles. It has been proven successful in operations around the world for many years, and valuable intelligence has been gathered about target individuals and organizations. It’s spread by links, email attachments, infected websites.FinFisher was made by a company called Gamma International, and it is marketed as a powerful tool for accessing the computers of suspected criminals and terrorists secretly. Once it has infected your computer, FinFisher is not detected by anti-virus or antispyware software. Some of FinFisher’s capabilities are the following: steals passwords from your computer, allowing access to your e-mail accounts; wiretaps your Skype calls; turns on your computer’s camera and microphone to record conversations and video from the room that you are in.A quick description of the FinSpy tool collected by Privacy International among others and posted on Wikileaks make a series of claims about functionality:Bypassing of 40 regularly tested Antivirus SystemsCovert Communication with HeadquartersFull Skype Monitoring (Calls, Chats, File Transfers, Video, Contact List)Recording of common communication like Email, Chats and Voice-over-IPLive Surveillance through Webcam and MicrophoneCountry Tracing of TargetSilent Extracting of Files from Hard-DiskProcess-based Key-logger for faster analysisLive Remote Forensics on Target SystemAdvanced Filters to record only important informationSupports most common Operating Systems (Windows, Mac OSX and Linux)Be wary of opening unsolicited attachments received via email, Skype or any other communications mechanism. If you believe that you are being targeted it pays to be especially cautious when downloading files over the Internet, even from links that are purportedly sent by friends.You can find some very well explained articles regarding FinFisher on citizenlab.org (find the links in resources section)Where rootkits are hidden?On mobile phones there are just two places where rootkits can hide with success: CPU and Baseband. On most operating platforms, both CPU and Baseband have full memory access so if you can own the Baseband you actually own the device. Even so, we can find around the CPU and Baseband, a small hardware addition by ARM called TrustZone and I will focus on this for the rest of article.The ARM processor is a 32-bit RISC processor, meaning it is built using the reduced instruction set computer (RISC) instruction set architecture (ISA). ARM processors are microprocessors and are widely used in as many as 98% of mobile phones sold each year. They are also used in personal digital assistants (PDA), digital media and music layers, hand-held gaming systems,calculators, and even computer hard drives.TrustZone is basically a secure chip in your ARM processor that allows the processor to switch into a “secure mode” which hopefully will execute only trusted code.Here are other TrustZone functions:Secure access to screen, keyboard and other peripheralsTries to protect against malwares, Trojans and rootkitsSo called TEEs (Trusted Execution Environments) run on it.Splits the CPU in two worlds, secure and normal.Communication between both worlds is made via shared memory mappings.Trusted Execution Environmentals is a small operating system running in TrustZone that provides services to the real operating system. To better understand TEEs we can look at Netflix as an example:Requires a device certificationFor SD, the device just needs to be fast enough to play videoFor HD, the labels require ‘end-to-end’ DRM, so that the video-stream can’t be grabbed at any timeVideo decoding running in TrustZone with direct access to screen, no way to record it from Android.The image below by Thomas Roth explains perfectly how the whole system works, connectingthe normal world and secure world togetherClick to EnlargeThe SMC is sorted out of the information received from the normal or secure world, store registers of the current world, load new world registers, toggle NS and execute the application.Memory allocation by Thomas RothClick to EnlargeNormal world can only access its own memory and shared segment, secure world can access everything.The boot process will start the trusted segment first, then the normal segment, as bellow (image by Thomas Roth)Click to EnlargeBasically, the vendor installs a small operating system in a part of the CPU and this OS can do anything. Also third party apps are installed on it as well.Knowing these facts, let’s see what we need to build a rootkit in TrustZoneOMAP HS development board. (Open Multimedia Applications Platform)Connectivity and system integrationSupport best-in-class video, graphics and multimedia performance.Security - OMAP processors support secure boot and run time,Vision Analytics – distributed vision processing, or DVP, framework and includes aprogrammable DSP.OMAP processors provide hardware and software support for the virtualization and cloud computingPackaging – TI offers OMAP processors in a variety of package optionsSystem performance support a range of applications and demands.Quality & reliability – rigorous quality assurance practices and has a zero-DPPM strategy to continuously improve its products.QEMU - Quick EMUlator hosted virtual machine monitor:It emulates central processing units through dynamic binary translation and provides a set of device models, enabling it to run a variety of unmodified guest operating systems.Also provides an accelerated mode for supporting a mixture of binary translation (for kernel code) and native execution (for user code), in the same fashion VMware Workstation and VirtualBox do.QEMU can also be used purely for CPU emulation for user-level processes, allowing applications compiled for one architecture to be run on another.TEE (Trusted Execution Environment)Is used to protect the secure kernel and peripherals from code running in the primary operating system.Supports ARM11Allows multiple operating systems such as Android, Linux, BSD and other “normal world” OS’sMinimizes memory and system overheadNote* A tutorial about how to create a small virus for android you can find in my References linksSupposing you already created your rootkit and have it integrated inside TrustedZone there are few things to keep in mind:Have a different execution environment, separated from the normal OSBe sure you covered your traces in order to keep the access for a long time.Get control over the CPU regularly in order to access user data, and manipulate the memory.How to infect other phones?-using infected apps-via updates-baseband attackHow to avoid infection over your phone?LatencyBe paranoidTriple check your apps source and be sure you’re installing the apps from trusted vendors.Trevor Eckhart – Xda-developers – Logging TestAppFinFisher – WikileaksFinFisher spykit exposed by citizenlab.orgBootloader Project – wikipedia pageGeneric emulator – QEMUOpen Virtualization – TEECreate a virus for androidHIP13 – Source Quote