iOS_security_setup

iOS security test set up

tools

jailbreak

https://checkra.in/

plugins

some library must install for cydia

add https://cydia.akemi.ai/ to cydia source

Mac install software

basic usage

  1. using the frida-iOS-dump pull a decrypted IPA from a jailbroken device
  2. unzip the ipa
  3. class-dump -H /Users/mac/Desktop/Payload/example.app -o /Users/mac/Desktop/Payload
  4. generate the xm file
    1
    logify.pl example.h > tewak.xm
bypass jailbreak detect

Yes, as a bug hunter script boy, I know myself quite well. Know what I can do, what I never can’t do

Xcon is old, no need to use it.

1
2
3
4
5
6
"Super-Advanced-Jailbreak-Detection-Bypass.xm"

%hook ANSMetadata
-(bool)computeIsJailbroken { return false; }
-(bool)isJailbroken { return false; }
%end
issue

Xcode11 A valid provisioning profile for this executable was not found
open file->Project Settings->change New Build System to Legacy Build System

reference