Roman's blog

Blog with my articles about different aspects of secure coding techniques for iOS/Android/React

View on GitHub

iOS Keychain grabbing

The easiest way to read data from iOS Keychain is using keychaineditor tool. In this tutorial I show how to install and use it.

Prerequisites:

Install

  1. Connect via SSH to iOS device:
    ssh root@192.168.X.X
    
  2. Install keychaineditor:
    wget https://github.com/NitinJami/keychaineditor/raw/master/keychaineditor.deb
    dpkg -i keychaineditor.deb
    
  3. Check installation:
    keychaineditor –v
    

How to Use

Try to find something in keychain with command

keychaineditor -f <app name>

More commands (for example, editing of keychain items) at repo for the tool