sh 用于在iOS 9中禁用App Transport Security的Bash脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 用于在iOS 9中禁用App Transport Security的Bash脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash

if [[ $1 = "" ]]; then
	echo Usage: disableAppTransportSecurity.sh PLIST_PATH
	exit 1
fi

#PlistBuddy的位置
PLISTBUDDY="/usr/libexec/PlistBuddy"

$PLISTBUDDY -c "Add :NSAppTransportSecurity:NSAllowsArbitraryLoads bool true" $1

以上是关于sh 用于在iOS 9中禁用App Transport Security的Bash脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iOS 上禁用日期元格式检测?

如何在 iOS 7 App 中禁用 iCloud

iPad 上的 iOS 禁用 Web 音频 API

在流星科尔多瓦应用程序中的 iOS 9 上全局禁用放大镜

禁用复制,在 UITextfield 中粘贴在 iOS 9.x 中不起作用

ios开发防止App被抓包(可正常请求)