Last active
January 18, 2018 08:31
-
-
Save mjhassan/761f47b4842213c6ec1b2509c18d2f5c to your computer and use it in GitHub Desktop.
iOS http security bypass
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
| <key>NSExceptionDomains</key> | |
| <dict> | |
| <key>localhost</key> | |
| <dict> | |
| <key>NSExceptionAllowsInsecureHTTPLoads</key> | |
| <true/> | |
| </dict> | |
| <key>NSAllowsArbitraryLoads</key> | |
| <true/> | |
| <key>NSAllowsArbitraryLoadsInWebContent</key> | |
| <true/> | |
| <key>NSAllowsLocalNetworking</key> | |
| <true/> | |
| </dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment