This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
These are additions or notable revisions in the iOS Security Guide | |
Document Revision History Summary Updated for iOS 10 | |
• System Security | |
• Data protection classes | |
• Security Certifications and programs | |
• HomeKit, ReplayKit, SiriKit | |
• Apple Watch | |
• Wi-Fi,VPN | |
• Single Sign-on | |
• Apple Pay, Paying with Apple Pay on the web |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prerequisites: | |
You have a piece of old software you need to run but it requires .net 2.0 to install. | |
Steps to install .net framework 2.0: | |
1. Download .net framework from microsoft.com. | |
2. Realize it is x64 and not x86 as needed. | |
3. Download .net framework 2.0 sp2 from microsoft.com | |
4. Realize it is only the service pack and does not include the installer. | |
5. Find a USB cd rom drive. | |
6. Copy the exe off of the cd. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
sys.exit(0) | |
try: | |
import binaryninja | |
except ImportError: | |
sys.path.append("/Applications/Binary Ninja.app/Contents/Resources/python/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Writing your own disassembler? Ain't nobody got time for that! | |
# or just in case you don't have capstone | |
# by Jay Little | |
# Same license as lldb | |
import argparse | |
import re | |
import subprocess | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ping 8.8.8.8 | |
PING 8.8.8.8 (8.8.8.8): 56 data bytes | |
Request timeout for icmp_seq 0 | |
64 bytes from 8.8.8.8: icmp_seq=0 ttl=40 time=1958.722 ms | |
Request timeout for icmp_seq 2 | |
64 bytes from 8.8.8.8: icmp_seq=1 ttl=40 time=2005.179 ms | |
64 bytes from 8.8.8.8: icmp_seq=2 ttl=40 time=1876.166 ms | |
64 bytes from 8.8.8.8: icmp_seq=3 ttl=40 time=1805.881 ms | |
64 bytes from 8.8.8.8: icmp_seq=4 ttl=40 time=2478.180 ms | |
64 bytes from 8.8.8.8: icmp_seq=5 ttl=40 time=1878.585 ms |