All Projects → ahoog42 → Ios Triage

ahoog42 / Ios Triage

Licence: mit
incident response tool for iOS devices

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ios Triage

Pos
A command-line utility for tagging part of speech for words in text.
Stars: ✭ 39 (-7.14%)
Mutual labels:  cli
Fire.jl
Fire.jl is a library for automatically generating command line interfaces (CLIs) for julia functions.
Stars: ✭ 40 (-4.76%)
Mutual labels:  cli
Hokaido
HND✈CTS
Stars: ✭ 41 (-2.38%)
Mutual labels:  cli
Iotz
compile things easy 🚀
Stars: ✭ 39 (-7.14%)
Mutual labels:  cli
Sdk
Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
Stars: ✭ 996 (+2271.43%)
Mutual labels:  cli
Clii
Python 3.7+ function annotations -> CLI
Stars: ✭ 41 (-2.38%)
Mutual labels:  cli
Make Me Lol
😄 A command-line tool to make you laugh
Stars: ✭ 38 (-9.52%)
Mutual labels:  cli
Influx Prompt
An interactive command-line InfluxDB cli with auto completion.
Stars: ✭ 42 (+0%)
Mutual labels:  cli
Curriculum
Overview of the different modules and learning goals of the program.
Stars: ✭ 40 (-4.76%)
Mutual labels:  cli
Fliplog
fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, tracking, presets, & more...
Stars: ✭ 41 (-2.38%)
Mutual labels:  cli
Nofan
CLI for Fanfou
Stars: ✭ 39 (-7.14%)
Mutual labels:  cli
Dw Cli
A command line utility for Salesforce Commerce Cloud (Demandware) SIG and PIG development.
Stars: ✭ 39 (-7.14%)
Mutual labels:  cli
Terraform Nextjs Plugin
A plugin to generate terraform configuration for Nextjs 8 and 9
Stars: ✭ 41 (-2.38%)
Mutual labels:  cli
Android File Transfer Linux
Android File Transfer for Linux
Stars: ✭ 994 (+2266.67%)
Mutual labels:  cli
Analyst Casefile
Maltego CaseFile entities for information security investigations, malware analysis and incident response
Stars: ✭ 41 (-2.38%)
Mutual labels:  incident-response
Cli Badges
Quirky little node-js library for generating badges for your cli apps.
Stars: ✭ 39 (-7.14%)
Mutual labels:  cli
Rocket
NetDisk in command line.
Stars: ✭ 40 (-4.76%)
Mutual labels:  cli
Termtools
Customize your terminal using JavaScript. With themes, extra alias and functions, we combine the power from both JavaScript and Bash.
Stars: ✭ 42 (+0%)
Mutual labels:  cli
Notarize
CLI to easily notarize a Mac app
Stars: ✭ 42 (+0%)
Mutual labels:  cli
Calz
📆 A natural language alternative to Unix 'cal'
Stars: ✭ 41 (-2.38%)
Mutual labels:  cli

ios-triage Build Status Dependencies

Node.js cli for iOS incident response. Program will extract, process and report (including diffs) on iOS device and app telemetry.

Installation

Currently working on OSX and Linux. This program depends on the excellent libimobiledevice project.

OS specific steps

OSX

Make sure brew is installed. Then, install libimobiledevice from --HEAD otherwise I had problems connecting to lockdownd (as of Dec 2016):

brew install --HEAD libimobiledevice
brew install --HEAD ideviceinstaller

Linux (Ubuntu)

These instructions are based on a fresh Ubuntu 16.04 LTS install.

sudo apt-get install ideviceinstaller libimobiledevice-utils build-essential libssl-dev git

Install node (nvm)

Remaining steps are for both OSX and Linux.

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash

nvm install node
nvm use node

Clone ios-triage, install and link

git clone https://github.com/ahoog42/ios-triage.git

cd ios-triage
npm install
npm link

Usage

When you run ios-triage, there are three primary steps:

  1. extract
  2. process
  3. report

Each command has various options. You can run ios-triage <cmd> --help for additional instructions. Below are examples of the most common options and workflow.

extract

ios-triage will automatically create a directory with the device UDID and then a timestamp (epoch in ms) for each extraction. This allows you to collect telemetry over time and perform diffs. A good example would be if an individual is travelling overseas and might be a targeted. You could image the device prior to the trip and after to then compare the available device telemetry.

Note: you must connect the iDevice to your host and trust it from the device. Then, run the following:

ios-triage extract .

process

To process the device extraction, you have to point ios-triage at the top-level extraction directory structure is /. An example would be:

$ ios-triage process dc9363415e5fbf18ea8277986f3b693cf01827aa/1486829681725/

report

To produce an analyst report, you simple direct ios-triage at the top-level extraction directory:

$ ios-triage report dc9363415e5fbf18ea8277986f3b693cf01827aa/1486829681725/

diffs

If you have two extractions that you've already processed, you can include a second directory to the report command which will then populate the Diff page with a comparision of what has changed between the two extractions:

cd dc9363415e5fbf18ea8277986f3b693cf01827aa
ios-triage report 1485283295826/ 1486829681725/ 

Future work

There's quite a bit to do in the future. Also note that I used this project to teach myself nodejs so there's quite a bit of cruft in the code.

  • Move to a database backend
  • Create docker container to remove dependencies and perhaps run on Windows
  • Download iOS apps via iTunes and perform additional static analysis
  • Integrate third-party data sources
  • Allow upload and then comparision of non-PII data to crowsource our efforts

Contribute

If you'd like to contribute to ios-triage, there are many ways to help:

  • Run the tool, file big reports, suggestions, etc.
  • Share non-PII data for comparitive analysis
  • UX help!!
  • Development of new features
  • Documentation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].