tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

utility.xml (826B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      3 <!--
      4     Entitlements to apply to non-browser executables such as updater,
      5     pingsender, crashhelper and crashreporter during codesigning of developer
      6     builds.
      7 -->
      8 <plist version="1.0">
      9  <dict>
     10    <!-- Allow dyld environment variables for debugging -->
     11    <key>com.apple.security.cs.allow-dyld-environment-variables</key><true/>
     12 
     13    <!-- Allow debuggers to attach to running executables -->
     14    <key>com.apple.security.get-task-allow</key><true/>
     15 
     16    <!-- For dev builds only, allow loading third party libraries as a
     17         workaround enabling self-signed builds to launch. -->
     18    <key>com.apple.security.cs.disable-library-validation</key><true/>
     19  </dict>
     20 </plist>