Vault7: CIA Hacking Tools Revealed
Navigation: » Latest version
Updating DerStarke v1.4 to Yosemite
Prerequisite (non code changes):
- Xcode 6 for 10.10 SDK
- Since Xcode 6 is also in beta, it is recommended to do this in a VMVirtual Machine or non-primary dev box
- note beta Xcode's will install as Xcode6-Beta.app, so it won't overwrite current working Xcode, but have expereinced issues in the past
- Open Xcode and set build paths to 'Legacy', under Xcode->Preferences->Locations->Advanced
- Since Xcode 6 is also in beta, it is recommended to do this in a VMVirtual Machine or non-primary dev box
- Xcode 6 Command line tools for which ever OSOperating System you're developing on
- Should work on either Mavericks or Yosemite
- Have to point xcode-select to beta version of Xcode 6
- sudo xcode-select -switch /Applications/Xcode6-Beta2.app/Contents/Developer
Checkout DerStarke (ssh://git@stash.devlan.net:7999/derstarke/derstarke.git)
- Make sure to do a recursive clone or submodule update to get all submodules
- Create 'yosemite' branches in derstarke, extern/bokor, and extern/darkmatter
- bokor and darkmatter will be the only two submodules we need to modify on new OSOperating System release
- (let User #73580 handle the triton stuff ;b)
- bokor and darkmatter will be the only two submodules we need to modify on new OSOperating System release
Changes to DerStarke (top level builder)
Top level builder needs to pass build arguments to DerStarke submodules
- in file preconfig.plist (and the two sample debug.plist and release.plist)
- Add a new plist entry for Yosemite under Persistence options
- config['Persistence Config']['Yosemite Support']
- Set this option to true, but might want to set Mountain Support to false since Xcode usually only ships with latest 2 SDK's
- You can add MLion SDKSoftware Development Kit from previous Xcode if wanted to support more than two OSXs
- Add a new plist entry for Yosemite under Persistence options
- in file darkmatter.py
- in function modify_inf
- All darkmatter components (drivers and apps) use INF files for build options; modify_inf modifies the actual INF text files under extern/darkmatter
- Add 'if statement' for existence of config['Persistence Config']['Yosemite Support']
- note the added build option of '-DYOSEMITE_IMPLANT ' only needs to be given to loader_inf since no other component of darkmatter cares about OS
- note the space at the end of the build string is important
- in function modify_inf
- build1p4.py
- in function build_kernal_payload
- Add 'if clause' to TWO places for yosemite checks at beginning of function
- (One while iterating through plist config, and one while building bokor build string)
- Add 'if clause' to TWO places for yosemite checks at beginning of function
- Would also not be a bad idea to mod the help intro
- in function build_kernal_payload
Changes to Bokor (extern/bokor)
We need to add schemes and targets for Yosemite SDKSoftware Development Kit for the kernel_loader. Each target gives the resultant bokor different options given from the high level builder.
- Open in Xcode (or use open bash command) src/kernel_loader/bokor.xcodeproj
- (not to be confused with src/bokor.xcodeproj)
- There should be an expand arrow to see all the targets in the current bokor project (currently 35)
- We will need to add Yosemite targets. Easiest way I found is to use the 'Duplicate' functionality:
- To create a yosemite_bokor target, right-click on mavericks_bokor and select 'Duplicate' (CMD+D)
- This will create 'mavericks_bokor copy' target
- Double click to change name to 'yosemite_bokor'
- Change the following under Build Settings
- Architectures -> Base SDKSoftware Development Kit -> OSOperating System X 10.10
- Deployment -> OSOperating System X 10.10
- Packaging -> Info.plist File -> bokor/bokor-Info.plist
- Product Name -> yosemite_bokor
- Apple LLVM 6.0 - Preprocessing -> Preprocessor Macos:
- For both Debug and Release, substitute MAVERICKS for YOSEMITE
- Repeat for the rest of the mavericks target... note Product Name -> should match the target name
- For each 8 copies you made, it auto makes a plist file under Products... just delete them
- To create a yosemite_bokor target, right-click on mavericks_bokor and select 'Duplicate' (CMD+D)
- Now we need to edit the autogen scheme with the matching target name
- Top Menu -> Product -> Scheme -> Manage Scheme...
- Click 'Shared' Checkbox, and make the copied scheme match the new yosemite name
- note, double-clicking will bring you scheme options... simply press enter to modify the name
- File to add to git
- kernel_loader/bokor.xcodeproj/project.pbxproj
- kernel_loader/bokor.xcodeproj/xcshareddata/*
- (do not add anything from xcuserdata)
- in bokor.c
- Approx on line 744, we define which sysctl to hook. For legacy OSXApple operating system Leopard, we used a vm_shared handle. For all other OSXApple operating system (and current), we use sysctl_hw_memsize_handler(). I will assume Yosemite will also be able to use this, but if the hook goes away, we would need to add another hookpoint.
- Added #if (.... ) || defined YOSEMITE to hw_memsize hook
- Approx on line 744, we define which sysctl to hook. For legacy OSXApple operating system Leopard, we used a vm_shared handle. For all other OSXApple operating system (and current), we use sysctl_hw_memsize_handler(). I will assume Yosemite will also be able to use this, but if the hook goes away, we would need to add another hookpoint.
- in config.c
- payload_target_names[] defines which processes to attempt to inject in. We stop using syslogd because after Lion, OSXApple operating system does not allow syslog to write to syslog (hard to debug). We only inject into diskabritationd, and will assume for now Yosemite will be okay with diskarbitrationd... might have to change if it's sandbox or something.
- Add #if (....) || defined YOSEMITE to diskarbitrationd clause
- payload_target_names[] defines which processes to attempt to inject in. We stop using syslogd because after Lion, OSXApple operating system does not allow syslog to write to syslog (hard to debug). We only inject into diskabritationd, and will assume for now Yosemite will be okay with diskarbitrationd... might have to change if it's sandbox or something.
Changes to Darkmatter (extern/darkmatter)