Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save interference-security/68faea1f4a445a7814cc2518a7d1c416 to your computer and use it in GitHub Desktop.
Save interference-security/68faea1f4a445a7814cc2518a7d1c416 to your computer and use it in GitHub Desktop.

Revisions

  1. interference-security revised this gist May 22, 2020. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions frida-server-ios-all-interfaces.sh
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,5 @@
    # Install curl using Cydia before using the next command
    # /bin/bash -c "$(curl -fsSL https://gist.github.com/interference-security/68faea1f4a445a7814cc2518a7d1c416/raw/c715dbc30397762239b3bf2d76c60859a5c83625/frida-server-ios-all-interfaces.sh)"
    launchctl unload -w /Library/LaunchDaemons/re.frida.server.plist
    cat >/Library/LaunchDaemons/re.frida.server.plist <<EOL
    <?xml version="1.0" encoding="UTF-8"?>
  2. interference-security created this gist May 22, 2020.
    35 changes: 35 additions & 0 deletions frida-server-ios-all-interfaces.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,35 @@
    launchctl unload -w /Library/LaunchDaemons/re.frida.server.plist
    cat >/Library/LaunchDaemons/re.frida.server.plist <<EOL
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>re.frida.server</string>
    <key>Program</key>
    <string>/usr/sbin/frida-server</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/sbin/frida-server</string>
    <string>-l</string>
    <string>0.0.0.0</string>
    </array>
    <key>EnvironmentVariables</key>
    <dict>
    <key>_MSSafeMode</key>
    <string>1</string>
    </dict>
    <key>UserName</key>
    <string>root</string>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <true/>
    <key>ThrottleInterval</key>
    <integer>5</integer>
    <key>ExecuteAllowed</key>
    <true/>
    </dict>
    </plist>
    EOL
    launchctl load -w /Library/LaunchDaemons/re.frida.server.plist