├── GoAgentX.app └── Contents │ ├── Frameworks │ ├── GoAgentXService.framework │ │ ├── GoAgentXService │ │ ├── Headers │ │ │ ├── GACommandRunner.h │ │ │ ├── GAService.h │ │ │ ├── GAServiceProfile.h │ │ │ └── GoAgentXService.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── Versions │ │ │ ├── A │ │ │ ├── GoAgentXService │ │ │ ├── Headers │ │ │ │ ├── GACommandRunner.h │ │ │ │ ├── GAService.h │ │ │ │ ├── GAServiceProfile.h │ │ │ │ └── GoAgentXService.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── GoAgentXService │ │ │ ├── Headers │ │ │ ├── GACommandRunner.h │ │ │ ├── GAService.h │ │ │ ├── GAServiceProfile.h │ │ │ └── GoAgentXService.h │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ShortcutRecorder.framework │ │ ├── Headers │ │ │ ├── SRCommon.h │ │ │ ├── SRKeyCodeTransformer.h │ │ │ ├── SRRecorderCell.h │ │ │ ├── SRRecorderControl.h │ │ │ ├── SRValidator.h │ │ │ └── ShortcutRecorder.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── SRRemoveShortcut.tif │ │ │ ├── SRRemoveShortcutPressed.tif │ │ │ ├── SRRemoveShortcutRollover.tif │ │ │ ├── SRSnapback.tiff │ │ │ ├── ca.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── cs.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── da.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── de.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── el.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── en.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── es-MX.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── es.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── fr.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── it.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ja.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ko.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── nb.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── nl.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pl.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ro.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ru.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── sk.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── sv.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── th.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ ├── ShortcutRecorder │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SRCommon.h │ │ │ │ ├── SRKeyCodeTransformer.h │ │ │ │ ├── SRRecorderCell.h │ │ │ │ ├── SRRecorderControl.h │ │ │ │ ├── SRValidator.h │ │ │ │ └── ShortcutRecorder.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ ├── SRRemoveShortcut.tif │ │ │ │ ├── SRRemoveShortcutPressed.tif │ │ │ │ ├── SRRemoveShortcutRollover.tif │ │ │ │ ├── SRSnapback.tiff │ │ │ │ ├── ca.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── cs.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── da.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── de.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── el.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── en.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── es-MX.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── it.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── nb.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── pt-BR.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── pt-PT.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── pt.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── ro.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── sk.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── th.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ShortcutRecorder │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── SRCommon.h │ │ │ ├── SRKeyCodeTransformer.h │ │ │ ├── SRRecorderCell.h │ │ │ ├── SRRecorderControl.h │ │ │ ├── SRValidator.h │ │ │ └── ShortcutRecorder.h │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── SRRemoveShortcut.tif │ │ │ ├── SRRemoveShortcutPressed.tif │ │ │ ├── SRRemoveShortcutRollover.tif │ │ │ ├── SRSnapback.tiff │ │ │ ├── ca.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── cs.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── da.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── de.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── el.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── en.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── es-MX.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── es.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── fr.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── it.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ja.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ko.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── nb.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── nl.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pl.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── pt.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ro.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ru.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── sk.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── sv.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── th.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── ShortcutRecorder.strings │ │ │ ├── ShortcutRecorder │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── Sparkle.framework │ │ ├── Headers │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUUpdater.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ │ ├── Resources │ │ ├── Info.plist │ │ ├── License.txt │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUPasswordPrompt.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── finish_installation.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── finish_installation │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── Sparkle.icns │ │ │ │ ├── en.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── License.txt │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUPasswordPrompt.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── finish_installation.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── finish_installation │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── Resources │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── Sparkle.icns │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current │ │ ├── Headers │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUUpdater.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ │ ├── Resources │ │ ├── Info.plist │ │ ├── License.txt │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUPasswordPrompt.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── finish_installation.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── finish_installation │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── Sparkle.icns │ │ │ │ ├── en.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── _CodeSignature │ │ └── CodeResources │ ├── Info.plist │ ├── Library │ └── LaunchServices │ │ └── com.goagentx.GoAgentX.Helper │ ├── MacOS │ └── GoAgentX │ ├── PkgInfo │ ├── PlugIns │ ├── COWService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── COWService │ │ │ ├── Resources │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ ├── .cow │ │ │ │ │ ├── china_ip_list │ │ │ │ │ ├── direct │ │ │ │ │ ├── proxy │ │ │ │ │ └── reject │ │ │ │ └── cow │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── HTTPSProxyService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── HTTPSProxyService │ │ │ ├── Resources │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ └── sslproxy2socks │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SPDYService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SPDYService │ │ │ ├── Resources │ │ │ ├── AdvancedConfigView.nib │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ ├── 3proxy │ │ │ │ ├── combinerunner │ │ │ │ ├── lib │ │ │ │ │ ├── libcrypto.1.0.0.dylib │ │ │ │ │ ├── libevent-2.0.5.dylib │ │ │ │ │ ├── libevent_openssl-2.0.5.dylib │ │ │ │ │ ├── libiconv.2.dylib │ │ │ │ │ ├── liblzma.5.dylib │ │ │ │ │ ├── libspdylay.6.dylib │ │ │ │ │ ├── libspdylay.dylib │ │ │ │ │ ├── libssl.1.0.0.dylib │ │ │ │ │ ├── libxml2.2.dylib │ │ │ │ │ └── libz.1.dylib │ │ │ │ └── shrpx │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SSHService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SSHService │ │ │ ├── Resources │ │ │ ├── AdvancedConfigView.nib │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ ├── autossh │ │ │ │ ├── echo.sh │ │ │ │ └── obfuscated-ssh │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ShellScriptService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── ShellScriptService │ │ │ ├── Resources │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigView.nib │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── StunnelService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── StunnelService │ │ │ ├── Resources │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ ├── lib │ │ │ │ │ ├── libcrypto.1.0.0.dylib │ │ │ │ │ └── libssl.1.0.0.dylib │ │ │ │ └── stunnel │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ThreePorxyService.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── ThreePorxyService │ │ │ ├── Resources │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── bin │ │ │ │ └── 3proxy │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── goagent.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── goagent │ │ │ ├── Resources │ │ │ ├── AdvancedConfigView.nib │ │ │ ├── ConfigValueTransformers.json │ │ │ ├── Defaults.json │ │ │ ├── DeployServerView.nib │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ ├── UpdateGoAgentView.nib │ │ │ ├── bin │ │ │ │ ├── README.md │ │ │ │ ├── local │ │ │ │ │ ├── GeoIP.dat │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── dnslib-0.8.3.egg │ │ │ │ │ ├── dnsproxy.py │ │ │ │ │ ├── ntlmaps.bat │ │ │ │ │ ├── proxy.ini │ │ │ │ │ ├── proxy.pac │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── proxy.sh │ │ │ │ │ └── pygeoip-0.3.1.egg │ │ │ │ ├── server │ │ │ │ │ ├── gae │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ ├── gae.py │ │ │ │ │ │ └── robots.txt │ │ │ │ │ └── uploader.zip │ │ │ │ └── update_goagent.sh │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── shadowsocks.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── shadowsocks │ │ │ ├── Resources │ │ │ ├── AdvancedConfigView.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── Defaults.json │ │ │ ├── Icon.icns │ │ │ ├── Icon.png │ │ │ ├── ServiceConfigTemplate │ │ │ ├── ServiceConfigView.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── bin │ │ │ │ ├── libev │ │ │ │ │ ├── libcrypto.1.0.0.dylib │ │ │ │ │ └── ss-local │ │ │ │ ├── nodejs │ │ │ │ │ ├── lib │ │ │ │ │ │ └── shadowsocks │ │ │ │ │ │ │ ├── encrypt.js │ │ │ │ │ │ │ ├── inet.js │ │ │ │ │ │ │ ├── local.js │ │ │ │ │ │ │ ├── merge_sort.js │ │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ ├── udprelay.js │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── sslocal │ │ │ │ └── python │ │ │ │ │ ├── M2Crypto │ │ │ │ │ ├── ASN1.py │ │ │ │ │ ├── AuthCookie.py │ │ │ │ │ ├── BIO.py │ │ │ │ │ ├── BN.py │ │ │ │ │ ├── DH.py │ │ │ │ │ ├── DSA.py │ │ │ │ │ ├── EC.py │ │ │ │ │ ├── EVP.py │ │ │ │ │ ├── Engine.py │ │ │ │ │ ├── Err.py │ │ │ │ │ ├── RC4.py │ │ │ │ │ ├── RSA.py │ │ │ │ │ ├── Rand.py │ │ │ │ │ ├── SMIME.py │ │ │ │ │ ├── SSL │ │ │ │ │ │ ├── Checker.py │ │ │ │ │ │ ├── Cipher.py │ │ │ │ │ │ ├── Connection.py │ │ │ │ │ │ ├── Context.py │ │ │ │ │ │ ├── SSLServer.py │ │ │ │ │ │ ├── Session.py │ │ │ │ │ │ ├── TwistedProtocolWrapper.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cb.py │ │ │ │ │ │ ├── ssl_dispatcher.py │ │ │ │ │ │ └── timeout.py │ │ │ │ │ ├── X509.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __m2crypto.so │ │ │ │ │ ├── callback.py │ │ │ │ │ ├── ftpslib.py │ │ │ │ │ ├── httpslib.py │ │ │ │ │ ├── m2.py │ │ │ │ │ ├── m2urllib.py │ │ │ │ │ ├── m2urllib2.py │ │ │ │ │ ├── m2xmlrpclib.py │ │ │ │ │ ├── threading.py │ │ │ │ │ └── util.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── asyncdns.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── crypto │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ctypes_openssl.py │ │ │ │ │ ├── m2.py │ │ │ │ │ ├── rc4_md5.py │ │ │ │ │ └── salsa20_ctr.py │ │ │ │ │ ├── encrypt.py │ │ │ │ │ ├── eventloop.py │ │ │ │ │ ├── local.py │ │ │ │ │ ├── lru_cache.py │ │ │ │ │ ├── server.py │ │ │ │ │ ├── tcprelay.py │ │ │ │ │ ├── udprelay.py │ │ │ │ │ └── utils.py │ │ │ ├── dsa_pub.pem │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── shadowsocksr.gxbundle │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── shadowsocksr │ │ └── Resources │ │ ├── AdvancedConfigView.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ ├── Defaults.json │ │ ├── Icon.icns │ │ ├── Icon.png │ │ ├── ServiceConfigTemplate │ │ ├── ServiceConfigView.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ ├── bin │ │ └── libev │ │ │ ├── libcrypto.1.0.0.dylib │ │ │ └── ss-local │ │ ├── dsa_pub.pem │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── Resources │ ├── APIServerDocuments │ │ ├── popup.html │ │ ├── popup.js │ │ ├── pure-min.css │ │ ├── sandbox.html │ │ └── zepto.min.js │ ├── Chrome.icns │ ├── Extensions │ │ └── goagentx.crx │ ├── GAAddProfileWindowController.nib │ ├── GAAppInfoViewController.nib │ ├── GABundlesManageViewController.nib │ ├── GADuplicateProfileWindowController.nib │ ├── GAImportPACDomainsWindowController.nib │ ├── GAOtherConfigViewController.nib │ ├── GAProxyConfigViewController.nib │ ├── GARenameProfileWindowController.nib │ ├── GAServiceAdvancedConfigWindowController.nib │ ├── GAServiceLogWindowController.nib │ ├── GAServicesViewController.nib │ ├── GASetProfilesOrderWindowController.nib │ ├── GXBundleIcon.icns │ ├── GXFirstRunWindowController.nib │ ├── GXRuleManagePopupWindowController.nib │ ├── GoAgentX.sdef │ ├── GoAgentXProfiles.gxbundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ ├── Icon.icns │ ├── MASPreferencesWindow.nib │ ├── MainMenu.nib │ ├── OtherSettingToolbarImage.png │ ├── PACRules.momd │ │ ├── PACRules 2.mom │ │ ├── PACRules 2.omo │ │ ├── PACRules.mom │ │ └── VersionInfo.plist │ ├── PACTemplate.js │ ├── ProxySettingsToolbarImage.png │ ├── README.md │ ├── README.txt │ ├── ServicesToolbarImage.png │ ├── autoproxy2pac │ ├── banner2lines.tiff │ ├── dsa_pub.pem │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── Localizable.strings │ │ └── ServicesMenu.strings │ ├── ga.js │ ├── main.html │ ├── relaunch │ ├── service_status_not_configured.png │ ├── service_status_not_configured_small.tiff │ ├── service_status_running.png │ ├── service_status_running_small.tiff │ ├── service_status_stopped.png │ ├── service_status_stopped_small.tiff │ ├── status_item_icon.tiff │ ├── status_item_icon_alt.tiff │ ├── status_item_icon_global.tiff │ ├── status_item_icon_global_alt.tiff │ ├── status_item_icon_stopped.tiff │ └── zh-Hans.lproj │ │ ├── Credits.rtf │ │ ├── Localizable.strings │ │ └── ServicesMenu.strings │ └── _CodeSignature │ └── CodeResources ├── README.md └── screenshot.png /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/GoAgentXService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/GoAgentXService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Headers/GACommandRunner.h: -------------------------------------------------------------------------------- 1 | // 2 | // GACommandRunner.h 3 | // GoAgentX 4 | // 5 | // Created by Xu Jiwei on 12-2-13. 6 | // Copyright (c) 2012年 xujiwei.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef void (^GACommandRunnerTerminationHandler)(NSTask *task); 12 | 13 | @interface GACommandRunner : NSObject { 14 | } 15 | 16 | + (NSString *)runCommandSync:(NSString *)path 17 | currentDirectory:(NSString *)curDir 18 | arguments:(NSArray *)arguments 19 | inputText:(NSString *)inputText; 20 | 21 | - (BOOL)isTaskRunning; 22 | - (void)terminateTask; 23 | - (int)processId; 24 | 25 | - (void)run; 26 | 27 | - (void)waitTaskUntilDone:(id)sender; 28 | 29 | - (void)runCommand:(NSString *)path 30 | currentDirectory:(NSString *)curDir 31 | arguments:(NSArray *)arguments 32 | inputText:(NSString *)text 33 | outputTextView:(NSTextView *)textView 34 | terminationHandler:(GACommandRunnerTerminationHandler)terminationHandler; 35 | 36 | - (void)appendDataOfString:(NSData *)data; 37 | 38 | 39 | @property (nonatomic, readonly) NSMutableAttributedString *outputStorage; 40 | @property (nonatomic, strong) NSString *commandPath; 41 | @property (nonatomic, strong) NSString *workDirectory; 42 | @property (nonatomic, strong) NSArray *arguments; 43 | @property (nonatomic, strong) NSDictionary *environment; 44 | @property (nonatomic, strong) NSString *inputText; 45 | @property (nonatomic, strong) NSTextView *outputTextView; 46 | @property (nonatomic, copy) GACommandRunnerTerminationHandler terminationHandler; 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Headers/GoAgentXService.h: -------------------------------------------------------------------------------- 1 | // 2 | // GoAgentXService.h 3 | // GoAgentXService 4 | // 5 | // Created by Xu Jiwei on 13-5-14. 6 | // Copyright (c) 2013年 GoAgentX.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "GAService.h" 12 | #import "GAServiceProfile.h" 13 | 14 | @interface GoAgentXService : NSObject 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 13E28 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GoAgentXService 11 | CFBundleIdentifier 12 | com.goagentx.GoAgentXService 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GoAgentXService 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6A317 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 13F26 33 | DTSDKName 34 | macosx10.9 35 | DTXcode 36 | 0600 37 | DTXcodeBuild 38 | 6A317 39 | NSHumanReadableCopyright 40 | Copyright © 2013年 GoAgentX.com. All rights reserved. 41 | 42 | 43 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/GoAgentXService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/GoAgentXService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/Headers/GACommandRunner.h: -------------------------------------------------------------------------------- 1 | // 2 | // GACommandRunner.h 3 | // GoAgentX 4 | // 5 | // Created by Xu Jiwei on 12-2-13. 6 | // Copyright (c) 2012年 xujiwei.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef void (^GACommandRunnerTerminationHandler)(NSTask *task); 12 | 13 | @interface GACommandRunner : NSObject { 14 | } 15 | 16 | + (NSString *)runCommandSync:(NSString *)path 17 | currentDirectory:(NSString *)curDir 18 | arguments:(NSArray *)arguments 19 | inputText:(NSString *)inputText; 20 | 21 | - (BOOL)isTaskRunning; 22 | - (void)terminateTask; 23 | - (int)processId; 24 | 25 | - (void)run; 26 | 27 | - (void)waitTaskUntilDone:(id)sender; 28 | 29 | - (void)runCommand:(NSString *)path 30 | currentDirectory:(NSString *)curDir 31 | arguments:(NSArray *)arguments 32 | inputText:(NSString *)text 33 | outputTextView:(NSTextView *)textView 34 | terminationHandler:(GACommandRunnerTerminationHandler)terminationHandler; 35 | 36 | - (void)appendDataOfString:(NSData *)data; 37 | 38 | 39 | @property (nonatomic, readonly) NSMutableAttributedString *outputStorage; 40 | @property (nonatomic, strong) NSString *commandPath; 41 | @property (nonatomic, strong) NSString *workDirectory; 42 | @property (nonatomic, strong) NSArray *arguments; 43 | @property (nonatomic, strong) NSDictionary *environment; 44 | @property (nonatomic, strong) NSString *inputText; 45 | @property (nonatomic, strong) NSTextView *outputTextView; 46 | @property (nonatomic, copy) GACommandRunnerTerminationHandler terminationHandler; 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/Headers/GoAgentXService.h: -------------------------------------------------------------------------------- 1 | // 2 | // GoAgentXService.h 3 | // GoAgentXService 4 | // 5 | // Created by Xu Jiwei on 13-5-14. 6 | // Copyright (c) 2013年 GoAgentX.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "GAService.h" 12 | #import "GAServiceProfile.h" 13 | 14 | @interface GoAgentXService : NSObject 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 13E28 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GoAgentXService 11 | CFBundleIdentifier 12 | com.goagentx.GoAgentXService 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GoAgentXService 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6A317 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 13F26 33 | DTSDKName 34 | macosx10.9 35 | DTXcode 36 | 0600 37 | DTXcodeBuild 38 | 6A317 39 | NSHumanReadableCopyright 40 | Copyright © 2013年 GoAgentX.com. All rights reserved. 41 | 42 | 43 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/GoAgentXService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/GoAgentXService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/Headers/GoAgentXService.h: -------------------------------------------------------------------------------- 1 | // 2 | // GoAgentXService.h 3 | // GoAgentXService 4 | // 5 | // Created by Xu Jiwei on 13-5-14. 6 | // Copyright (c) 2013年 GoAgentX.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "GAService.h" 12 | #import "GAServiceProfile.h" 13 | 14 | @interface GoAgentXService : NSObject 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 13E28 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GoAgentXService 11 | CFBundleIdentifier 12 | com.goagentx.GoAgentXService 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GoAgentXService 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6A317 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 13F26 33 | DTSDKName 34 | macosx10.9 35 | DTXcode 36 | 0600 37 | DTXcodeBuild 38 | 6A317 39 | NSHumanReadableCopyright 40 | Copyright © 2013年 GoAgentX.com. All rights reserved. 41 | 42 | 43 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/GoAgentXService.framework/Versions/Current/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Headers/SRKeyCodeTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRKeyCodeTransformer.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRKeyCodeTransformer : NSValueTransformer {} @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Headers/SRValidator.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRValidator.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRValidator : NSObject { 17 | id delegate; 18 | } 19 | 20 | - (id) initWithDelegate:(id)theDelegate; 21 | 22 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags error:(NSError **)error; 23 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlags:(NSUInteger)flags takenInMenu:(NSMenu *)menu error:(NSError **)error; 24 | 25 | - (id) delegate; 26 | - (void) setDelegate: (id) theDelegate; 27 | 28 | @end 29 | 30 | #pragma mark - 31 | 32 | @interface NSObject( SRValidation ) 33 | - (BOOL) shortcutValidator:(SRValidator *)validator isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags reason:(NSString **)aReason; 34 | @end 35 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Headers/ShortcutRecorder.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShortcutRecorder.h 3 | // ShortcutRecorder 4 | // - 10.5 version only; master framework header 5 | // 6 | // Copyright 2007 Contributors. All rights reserved. 7 | // 8 | // License: BSD 9 | // 10 | // Contributors to this file: 11 | // Jesper 12 | 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F37 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ShortcutRecorder 11 | CFBundleIdentifier 12 | net.wafflesoftware.ShortcutRecorder.framework.Leopard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTCompiler 22 | com.apple.compilers.llvm.clang.1_0 23 | DTPlatformBuild 24 | 5A1413 25 | DTPlatformVersion 26 | GM 27 | DTSDKBuild 28 | 12D75 29 | DTSDKName 30 | macosx10.8 31 | DTXcode 32 | 0500 33 | DTXcodeBuild 34 | 5A1413 35 | 36 | 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcut.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcut.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcutPressed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcutPressed.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcutRollover.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRRemoveShortcutRollover.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRSnapback.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/SRSnapback.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ca.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ca.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/cs.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/cs.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/da.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/da.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/de.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/de.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/el.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/el.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/en.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/en.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/es-MX.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/es-MX.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/es.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/es.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/fr.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/fr.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/it.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/it.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ja.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ja.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ko.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ko.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/nb.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/nb.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/nl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/nl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt-BR.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt-BR.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt-PT.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt-PT.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/pt.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ro.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ro.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ru.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/ru.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/sk.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/sk.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/sv.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/sv.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/th.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/th.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/zh-Hans.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/zh-Hans.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/zh-Hant.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Resources/zh-Hant.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/ShortcutRecorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/ShortcutRecorder -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Headers/SRKeyCodeTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRKeyCodeTransformer.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRKeyCodeTransformer : NSValueTransformer {} @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Headers/SRValidator.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRValidator.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRValidator : NSObject { 17 | id delegate; 18 | } 19 | 20 | - (id) initWithDelegate:(id)theDelegate; 21 | 22 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags error:(NSError **)error; 23 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlags:(NSUInteger)flags takenInMenu:(NSMenu *)menu error:(NSError **)error; 24 | 25 | - (id) delegate; 26 | - (void) setDelegate: (id) theDelegate; 27 | 28 | @end 29 | 30 | #pragma mark - 31 | 32 | @interface NSObject( SRValidation ) 33 | - (BOOL) shortcutValidator:(SRValidator *)validator isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags reason:(NSString **)aReason; 34 | @end 35 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Headers/ShortcutRecorder.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShortcutRecorder.h 3 | // ShortcutRecorder 4 | // - 10.5 version only; master framework header 5 | // 6 | // Copyright 2007 Contributors. All rights reserved. 7 | // 8 | // License: BSD 9 | // 10 | // Contributors to this file: 11 | // Jesper 12 | 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F37 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ShortcutRecorder 11 | CFBundleIdentifier 12 | net.wafflesoftware.ShortcutRecorder.framework.Leopard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTCompiler 22 | com.apple.compilers.llvm.clang.1_0 23 | DTPlatformBuild 24 | 5A1413 25 | DTPlatformVersion 26 | GM 27 | DTSDKBuild 28 | 12D75 29 | DTSDKName 30 | macosx10.8 31 | DTXcode 32 | 0500 33 | DTXcodeBuild 34 | 5A1413 35 | 36 | 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcut.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcut.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcutPressed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcutPressed.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcutRollover.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRRemoveShortcutRollover.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRSnapback.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/SRSnapback.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ca.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ca.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/cs.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/cs.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/da.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/da.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/de.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/de.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/el.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/el.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/en.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/en.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/es-MX.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/es-MX.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/es.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/es.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/fr.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/fr.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/it.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/it.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ja.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ja.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ko.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ko.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/nb.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/nb.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/nl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/nl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt-BR.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt-BR.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt-PT.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt-PT.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/pt.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ro.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ro.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ru.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/ru.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/sk.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/sk.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/sv.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/sv.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/th.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/th.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/zh-Hans.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/zh-Hans.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/zh-Hant.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/Resources/zh-Hant.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/ShortcutRecorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/ShortcutRecorder -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Headers/SRKeyCodeTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRKeyCodeTransformer.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRKeyCodeTransformer : NSValueTransformer {} @end 17 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Headers/SRValidator.h: -------------------------------------------------------------------------------- 1 | // 2 | // SRValidator.h 3 | // ShortcutRecorder 4 | // 5 | // Copyright 2006-2007 Contributors. All rights reserved. 6 | // 7 | // License: BSD 8 | // 9 | // Contributors: 10 | // David Dauer 11 | // Jesper 12 | // Jamie Kirkpatrick 13 | 14 | #import 15 | 16 | @interface SRValidator : NSObject { 17 | id delegate; 18 | } 19 | 20 | - (id) initWithDelegate:(id)theDelegate; 21 | 22 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags error:(NSError **)error; 23 | - (BOOL) isKeyCode:(NSInteger)keyCode andFlags:(NSUInteger)flags takenInMenu:(NSMenu *)menu error:(NSError **)error; 24 | 25 | - (id) delegate; 26 | - (void) setDelegate: (id) theDelegate; 27 | 28 | @end 29 | 30 | #pragma mark - 31 | 32 | @interface NSObject( SRValidation ) 33 | - (BOOL) shortcutValidator:(SRValidator *)validator isKeyCode:(NSInteger)keyCode andFlagsTaken:(NSUInteger)flags reason:(NSString **)aReason; 34 | @end 35 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Headers/ShortcutRecorder.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShortcutRecorder.h 3 | // ShortcutRecorder 4 | // - 10.5 version only; master framework header 5 | // 6 | // Copyright 2007 Contributors. All rights reserved. 7 | // 8 | // License: BSD 9 | // 10 | // Contributors to this file: 11 | // Jesper 12 | 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F37 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ShortcutRecorder 11 | CFBundleIdentifier 12 | net.wafflesoftware.ShortcutRecorder.framework.Leopard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTCompiler 22 | com.apple.compilers.llvm.clang.1_0 23 | DTPlatformBuild 24 | 5A1413 25 | DTPlatformVersion 26 | GM 27 | DTSDKBuild 28 | 12D75 29 | DTSDKName 30 | macosx10.8 31 | DTXcode 32 | 0500 33 | DTXcodeBuild 34 | 5A1413 35 | 36 | 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcut.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcut.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcutPressed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcutPressed.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcutRollover.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRRemoveShortcutRollover.tif -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRSnapback.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/SRSnapback.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ca.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ca.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/cs.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/cs.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/da.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/da.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/de.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/de.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/el.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/el.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/en.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/en.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/es-MX.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/es-MX.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/es.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/es.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/fr.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/fr.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/it.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/it.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ja.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ja.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ko.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ko.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/nb.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/nb.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/nl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/nl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pl.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pl.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt-BR.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt-BR.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt-PT.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt-PT.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/pt.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ro.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ro.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ru.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/ru.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/sk.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/sk.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/sv.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/sv.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/th.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/th.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/zh-Hans.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/zh-Hans.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/zh-Hant.lproj/ShortcutRecorder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/Resources/zh-Hant.lproj/ShortcutRecorder.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/ShortcutRecorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/Current/ShortcutRecorder -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Headers/SUAppcast.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcast.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCAST_H 10 | #define SUAPPCAST_H 11 | 12 | @class SUAppcastItem; 13 | @interface SUAppcast : NSObject 14 | { 15 | @private 16 | NSArray *items; 17 | NSString *userAgentString; 18 | id delegate; 19 | NSString *downloadFilename; 20 | NSURLDownload *download; 21 | } 22 | 23 | - (void)fetchAppcastFromURL:(NSURL *)url; 24 | - (void)setDelegate:delegate; 25 | - (void)setUserAgentString:(NSString *)userAgentString; 26 | 27 | - (NSArray *)items; 28 | 29 | @end 30 | 31 | @interface NSObject (SUAppcastDelegate) 32 | - (void)appcastDidFinishLoading:(SUAppcast *)appcast; 33 | - (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; 34 | @end 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcastItem.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCASTITEM_H 10 | #define SUAPPCASTITEM_H 11 | 12 | @interface SUAppcastItem : NSObject 13 | { 14 | @private 15 | NSString *title; 16 | NSDate *date; 17 | NSString *itemDescription; 18 | 19 | NSURL *releaseNotesURL; 20 | 21 | NSString *DSASignature; 22 | NSString *minimumSystemVersion; 23 | NSString *maximumSystemVersion; 24 | 25 | NSURL *fileURL; 26 | NSString *versionString; 27 | NSString *displayVersionString; 28 | 29 | NSDictionary *deltaUpdates; 30 | 31 | NSDictionary *propertiesDictionary; 32 | 33 | NSURL *infoURL; // UK 2007-08-31 34 | } 35 | 36 | // Initializes with data from a dictionary provided by the RSS class. 37 | - initWithDictionary:(NSDictionary *)dict; 38 | - initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error; 39 | 40 | - (NSString *)title; 41 | - (NSString *)versionString; 42 | - (NSString *)displayVersionString; 43 | - (NSDate *)date; 44 | - (NSString *)itemDescription; 45 | - (NSURL *)releaseNotesURL; 46 | - (NSURL *)fileURL; 47 | - (NSString *)DSASignature; 48 | - (NSString *)minimumSystemVersion; 49 | - (NSString *)maximumSystemVersion; 50 | - (NSDictionary *)deltaUpdates; 51 | - (BOOL)isDeltaUpdate; 52 | 53 | // Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. 54 | - (NSDictionary *)propertiesDictionary; 55 | 56 | - (NSURL *)infoURL; // UK 2007-08-31 57 | 58 | @end 59 | 60 | #endif 61 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionComparisonProtocol.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUVERSIONCOMPARISONPROTOCOL_H 10 | #define SUVERSIONCOMPARISONPROTOCOL_H 11 | 12 | #import 13 | 14 | /*! 15 | @protocol 16 | @abstract Implement this protocol to provide version comparison facilities for Sparkle. 17 | */ 18 | @protocol SUVersionComparison 19 | 20 | /*! 21 | @method 22 | @abstract An abstract method to compare two version strings. 23 | @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. 24 | */ 25 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! 26 | 27 | @end 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionDisplayProtocol.h 3 | // EyeTV 4 | // 5 | // Created by Uli Kusterer on 08.12.09. 6 | // Copyright 2009 Elgato Systems GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | /*! 13 | @protocol 14 | @abstract Implement this protocol to apply special formatting to the two 15 | version numbers. 16 | */ 17 | @protocol SUVersionDisplay 18 | 19 | /*! 20 | @method 21 | @abstract An abstract method to format two version strings. 22 | @discussion You get both so you can display important distinguishing 23 | information, but leave out unnecessary/confusing parts. 24 | */ 25 | -(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Headers/Sparkle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Sparkle.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SPARKLE_H 10 | #define SPARKLE_H 11 | 12 | // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless 13 | // there are name-space collisions) so we can list all of them to start with: 14 | 15 | #import 16 | 17 | #import 18 | #import 19 | #import 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F45 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sparkle 11 | CFBundleIdentifier 12 | org.andymatuschak.Sparkle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sparkle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.5 Beta (git) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | d2b7fd6 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 5A1413 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12D75 33 | DTSDKName 34 | macosx10.8 35 | DTXcode 36 | 0500 37 | DTXcodeBuild 38 | 5A1413 39 | 40 | 41 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUPasswordPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUPasswordPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/MacOS/finish_installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/MacOS/finish_installation -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/Sparkle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/Sparkle.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Sparkle -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcast.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCAST_H 10 | #define SUAPPCAST_H 11 | 12 | @class SUAppcastItem; 13 | @interface SUAppcast : NSObject 14 | { 15 | @private 16 | NSArray *items; 17 | NSString *userAgentString; 18 | id delegate; 19 | NSString *downloadFilename; 20 | NSURLDownload *download; 21 | } 22 | 23 | - (void)fetchAppcastFromURL:(NSURL *)url; 24 | - (void)setDelegate:delegate; 25 | - (void)setUserAgentString:(NSString *)userAgentString; 26 | 27 | - (NSArray *)items; 28 | 29 | @end 30 | 31 | @interface NSObject (SUAppcastDelegate) 32 | - (void)appcastDidFinishLoading:(SUAppcast *)appcast; 33 | - (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; 34 | @end 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcastItem.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCASTITEM_H 10 | #define SUAPPCASTITEM_H 11 | 12 | @interface SUAppcastItem : NSObject 13 | { 14 | @private 15 | NSString *title; 16 | NSDate *date; 17 | NSString *itemDescription; 18 | 19 | NSURL *releaseNotesURL; 20 | 21 | NSString *DSASignature; 22 | NSString *minimumSystemVersion; 23 | NSString *maximumSystemVersion; 24 | 25 | NSURL *fileURL; 26 | NSString *versionString; 27 | NSString *displayVersionString; 28 | 29 | NSDictionary *deltaUpdates; 30 | 31 | NSDictionary *propertiesDictionary; 32 | 33 | NSURL *infoURL; // UK 2007-08-31 34 | } 35 | 36 | // Initializes with data from a dictionary provided by the RSS class. 37 | - initWithDictionary:(NSDictionary *)dict; 38 | - initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error; 39 | 40 | - (NSString *)title; 41 | - (NSString *)versionString; 42 | - (NSString *)displayVersionString; 43 | - (NSDate *)date; 44 | - (NSString *)itemDescription; 45 | - (NSURL *)releaseNotesURL; 46 | - (NSURL *)fileURL; 47 | - (NSString *)DSASignature; 48 | - (NSString *)minimumSystemVersion; 49 | - (NSString *)maximumSystemVersion; 50 | - (NSDictionary *)deltaUpdates; 51 | - (BOOL)isDeltaUpdate; 52 | 53 | // Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. 54 | - (NSDictionary *)propertiesDictionary; 55 | 56 | - (NSURL *)infoURL; // UK 2007-08-31 57 | 58 | @end 59 | 60 | #endif 61 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionComparisonProtocol.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUVERSIONCOMPARISONPROTOCOL_H 10 | #define SUVERSIONCOMPARISONPROTOCOL_H 11 | 12 | #import 13 | 14 | /*! 15 | @protocol 16 | @abstract Implement this protocol to provide version comparison facilities for Sparkle. 17 | */ 18 | @protocol SUVersionComparison 19 | 20 | /*! 21 | @method 22 | @abstract An abstract method to compare two version strings. 23 | @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. 24 | */ 25 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! 26 | 27 | @end 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionDisplayProtocol.h 3 | // EyeTV 4 | // 5 | // Created by Uli Kusterer on 08.12.09. 6 | // Copyright 2009 Elgato Systems GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | /*! 13 | @protocol 14 | @abstract Implement this protocol to apply special formatting to the two 15 | version numbers. 16 | */ 17 | @protocol SUVersionDisplay 18 | 19 | /*! 20 | @method 21 | @abstract An abstract method to format two version strings. 22 | @discussion You get both so you can display important distinguishing 23 | information, but leave out unnecessary/confusing parts. 24 | */ 25 | -(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Sparkle.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SPARKLE_H 10 | #define SPARKLE_H 11 | 12 | // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless 13 | // there are name-space collisions) so we can list all of them to start with: 14 | 15 | #import 16 | 17 | #import 18 | #import 19 | #import 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F45 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sparkle 11 | CFBundleIdentifier 12 | org.andymatuschak.Sparkle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sparkle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.5 Beta (git) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | d2b7fd6 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 5A1413 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12D75 33 | DTSDKName 34 | macosx10.8 35 | DTXcode 36 | 0500 37 | DTXcodeBuild 38 | 5A1413 39 | 40 | 41 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUPasswordPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUPasswordPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/MacOS/finish_installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/MacOS/finish_installation -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/Sparkle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/Sparkle.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Headers/SUAppcast.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcast.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCAST_H 10 | #define SUAPPCAST_H 11 | 12 | @class SUAppcastItem; 13 | @interface SUAppcast : NSObject 14 | { 15 | @private 16 | NSArray *items; 17 | NSString *userAgentString; 18 | id delegate; 19 | NSString *downloadFilename; 20 | NSURLDownload *download; 21 | } 22 | 23 | - (void)fetchAppcastFromURL:(NSURL *)url; 24 | - (void)setDelegate:delegate; 25 | - (void)setUserAgentString:(NSString *)userAgentString; 26 | 27 | - (NSArray *)items; 28 | 29 | @end 30 | 31 | @interface NSObject (SUAppcastDelegate) 32 | - (void)appcastDidFinishLoading:(SUAppcast *)appcast; 33 | - (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; 34 | @end 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcastItem.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCASTITEM_H 10 | #define SUAPPCASTITEM_H 11 | 12 | @interface SUAppcastItem : NSObject 13 | { 14 | @private 15 | NSString *title; 16 | NSDate *date; 17 | NSString *itemDescription; 18 | 19 | NSURL *releaseNotesURL; 20 | 21 | NSString *DSASignature; 22 | NSString *minimumSystemVersion; 23 | NSString *maximumSystemVersion; 24 | 25 | NSURL *fileURL; 26 | NSString *versionString; 27 | NSString *displayVersionString; 28 | 29 | NSDictionary *deltaUpdates; 30 | 31 | NSDictionary *propertiesDictionary; 32 | 33 | NSURL *infoURL; // UK 2007-08-31 34 | } 35 | 36 | // Initializes with data from a dictionary provided by the RSS class. 37 | - initWithDictionary:(NSDictionary *)dict; 38 | - initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error; 39 | 40 | - (NSString *)title; 41 | - (NSString *)versionString; 42 | - (NSString *)displayVersionString; 43 | - (NSDate *)date; 44 | - (NSString *)itemDescription; 45 | - (NSURL *)releaseNotesURL; 46 | - (NSURL *)fileURL; 47 | - (NSString *)DSASignature; 48 | - (NSString *)minimumSystemVersion; 49 | - (NSString *)maximumSystemVersion; 50 | - (NSDictionary *)deltaUpdates; 51 | - (BOOL)isDeltaUpdate; 52 | 53 | // Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. 54 | - (NSDictionary *)propertiesDictionary; 55 | 56 | - (NSURL *)infoURL; // UK 2007-08-31 57 | 58 | @end 59 | 60 | #endif 61 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionComparisonProtocol.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUVERSIONCOMPARISONPROTOCOL_H 10 | #define SUVERSIONCOMPARISONPROTOCOL_H 11 | 12 | #import 13 | 14 | /*! 15 | @protocol 16 | @abstract Implement this protocol to provide version comparison facilities for Sparkle. 17 | */ 18 | @protocol SUVersionComparison 19 | 20 | /*! 21 | @method 22 | @abstract An abstract method to compare two version strings. 23 | @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent. 24 | */ 25 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! 26 | 27 | @end 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionDisplayProtocol.h 3 | // EyeTV 4 | // 5 | // Created by Uli Kusterer on 08.12.09. 6 | // Copyright 2009 Elgato Systems GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | /*! 13 | @protocol 14 | @abstract Implement this protocol to apply special formatting to the two 15 | version numbers. 16 | */ 17 | @protocol SUVersionDisplay 18 | 19 | /*! 20 | @method 21 | @abstract An abstract method to format two version strings. 22 | @discussion You get both so you can display important distinguishing 23 | information, but leave out unnecessary/confusing parts. 24 | */ 25 | -(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Headers/Sparkle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Sparkle.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SPARKLE_H 10 | #define SPARKLE_H 11 | 12 | // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless 13 | // there are name-space collisions) so we can list all of them to start with: 14 | 15 | #import 16 | 17 | #import 18 | #import 19 | #import 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12F45 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sparkle 11 | CFBundleIdentifier 12 | org.andymatuschak.Sparkle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sparkle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.5 Beta (git) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | d2b7fd6 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 5A1413 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12D75 33 | DTSDKName 34 | macosx10.8 35 | DTXcode 36 | 0500 37 | DTXcodeBuild 38 | 5A1413 39 | 40 | 41 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUPasswordPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUPasswordPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/MacOS/finish_installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/MacOS/finish_installation -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/Sparkle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/Sparkle.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/finish_installation.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Sparkle -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Info.plist -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Library/LaunchServices/com.goagentx.GoAgentX.Helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Library/LaunchServices/com.goagentx.GoAgentX.Helper -------------------------------------------------------------------------------- /GoAgentX.app/Contents/MacOS/GoAgentX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/MacOS/GoAgentX -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/MacOS/COWService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/MacOS/COWService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "LoadBalance": "backup", 3 | "SSHServerPort": "22", 4 | "SSMethod": "rc4" 5 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/bin/.cow/proxy: -------------------------------------------------------------------------------- 1 | google.com 2 | www.google.com.hk 3 | www.google.co.jp 4 | youtube.com 5 | twitter.com 6 | twimg.com 7 | t.co 8 | facebook.com 9 | fbcdn.net 10 | fb.me 11 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/bin/.cow/reject: -------------------------------------------------------------------------------- 1 | acs86.com 2 | adcome.cn 3 | adinfuse.com 4 | admaster.com.cn 5 | admob.com 6 | adsage.cn 7 | adsage.com 8 | adsmogo.org 9 | ads.mobclix.com 10 | adview.cn 11 | adwhirl.com 12 | adwo.com 13 | appads.com 14 | domob.cn 15 | domob.org 16 | doubleclick.net 17 | duomeng.cn 18 | duomeng.net 19 | duomeng.org 20 | googeadsserving.cn 21 | guomob.com 22 | immob.cn 23 | inmobi.com 24 | mobads.baidu.com 25 | mobads-logs.baidu.com 26 | smartadserver.com 27 | tapjoyads.com 28 | umeng.co 29 | umeng.com 30 | umtrack.com 31 | uyunad.com 32 | youmi.net 33 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/bin/cow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/bin/cow -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/COWService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/MacOS/HTTPSProxyService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/MacOS/HTTPSProxyService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "RemotePort": "443" 3 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | { 2 | "server": "{RemoteServer}:{RemotePort}", 3 | "listen_ip": "127.0.0.1", 4 | "listen_port": {LocalPort}, 5 | "username": "{Username}", 6 | "password": "{Password}" 7 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/bin/sslproxy2socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/bin/sslproxy2socks -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/HTTPSProxyService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/MacOS/SPDYService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/MacOS/SPDYService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/AdvancedConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/AdvancedConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | [shrpx] 2 | frontend=127.0.0.1,{LocalPort2} 3 | backend={RemoteServer},{RemotePort} 4 | {ProxyEnabled}backend-http-proxy-uri=http://{ProxyAuth}{ProxyAddress}:{ProxyPort} 5 | # private-key-file=/path/to/server.key 6 | # certificate-file=/path/to/server.crt 7 | # spdy-proxy=no 8 | workers=1 9 | client=yes 10 | #log-level=INFO 11 | {DontValidateServerCert}insecure=yes 12 | 13 | 14 | [3proxy] 15 | nscache 65536 16 | timeouts 1 5 30 60 180 1800 15 60 17 | log 18 | logformat "- +_L%t.%. %N.%p %E %U %C:%c %R:%r %O %I %h %T" 19 | rotate 7 20 | 21 | auth iponly 22 | allow * 23 | 24 | parent 1000 http localhost {LocalPort2} {Username} {Password} 25 | 26 | proxy -a -p{LocalPort} 27 | 28 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/3proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/3proxy -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/combinerunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/combinerunner -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libevent-2.0.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libevent-2.0.5.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libevent_openssl-2.0.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libevent_openssl-2.0.5.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libiconv.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libiconv.2.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/liblzma.5.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libspdylay.6.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libspdylay.6.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libspdylay.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libspdylay.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libssl.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libssl.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libxml2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libxml2.2.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libz.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/lib/libz.1.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/shrpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/bin/shrpx -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SPDYService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/MacOS/SSHService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/MacOS/SSHService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/AdvancedConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/AdvancedConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "UseCustomIdentityFile": false, 3 | "UsePublicKeyAuth": false, 4 | "RemotePort": "22", 5 | "LocalPort": "7575", 6 | "ListenOnRemote": false 7 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/bin/autossh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/bin/autossh -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/bin/echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | prompt=$1 3 | check_yesno=${prompt/yes\/no/} 4 | (( len = ${#prompt} - ${#check_yesno} )) 5 | if [ $len == 6 ]; then 6 | echo yes 7 | else 8 | echo $ECHO_CONTENT 9 | fi 10 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/bin/obfuscated-ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/bin/obfuscated-ssh -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/SSHService.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/MacOS/ShellScriptService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/MacOS/ShellScriptService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "CommandLine": "/bin/bash", 3 | "ProxyType": 1 4 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ShellScriptService.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/MacOS/StunnelService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/MacOS/StunnelService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "ServerProxyType": "SOCKS" 3 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | client = yes 2 | pid={WorkDirectory}/stunnel.pid 3 | debug=5 4 | foreground=yes 5 | sslVersion=all 6 | verify=0 7 | syslog=no 8 | fips=no 9 | 10 | [proxy] 11 | accept = 127.0.0.1:{LocalPort} 12 | {ServerList} 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/lib/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/lib/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/lib/libssl.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/lib/libssl.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/stunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/bin/stunnel -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/zh.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/zh.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/StunnelService.gxbundle/Contents/Resources/zh.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/MacOS/ThreePorxyService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/MacOS/ThreePorxyService -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "LocalProxyType": 0 3 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | nscache 65536 2 | timeouts 1 5 30 60 180 1800 15 60 3 | log 4 | logformat "- +_L%t.%. %N.%p %E %U %C:%c %R:%r %O %I %h %T" 5 | rotate 7 6 | 7 | auth iponly 8 | allow * 9 | 10 | {ParentProxies} 11 | 12 | {LocalProxyType} -a -p{LocalPort} 13 | 14 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/bin/3proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/bin/3proxy -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/zh.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/zh.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/ThreePorxyService.gxbundle/Contents/Resources/zh.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/MacOS/goagent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/MacOS/goagent -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/AdvancedConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/AdvancedConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/ConfigValueTransformers.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectMode": { 3 | "0": "http", 4 | "1": "https" 5 | }, 6 | "GAEProfile": { 7 | "0": "ipv4", 8 | "1": "ipv6" 9 | }, 10 | "EnableRC4Encrypt": { 11 | "0": "", 12 | "1": "rc4" 13 | } 14 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "LocalPort": "8087", 3 | "LocalIP": "127.0.0.1", 4 | "EnableObfuscate": false, 5 | "ConnectionMode": "HTTPS", 6 | "ConnectionProfile": "HK", 7 | "UseGAEFetch": true, 8 | "UsePHPFetch": false, 9 | "ServicePassword": "", 10 | "GAEProfile": 0, 11 | "ConnectMode": 1, 12 | "ProxyEnabled": false, 13 | "ProxyPort": "8080", 14 | "EnableKeepAlive": 1 15 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/DeployServerView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/DeployServerView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | [listen] 2 | ip = {LocalIP} 3 | port = {LocalPort} 4 | 5 | [gae] 6 | enable = {UseGAEFetch} 7 | appid = {AppIds} 8 | password = {ServicePassword} 9 | mode = {ConnectMode} 10 | profile = {GAEProfile} 11 | obfuscate = {EnableObfuscate} 12 | options = {EnableRC4Encrypt} 13 | keepalive = {EnableKeepAlive} 14 | 15 | [pac] 16 | enable = 0 17 | 18 | [php] 19 | enable = {UsePHPFetch} 20 | password = {ServicePassword} 21 | listen = {LocalIP}:{LocalPaaSPort} 22 | fetchserver = {AppIds} 23 | 24 | [proxy] 25 | enable = {ProxyEnabled} 26 | autodetect = 1 27 | host = {ProxyHost} 28 | port = {ProxyPort} 29 | username = {ProxyUsername} 30 | password = {ProxyPassword} 31 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/ServiceConfigView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/ServiceConfigView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/UpdateGoAgentView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/UpdateGoAgentView.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/README.md: -------------------------------------------------------------------------------- 1 | DON'T PANIC 2 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/GeoIP.dat -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/dnslib-0.8.3.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/dnslib-0.8.3.egg -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/pygeoip-0.3.1.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/local/pygeoip-0.3.1.egg -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/server/gae/app.yaml: -------------------------------------------------------------------------------- 1 | application: goagent 2 | version: 1 3 | runtime: python27 4 | api_version: 1 5 | threadsafe: true 6 | 7 | handlers: 8 | - url: /_gh/.+ 9 | script: gae.application 10 | secure: optional 11 | 12 | - url: /2.* 13 | script: gae.application 14 | secure: optional 15 | 16 | - url: /fetch\.py 17 | script: gae.LegacyHandler.application 18 | secure: optional 19 | 20 | - url: /robots.txt 21 | static_files: robots.txt 22 | upload: robots.txt 23 | 24 | libraries: 25 | - name: pycrypto 26 | version: "latest" 27 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/server/gae/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/server/uploader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/bin/server/uploader.zip -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/goagent.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/MacOS/shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/MacOS/shadowsocks -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/AdvancedConfigView.nib/classes.nib: -------------------------------------------------------------------------------- 1 | { 2 | IBClasses = ( 3 | {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, 4 | { 5 | ACTIONS = {connectURL = id; reload = id; stopLoading = id; }; 6 | CLASS = MyDocument; 7 | LANGUAGE = ObjC; 8 | OUTLETS = { 9 | backButton = id; 10 | forwardButton = id; 11 | textField = id; 12 | webView = id; 13 | window = id; 14 | }; 15 | SUPERCLASS = NSDocument; 16 | }, 17 | { 18 | ACTIONS = { 19 | goBack = id; 20 | goForward = id; 21 | makeTextLarger = id; 22 | makeTextSmaller = id; 23 | reload = id; 24 | stopLoading = id; 25 | takeStringURLFrom = id; 26 | }; 27 | CLASS = WebView; 28 | LANGUAGE = ObjC; 29 | SUPERCLASS = NSView; 30 | } 31 | ); 32 | IBVersion = 1; 33 | } 34 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/AdvancedConfigView.nib/info.nib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IBDocumentLocation 6 | 297 54 356 240 0 0 1920 1178 7 | IBFramework Version 8 | 291.0 9 | IBOpenObjects 10 | 11 | 5 12 | 13 | IBSystem Version 14 | 6L60 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/AdvancedConfigView.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/AdvancedConfigView.nib/keyedobjects.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "Timeout": 60, 3 | "EncryptMethod": "table" 4 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | { 2 | "server":"{ServerAddress}", 3 | "server_port":{ServerPort}, 4 | "local_port":{LocalPort}, 5 | "password":"{ServicePassword}", 6 | "timeout":{Timeout}, 7 | "method": "{EncryptMethod}" 8 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/ServiceConfigView.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/ServiceConfigView.nib/keyedobjects.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/libev/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/libev/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/libev/ss-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/libev/ss-local -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/nodejs/package.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "name": "shadowsocks", 4 | "description": "a tunnel proxy that help you get through firewalls", 5 | "keywords": ["shadowsocks", "proxy", "socks5"], 6 | "author": "clowwindy", 7 | "version": "1.5.0", 8 | "licenses": [{ 9 | "type": "MIT", 10 | "url": "https://raw.github.com/clowwindy/shadowsocks-nodejs/master/LICENSE" 11 | }], 12 | "engines": { 13 | "node": ">=0.10.0" 14 | }, 15 | "directories": { 16 | "lib": "./lib/shadowsocks" 17 | }, 18 | "main": "./lib/shadowsocks/local", 19 | "bin": { 20 | "sslocal": "./bin/sslocal", 21 | "ssserver": "./bin/ssserver" 22 | }, 23 | "scripts": { 24 | "test": "cake test" 25 | }, 26 | "homepage": "https://github.com/clowwindy/shadowsocks-nodejs", 27 | "bugs": "https://github.com/clowwindy/shadowsocks-nodejs/issues", 28 | "repository": { 29 | "type": "git", 30 | "url": "https://github.com/clowwindy/shadowsocks-nodejs.git" 31 | }, 32 | "devDependencies": { 33 | "coffee-script": ">=1.6.2" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/nodejs/sslocal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | var lib = path.join(path.dirname(fs.realpathSync(__filename)), '/lib'); 6 | 7 | require(lib + '/shadowsocks/local').main() 8 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/BN.py: -------------------------------------------------------------------------------- 1 | """ 2 | M2Crypto wrapper for OpenSSL BN (BIGNUM) API. 3 | 4 | Copyright (c) 2005 Open Source Applications Foundation. All rights reserved. 5 | """ 6 | 7 | import m2 8 | 9 | def rand(bits, top=-1, bottom=0): 10 | """ 11 | Generate cryptographically strong random number. 12 | 13 | @param bits: Length of random number in bits. 14 | @param top: If -1, the most significant bit can be 0. If 0, the most 15 | significant bit is 1, and if 1, the two most significant 16 | bits will be 1. 17 | @param bottom: If bottom is true, the number will be odd. 18 | """ 19 | return m2.bn_rand(bits, top, bottom) 20 | 21 | 22 | def rand_range(range): 23 | """ 24 | Generate a random number in a range. 25 | 26 | @param range: Upper limit for range. 27 | @return: A random number in the range [0, range) 28 | """ 29 | return m2.bn_rand_range(range) 30 | 31 | 32 | def randfname(length): 33 | """ 34 | Return a random filename, which is simply a string where all 35 | the characters are from the set [a-zA-Z0-9]. 36 | 37 | @param length: Length of filename to return. 38 | @type length: int 39 | @return: random filename string 40 | """ 41 | letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890' 42 | lettersLen = len(letters) 43 | fname = [] 44 | for x in range(length): 45 | fname += [letters[m2.bn_rand_range(lettersLen)]] 46 | 47 | return ''.join(fname) 48 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/Err.py: -------------------------------------------------------------------------------- 1 | """M2Crypto wrapper for OpenSSL Error API. 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 4 | 5 | import BIO 6 | import m2 7 | 8 | def get_error(): 9 | err=BIO.MemoryBuffer() 10 | m2.err_print_errors(err.bio_ptr()) 11 | return err.getvalue() 12 | 13 | def get_error_code(): 14 | return m2.err_get_error() 15 | 16 | def peek_error_code(): 17 | return m2.err_peek_error() 18 | 19 | def get_error_lib(err): 20 | return m2.err_lib_error_string(err) 21 | 22 | def get_error_func(err): 23 | return m2.err_func_error_string(err) 24 | 25 | def get_error_reason(err): 26 | return m2.err_reason_error_string(err) 27 | 28 | def get_x509_verify_error(err): 29 | return m2.x509_get_verify_error(err) 30 | 31 | class SSLError(Exception): 32 | def __init__(self, err, client_addr): 33 | self.err = err 34 | self.client_addr = client_addr 35 | 36 | def __str__(self): 37 | if (isinstance(self.client_addr, unicode)): 38 | s = self.client_addr.encode('utf8') 39 | else: 40 | s = self.client_addr 41 | return "%s: %s: %s" % \ 42 | (m2.err_func_error_string(self.err), \ 43 | s, \ 44 | m2.err_reason_error_string(self.err)) 45 | 46 | class M2CryptoError(Exception): 47 | pass 48 | 49 | 50 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/RC4.py: -------------------------------------------------------------------------------- 1 | """M2Crypto wrapper for OpenSSL RC4 API. 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 4 | 5 | from m2 import rc4_new, rc4_free, rc4_set_key, rc4_update 6 | 7 | class RC4: 8 | 9 | """Object interface to the stream cipher RC4.""" 10 | 11 | rc4_free = rc4_free 12 | 13 | def __init__(self, key=None): 14 | self.cipher = rc4_new() 15 | if key: 16 | rc4_set_key(self.cipher, key) 17 | 18 | def __del__(self): 19 | if getattr(self, 'cipher', None): 20 | self.rc4_free(self.cipher) 21 | 22 | def set_key(self, key): 23 | rc4_set_key(self.cipher, key) 24 | 25 | def update(self, data): 26 | return rc4_update(self.cipher, data) 27 | 28 | def final(self): 29 | return '' 30 | 31 | 32 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/Rand.py: -------------------------------------------------------------------------------- 1 | """M2Crypto wrapper for OpenSSL PRNG. Requires OpenSSL 0.9.5 and above. 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 4 | 5 | __all__ = ['rand_seed', 'rand_add', 'load_file', 'save_file', 'rand_bytes', 6 | 'rand_pseudo_bytes'] 7 | 8 | import m2 9 | 10 | rand_seed = m2.rand_seed 11 | rand_add = m2.rand_add 12 | load_file = m2.rand_load_file 13 | save_file = m2.rand_save_file 14 | rand_bytes = m2.rand_bytes 15 | rand_pseudo_bytes = m2.rand_pseudo_bytes 16 | 17 | 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/SSL/Cipher.py: -------------------------------------------------------------------------------- 1 | """SSL Ciphers 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 4 | 5 | __all__ = ['Cipher', 'Cipher_Stack'] 6 | 7 | from M2Crypto import m2 8 | 9 | class Cipher: 10 | def __init__(self, cipher): 11 | self.cipher=cipher 12 | 13 | def __len__(self): 14 | return m2.ssl_cipher_get_bits(self.cipher) 15 | 16 | def __repr__(self): 17 | return "%s-%s" % (self.name(), len(self)) 18 | 19 | def __str__(self): 20 | return "%s-%s" % (self.name(), len(self)) 21 | 22 | def version(self): 23 | return m2.ssl_cipher_get_version(self.cipher) 24 | 25 | def name(self): 26 | return m2.ssl_cipher_get_name(self.cipher) 27 | 28 | 29 | class Cipher_Stack: 30 | def __init__(self, stack): 31 | self.stack=stack 32 | 33 | def __len__(self): 34 | return m2.sk_ssl_cipher_num(self.stack) 35 | 36 | def __getitem__(self, idx): 37 | if not 0 <= idx < m2.sk_ssl_cipher_num(self.stack): 38 | raise IndexError('index out of range') 39 | v=m2.sk_ssl_cipher_value(self.stack, idx) 40 | return Cipher(v) 41 | 42 | def __iter__(self): 43 | for i in xrange(m2.sk_ssl_cipher_num(self.stack)): 44 | yield self[i] 45 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/SSL/__init__.py: -------------------------------------------------------------------------------- 1 | """M2Crypto SSL services. 2 | 3 | Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved.""" 4 | 5 | # M2Crypto 6 | from M2Crypto import m2 7 | 8 | class SSLError(Exception): pass 9 | m2.ssl_init(SSLError) 10 | 11 | # M2Crypto.SSL 12 | from Cipher import Cipher, Cipher_Stack 13 | from Context import Context 14 | from Connection import Connection 15 | from SSLServer import SSLServer, ForkingSSLServer, ThreadingSSLServer 16 | from ssl_dispatcher import ssl_dispatcher 17 | from timeout import timeout 18 | 19 | verify_none = m2.SSL_VERIFY_NONE 20 | verify_peer = m2.SSL_VERIFY_PEER 21 | verify_fail_if_no_peer_cert = m2.SSL_VERIFY_FAIL_IF_NO_PEER_CERT 22 | verify_client_once = m2.SSL_VERIFY_CLIENT_ONCE 23 | 24 | SSL_SENT_SHUTDOWN = m2.SSL_SENT_SHUTDOWN 25 | SSL_RECEIVED_SHUTDOWN = m2.SSL_RECEIVED_SHUTDOWN 26 | 27 | op_all = m2.SSL_OP_ALL 28 | op_no_sslv2 = m2.SSL_OP_NO_SSLv2 29 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/SSL/ssl_dispatcher.py: -------------------------------------------------------------------------------- 1 | """SSL dispatcher 2 | 3 | Copyright (c) 1999-2002 Ng Pheng Siong. All rights reserved.""" 4 | 5 | __all__ = ['ssl_dispatcher'] 6 | 7 | # Python 8 | import asyncore, socket 9 | 10 | # M2Crypto 11 | from Connection import Connection 12 | from M2Crypto import Err, m2 13 | 14 | 15 | class ssl_dispatcher(asyncore.dispatcher): 16 | 17 | def create_socket(self, ssl_context): 18 | self.family_and_type=socket.AF_INET, socket.SOCK_STREAM 19 | self.ssl_ctx=ssl_context 20 | self.socket=Connection(self.ssl_ctx) 21 | #self.socket.setblocking(0) 22 | self.add_channel() 23 | 24 | def connect(self, addr): 25 | self.socket.setblocking(1) 26 | self.socket.connect(addr) 27 | self.socket.setblocking(0) 28 | 29 | def recv(self, buffer_size=4096): 30 | """Receive data over SSL.""" 31 | return self.socket.recv(buffer_size) 32 | 33 | def send(self, buffer): 34 | """Send data over SSL.""" 35 | return self.socket.send(buffer) 36 | 37 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/SSL/timeout.py: -------------------------------------------------------------------------------- 1 | """Support for SSL socket timeouts. 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved. 4 | 5 | Copyright 2008 Heikki Toivonen. All rights reserved. 6 | """ 7 | 8 | __all__ = ['DEFAULT_TIMEOUT', 'timeout', 'struct_to_timeout', 'struct_size'] 9 | 10 | import struct 11 | from M2Crypto import m2 12 | 13 | DEFAULT_TIMEOUT = 600 14 | 15 | class timeout: 16 | 17 | def __init__(self, sec=DEFAULT_TIMEOUT, microsec=0): 18 | self.sec = sec 19 | self.microsec = microsec 20 | 21 | def pack(self): 22 | return struct.pack('ll', self.sec, self.microsec) 23 | 24 | 25 | def struct_to_timeout(binstr): 26 | (s, ms) = struct.unpack('ll', binstr) 27 | return timeout(s, ms) 28 | 29 | def struct_size(): 30 | return struct.calcsize('ll') 31 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | M2Crypto is the most complete Python wrapper for OpenSSL featuring RSA, DSA, 3 | DH, EC, HMACs, message digests, symmetric ciphers (including AES); SSL 4 | functionality to implement clients and servers; HTTPS extensions to 5 | Python's httplib, urllib, and xmlrpclib; unforgeable HMAC'ing AuthCookies 6 | for web session management; FTP/TLS client and server; S/MIME; ZServerSSL: 7 | A HTTPS server for Zope and ZSmime: An S/MIME messenger for Zope. 8 | M2Crypto can also be used to provide SSL for Twisted. Smartcards supported 9 | through the Engine interface. 10 | 11 | Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved. 12 | 13 | Portions created by Open Source Applications Foundation (OSAF) are 14 | Copyright (C) 2004-2007 OSAF. All Rights Reserved. 15 | 16 | Copyright 2008-2011 Heikki Toivonen. All rights reserved. 17 | """ 18 | 19 | version_info = (0, 22) 20 | version = '.'.join([str(_v) for _v in version_info]) 21 | 22 | import __m2crypto 23 | import m2 24 | import ASN1 25 | import AuthCookie 26 | import BIO 27 | import BN 28 | import Rand 29 | import DH 30 | import DSA 31 | if m2.OPENSSL_VERSION_NUMBER >= 0x90800F and m2.OPENSSL_NO_EC == 0: 32 | import EC 33 | import Err 34 | import Engine 35 | import EVP 36 | import RSA 37 | import RC4 38 | import SMIME 39 | import SSL 40 | import X509 41 | 42 | import m2urllib 43 | import m2urllib2 44 | import ftpslib 45 | import httpslib 46 | import m2xmlrpclib 47 | import threading 48 | import util 49 | 50 | __m2crypto.lib_init() 51 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/__m2crypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/__m2crypto.so -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/callback.py: -------------------------------------------------------------------------------- 1 | """Deprecated, use the util module instead. 2 | 3 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 4 | 5 | import warnings 6 | 7 | warnings.warn('Use the util module instead', DeprecationWarning) 8 | 9 | from util import genparam_callback, passphrase_callback 10 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/m2.py: -------------------------------------------------------------------------------- 1 | """M2Crypto low level OpenSSL wrapper functions. 2 | 3 | m2 is the low level wrapper for OpenSSL functions. Typically you would not 4 | need to use these directly, since these will be called by the higher level 5 | objects you should try to use instead. 6 | 7 | Naming conventions: All functions wrapped by m2 are all lower case, 8 | words separated by underscores. 9 | 10 | Examples: 11 | 12 | OpenSSL M2Crypto 13 | 14 | X509_get_version m2.x509_get_version 15 | X509_get_notBefore m2.x509_get_not_before 16 | X509_REQ_verify m2.x509_req_verify 17 | 18 | Exceptions to naming rules: 19 | 20 | XXX TDB 21 | 22 | Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved. 23 | 24 | Portions created by Open Source Applications Foundation (OSAF) are 25 | Copyright (C) 2004 OSAF. All Rights Reserved. 26 | """ 27 | 28 | from __m2crypto import * 29 | lib_init() 30 | 31 | 32 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/M2Crypto/threading.py: -------------------------------------------------------------------------------- 1 | """ 2 | M2Crypto threading support, required for multithreaded applications. 3 | 4 | Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" 5 | 6 | # M2Crypto 7 | import m2 8 | 9 | def init(): 10 | """ 11 | Initialize threading support. 12 | """ 13 | m2.threading_init() 14 | 15 | def cleanup(): 16 | """ 17 | End and cleanup threading support. 18 | """ 19 | m2.threading_cleanup() 20 | 21 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/bin/python/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | # Copyright (c) 2014 clowwindy 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | # SOFTWARE. 22 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocks.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/MacOS/shadowsocksr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/MacOS/shadowsocksr -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/AdvancedConfigView.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/AdvancedConfigView.nib/keyedobjects.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/Defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "Timeout": 60, 3 | "EncryptMethod": "table" 4 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/ServiceConfigTemplate: -------------------------------------------------------------------------------- 1 | { 2 | "server":"{ServerAddress}", 3 | "server_port":{ServerPort}, 4 | "local_port":{LocalPort}, 5 | "password":"{ServicePassword}", 6 | "timeout":{Timeout}, 7 | "method": "{EncryptMethod}", 8 | "obfs": "", 9 | "obfs_param": "", 10 | "tcp_over_udp": false, 11 | "udp_over_tcp": false, 12 | "protocol": "", 13 | "obfs_udp": false 14 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/ServiceConfigView.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/ServiceConfigView.nib/keyedobjects.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/bin/libev/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/bin/libev/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/bin/libev/ss-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/bin/libev/ss-local -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/PlugIns/shadowsocksr.gxbundle/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/APIServerDocuments/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GoAgentX Helper 6 | 7 | 12 | 13 | 14 |
15 |
16 | 17 | 18 | 19 | 20 | 23 |
24 | 25 |
26 |
27 |
28 | Page will be reloaded automatically. 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/APIServerDocuments/sandbox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/Chrome.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/Chrome.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/Extensions/goagentx.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/Extensions/goagentx.crx -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAAddProfileWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAAddProfileWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAAppInfoViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAAppInfoViewController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GABundlesManageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GABundlesManageViewController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GADuplicateProfileWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GADuplicateProfileWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAImportPACDomainsWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAImportPACDomainsWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAOtherConfigViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAOtherConfigViewController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAProxyConfigViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAProxyConfigViewController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GARenameProfileWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GARenameProfileWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAServiceAdvancedConfigWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAServiceAdvancedConfigWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAServiceLogWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAServiceLogWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GAServicesViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GAServicesViewController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GASetProfilesOrderWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GASetProfilesOrderWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GXBundleIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GXBundleIcon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GXFirstRunWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GXFirstRunWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GXRuleManagePopupWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GXRuleManagePopupWindowController.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 13E28 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GoAgentXProfiles 11 | CFBundleIdentifier 12 | com.goagentx.GoAgentXProfiles 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GoAgentXProfiles 17 | CFBundlePackageType 18 | BNDL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6A317 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 13F26 33 | DTSDKName 34 | macosx10.9 35 | DTXcode 36 | 0600 37 | DTXcodeBuild 38 | 6A317 39 | NSHumanReadableCopyright 40 | Copyright © 2013年 GoAgentX.com. All rights reserved. 41 | 42 | 43 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/GoAgentXProfiles.gxbundle/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/Icon.icns -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/MASPreferencesWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/MASPreferencesWindow.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/MainMenu.nib -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/OtherSettingToolbarImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/OtherSettingToolbarImage.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/PACRules.momd/PACRules 2.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/PACRules.momd/PACRules 2.mom -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/PACRules.momd/PACRules 2.omo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/PACRules.momd/PACRules 2.omo -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/PACRules.momd/PACRules.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/PACRules.momd/PACRules.mom -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/PACRules.momd/VersionInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/PACRules.momd/VersionInfo.plist -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/PACTemplate.js: -------------------------------------------------------------------------------- 1 | function FindProxyForURL(url, host) { 2 | var DEFAULT_PROXY_PROFILE = "{DEFAULT_PROXY_PROFILE}"; 3 | 4 | var FIRST_RUNNING_PROXY = "{FIRST_RUNNING_PROXY}"; 5 | 6 | var FIRST_RUNNING_SOCKS_PROXY = "{FIRST_RUNNING_SOCKS_PROXY}"; 7 | 8 | var HTTP_ONLY_PROXIES = {HTTP_ONLY_PROXIES}; 9 | 10 | var GENERAL_PROXIES = {GENERAL_PROXIES}; 11 | 12 | var GXAPIEnabled = {GX_API_ENABLED}; 13 | var GXAPIProxy = "{GX_API_PROXY}"; 14 | 15 | var getProxyIdentifier = arguments.length > 2 && arguments[2] == true; 16 | 17 | function GetProxy(identifier, url, rule) { 18 | if (getProxyIdentifier) { 19 | return rule ? {rule: rule, identifier: identifier} : null; 20 | } 21 | 22 | var isHTTP = (url.substr(0, 7) == "http://" || url.substr(0, 8) == "https://"); 23 | var proxies = isHTTP ? HTTP_ONLY_PROXIES : GENERAL_PROXIES; 24 | var ret = proxies[identifier] || proxies["AutoDetect"]; 25 | return ret; 26 | } 27 | 28 | url = url.toLowerCase(); 29 | host = host.toLowerCase(); 30 | 31 | if (GXAPIEnabled && host == "goagentx-api-server.local") { 32 | return getProxyIdentifier ? null : GXAPIProxy; 33 | } 34 | 35 | if (host == "127.0.0.1" || 36 | isInNet(host, "10.0.0.0", "255.0.0.0") || 37 | isInNet(host, "192.168.0.0", "255.255.0.0")) { 38 | return GetProxy("DirectConnection", url); 39 | } 40 | 41 | {PAC_RULES} 42 | 43 | return GetProxy(DEFAULT_PROXY_PROFILE, url); 44 | } -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/ProxySettingsToolbarImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/ProxySettingsToolbarImage.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains some sample formatters that may be helpful. 2 | 3 | Feel free to change them, extend them, or use them as the basis for your own custom formatter(s). 4 | 5 | More information about creating your own custom formatters can be found on the wiki: 6 | https://github.com/robbiehanson/CocoaLumberjack/wiki/CustomFormatters 7 | 8 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/ServicesToolbarImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/ServicesToolbarImage.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/banner2lines.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/banner2lines.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBtjCCASsGByqGSM44BAEwggEeAoGBAIzOoIChvpNdARCsnJSfc0+t0E1t1uIj 3 | WhMDlCuFMHPZrr/kyLimzY3ZdVLScorykCWiXRu5Uw/UTVSMagGA6LY0FWPiU+9s 4 | cuda5gZE6Qff05KdblEe4KRIJkKD88Un0sdkkHoMVZIqevAqYwJqcJki6cMsqKHP 5 | 0bI4bb7cFTrLAhUAuJmtnAVs2eY1pokzIyOXQO0ZNjkCgYBiZuQP9P9bf1/rCTeU 6 | DuPlH2XAv99JUSPMF6DsZRYbbxKpot9D90l8K9MRo96xpMpokRE+gkas6EmUptgg 7 | vW3PD2WZtk692OFm3ve84ZY0PFab5OLR1exC2uw3Kmmn/CxZqCLTNMIL9eqPLmBd 8 | b8DjHmrmdahMMdyL9k39y61aHwOBhAACgYAZiPMEEVtweLYnixPizWTjPPSHIxjt 9 | o9hT8mfv0Ny+C25OxKwXBqp109pGTaWIIE7JVzRVrd30O54kd/c3VyU/o6N1IJ9+ 10 | bOX6DfeYtRNZUJ+clqXJdCj4seHj+xSLzQKOrn4ZzRtT+43apNxOfOJQ8Cb0d4QS 11 | EHQSFBJTC9XDIQ== 12 | -----END PUBLIC KEY----- 13 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/en.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/en.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 | 15 |

GoAgentX

16 | Fire in the hole. 17 | 18 | -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/relaunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/relaunch -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_not_configured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_not_configured.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_not_configured_small.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_not_configured_small.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_running.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_running_small.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_running_small.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_stopped.png -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/service_status_stopped_small.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/service_status_stopped_small.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/status_item_icon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/status_item_icon.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/status_item_icon_alt.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/status_item_icon_alt.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/status_item_icon_global.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/status_item_icon_global.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/status_item_icon_global_alt.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/status_item_icon_global_alt.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/status_item_icon_stopped.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/status_item_icon_stopped.tiff -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GoAgentX.app/Contents/Resources/zh-Hans.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/GoAgentX.app/Contents/Resources/zh-Hans.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithril-global/GoAgentX/788fbd5e1c824c75cf98a9aef8a6d4ec8df25e95/screenshot.png --------------------------------------------------------------------------------