From c1687cd3b352717267c8c714faf6683bb9bff714 Mon Sep 17 00:00:00 2001 From: iddoeldor Date: Wed, 23 Jan 2019 12:56:19 +0200 Subject: [PATCH] Create extact_ipa.sh --- scripts/extact_ipa.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/extact_ipa.sh diff --git a/scripts/extact_ipa.sh b/scripts/extact_ipa.sh new file mode 100644 index 0000000..3a62ca4 --- /dev/null +++ b/scripts/extact_ipa.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# Extracting IPA from Jailbroken +Frida device +# The IPA will be @ /tmp/ios_ssh/iphonessh/python-client/frida-ios-dump/AppName.ipa +mkdir /tmp/ios_ssh +cd "$_" +sudo apt-get install libgcrypt20-doc gnutls-doc gnutls-bin usbmuxd libimobiledevice* +git clone https://github.com/rcg4u/iphonessh +cd iphonessh/python-client/ +chmod +x * +python2.7 tcprelay.py -t 22:2222 & +TCP_RELAY_PID=$! +git clone https://github.com/AloneMonkey/frida-ios-dump.git +cd frida-ios-dump +git checkout origin/3.x +sudo -H pip3 install -r requirements.txt --upgrade +sudo python3.6 dump.py $1 # com.app.bundle.id +kill $TCP_RELAY_PID