idb 2.5.4 → 2.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/idb/version.rb +1 -1
- data/lib/lib/ios8_last_launch_services_map_wrapper.rb +5 -1
- data/lib/lib/weak_class_dump_wrapper.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50b47716e5d364e14c47710394bcae9df0072df7
|
|
4
|
+
data.tar.gz: ad17c46e61756bcce53ed593769d15ed69aadc53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c77c64e4e211265086fe1df1fe7aa24277aa69d9d691d63e2de71679ec68b37b42e1db24995732ea7832a68f853928b866c809a867c69063f98092c96ecdcf79
|
|
7
|
+
data.tar.gz: bc07b64196b76f10914a6d5274ae63629079427198818f2021564ce981cc096ec30c80123ba8a802d9ef4ee532883096d0e624270a80da06e23085d658eb52cd
|
data/Gemfile.lock
CHANGED
data/lib/idb/version.rb
CHANGED
|
@@ -15,6 +15,10 @@ class IOS8LastLaunchServicesMapWrapper
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
def keychain_access_groups_by_bundle_id bundle_id
|
|
18
|
-
|
|
18
|
+
begin
|
|
19
|
+
@plist_data.to_hash["User"][bundle_id]["Entitlements"]["keychain-access-groups"]
|
|
20
|
+
rescue
|
|
21
|
+
""
|
|
22
|
+
end
|
|
19
23
|
end
|
|
20
24
|
end
|
|
@@ -22,7 +22,7 @@ module Idb
|
|
|
22
22
|
wc_file = "/var/root/weak_classdump.cy"
|
|
23
23
|
unless $device.ops.file_exists? wc_file
|
|
24
24
|
$log.info "weak_classdump not found, Installing onto device."
|
|
25
|
-
$device.ops.upload("utils/weak_class_dump/weak_classdump.cy", wc_file)
|
|
25
|
+
$device.ops.upload("#{File.dirname(File.expand_path(__FILE__))}/../utils/weak_class_dump/weak_classdump.cy", wc_file)
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
local_instructions_file = "#{$tmp_path}/weak_classdump_instructions.cy"
|