Info.plist
General
/private/var/containers/Bundle/Application/<app-ID>/<app-name>.app/Info.plistscp <user>@<device-ip-address>:/private/var/containers/Bundle/Application/<app-ID>/<app-name>.app/Info.plist <destination-directory># plistutil (Linux)
plistutil -i Info.plist -o info.xml
# plutil (MacOS / iOS)
plutil -convert xml1 Info.plist && cat Info.plist > info.xmlApp Transport Security (ATS)
NSAppTransportSecurity : Dictionary {
NSAllowsArbitraryLoads : Boolean
NSAllowsArbitraryLoadsForMedia : Boolean
NSAllowsArbitraryLoadsInWebContent : Boolean
NSAllowsLocalNetworking : Boolean
NSExceptionDomains : Dictionary {
<domain-name-string> : Dictionary {
NSIncludesSubdomains : Boolean
NSExceptionAllowsInsecureHTTPLoads : Boolean
NSExceptionMinimumTLSVersion : String
NSExceptionRequiresForwardSecrecy : Boolean
NSRequiresCertificateTransparency : Boolean
}
}
}NSAllowsArbitraryLoads
NSExceptionDomains
NSExceptionAllowsInsecureHTTPLoads
Última actualización