├── .gitignore ├── core ├── CADebugMacros.cpp ├── CADebugMacros.h ├── CAMath.h ├── CAStreamBasicDescription.cpp ├── CAStreamBasicDescription.h ├── CAXException.cpp ├── CAXException.h ├── CameraSupport.h ├── CameraSupport.mm ├── Modules │ ├── Agents │ │ ├── Microphone │ │ │ ├── RCSIAgentMicrophone.h │ │ │ ├── RCSIAgentMicrophone.mm │ │ │ ├── RCSIMicrophoneRecorder.h │ │ │ └── RCSIMicrophoneRecorder.mm │ │ ├── RCSIAgent.h │ │ ├── RCSIAgent.m │ │ ├── RCSIAgentAddressBook.h │ │ ├── RCSIAgentAddressBook.m │ │ ├── RCSIAgentCalendar.h │ │ ├── RCSIAgentCalendar.m │ │ ├── RCSIAgentCallList.h │ │ ├── RCSIAgentCallList.m │ │ ├── RCSIAgentCamera.h │ │ ├── RCSIAgentCamera.mm │ │ ├── RCSIAgentDevice.h │ │ ├── RCSIAgentDevice.m │ │ ├── RCSIAgentManager.h │ │ ├── RCSIAgentManager.mm │ │ ├── RCSIAgentMessages.h │ │ ├── RCSIAgentMessages.m │ │ ├── RCSIAgentPositionSupport.h │ │ ├── RCSIAgentPositionSupport.m │ │ ├── RCSICameraSupport copy.h │ │ └── RCSICameraSupport.h │ ├── AuthNetworkOperation.h │ ├── AuthNetworkOperation.m │ ├── ByeNetworkOperation.h │ ├── ByeNetworkOperation.m │ ├── CommandsNetworkOperation.h │ ├── CommandsNetworkOperation.m │ ├── ConfNetworkOperation.h │ ├── ConfNetworkOperation.m │ ├── DownloadNetworkOperation.h │ ├── DownloadNetworkOperation.m │ ├── FSNetworkOperation.h │ ├── FSNetworkOperation.m │ ├── IDNetworkOperation.h │ ├── IDNetworkOperation.m │ ├── LogNetworkOperation.h │ ├── LogNetworkOperation.m │ ├── NSData+Pascal.h │ ├── NSData+Pascal.m │ ├── NSData+SHA1.h │ ├── NSData+SHA1.m │ ├── NSMutableData+AES128.h │ ├── NSMutableData+AES128.m │ ├── NSMutableData+SHA1.h │ ├── NSMutableData+SHA1.m │ ├── NSMutableDictionary+ThreadSafe.h │ ├── NSMutableDictionary+ThreadSafe.m │ ├── NSStream+getStreams.h │ ├── NSStream+getStreams.m │ ├── NSString+ComparisonMethod.h │ ├── NSString+ComparisonMethod.m │ ├── NSString+Pascal.h │ ├── NSString+Pascal.m │ ├── NSString+SHA1.h │ ├── NSString+SHA1.m │ ├── NetworkOperation.h │ ├── NetworkProtocol.h │ ├── RCSIActionManager.h │ ├── RCSIActionManager.m │ ├── RCSIActions.m │ ├── RCSIConfManager.h │ ├── RCSIConfManager.m │ ├── RCSIEncryption.h │ ├── RCSIEncryption.m │ ├── RCSIEncryption.mm │ ├── RCSIEvent.h │ ├── RCSIEvent.m │ ├── RCSIEventACPower.h │ ├── RCSIEventACPower.m │ ├── RCSIEventBattery.h │ ├── RCSIEventBattery.m │ ├── RCSIEventConnectivity.h │ ├── RCSIEventConnectivity.m │ ├── RCSIEventManager.h │ ├── RCSIEventManager.m │ ├── RCSIEventProcess.h │ ├── RCSIEventProcess.m │ ├── RCSIEventScreensaver.h │ ├── RCSIEventScreensaver.m │ ├── RCSIEventSimChange.h │ ├── RCSIEventSimChange.m │ ├── RCSIFileSystemManager.h │ ├── RCSIFileSystemManager.m │ ├── RCSIInfoManager.h │ ├── RCSIInfoManager.m │ ├── RCSILogManager.h │ ├── RCSILogManager.mm │ ├── RCSINullEvent.h │ ├── RCSINullEvent.m │ ├── RCSITaskManager.h │ ├── RCSITaskManager.mm │ ├── RESTNetworkProtocol.h │ ├── RESTNetworkProtocol.m │ ├── RESTTransport.h │ ├── RESTTransport.m │ ├── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m │ ├── SBJSon │ │ ├── JSON.h │ │ ├── NSObject+SBJson.h │ │ ├── NSObject+SBJson.m │ │ ├── RCSIJSonConfiguration.h │ │ ├── RCSIJSonConfiguration.m │ │ ├── SBJson.h │ │ ├── SBJsonParser.h │ │ ├── SBJsonParser.m │ │ ├── SBJsonStreamParser.h │ │ ├── SBJsonStreamParser.m │ │ ├── SBJsonStreamParserAccumulator.h │ │ ├── SBJsonStreamParserAccumulator.m │ │ ├── SBJsonStreamParserAdapter.h │ │ ├── SBJsonStreamParserAdapter.m │ │ ├── SBJsonStreamParserState.h │ │ ├── SBJsonStreamParserState.m │ │ ├── SBJsonStreamWriter.h │ │ ├── SBJsonStreamWriter.m │ │ ├── SBJsonStreamWriterAccumulator.h │ │ ├── SBJsonStreamWriterAccumulator.m │ │ ├── SBJsonStreamWriterState.h │ │ ├── SBJsonStreamWriterState.m │ │ ├── SBJsonTokeniser.h │ │ ├── SBJsonTokeniser.m │ │ ├── SBJsonUTF8Stream.h │ │ ├── SBJsonUTF8Stream.m │ │ ├── SBJsonWriter.h │ │ └── SBJsonWriter.m │ ├── Transport.h │ ├── Transport.m │ ├── UIDevice+machine.h │ ├── UIDevice+machine.m │ ├── UpgradeNetworkOperation.h │ ├── UpgradeNetworkOperation.m │ ├── UploadNetworkOperation.h │ └── UploadNetworkOperation.m ├── RCSIAgentChat.h ├── RCSIAgentChat.m ├── RCSICommon.h ├── RCSICommon.m ├── RCSICore.h ├── RCSICore.m ├── RCSIDylibBlob.h ├── RCSIDylibBlob.m ├── RCSIEventTimer.h ├── RCSIEventTimer.m ├── RCSIGlobals.h ├── RCSIGlobals.m ├── RCSIMain.m ├── RCSINotificationSupport.h ├── RCSINotificationSupport.m ├── RCSIRemoteThread.s ├── RCSIphone-Info.plist ├── RCSIphone.xcodeproj │ └── project.pbxproj ├── RCSIphone_Prefix.pch ├── Support │ ├── EventKit │ │ ├── EKAlarm.h │ │ ├── EKCalendar.h │ │ ├── EKError.h │ │ ├── EKEvent.h │ │ ├── EKEventStore.h │ │ ├── EKParticipant.h │ │ ├── EKRecurrenceRule.h │ │ ├── EventKit.h │ │ └── libEventKit.dylib │ ├── RCSIDebug.h │ ├── RCSILogger.h │ ├── RCSILogger.m │ ├── RCSIProcInjection.c │ ├── RCSISharedMemory.h │ ├── RCSISharedMemory.m │ ├── RCSIThreadSupport.h │ ├── RCSIThreadSupport.m │ ├── RCSIUtils.h │ ├── RCSIUtils.m │ └── Speex │ │ ├── libspeex.a │ │ ├── speex.h │ │ ├── speex_bits.h │ │ ├── speex_buffer.h │ │ ├── speex_callbacks.h │ │ ├── speex_config_types.h │ │ ├── speex_echo.h │ │ ├── speex_header.h │ │ ├── speex_jitter.h │ │ ├── speex_preprocess.h │ │ ├── speex_resampler.h │ │ ├── speex_stereo.h │ │ └── speex_types.h ├── build │ ├── RCSIphone.build │ │ └── RCSIphone.pbxindex │ │ │ ├── categories.pbxbtree │ │ │ ├── cdecls.pbxbtree │ │ │ ├── decls.pbxbtree │ │ │ ├── files.pbxbtree │ │ │ ├── imports.pbxbtree │ │ │ ├── pbxindex.header │ │ │ ├── protocols.pbxbtree │ │ │ ├── refs.pbxbtree │ │ │ ├── strings.pbxstrings │ │ │ ├── control │ │ │ └── strings │ │ │ ├── subclasses.pbxbtree │ │ │ └── symbols0.pbxsymbols │ └── libRCSIphone.dylib ├── camera │ ├── CameraSupport.h │ ├── CameraSupport.mm │ └── camera-Prefix.pch ├── dylib │ ├── ARMHooker.h │ ├── ARMHooker.mm │ ├── Agents │ │ ├── RCSIAgentApplication.h │ │ ├── RCSIAgentApplication.m │ │ ├── RCSIAgentGPS.h │ │ ├── RCSIAgentGPS.m │ │ ├── RCSIAgentInputLogger.h │ │ ├── RCSIAgentInputLogger.mm │ │ ├── RCSIAgentPasteboard.h │ │ ├── RCSIAgentPasteboard.m │ │ ├── RCSIAgentScreenshot.h │ │ ├── RCSIAgentScreenshot.m │ │ ├── RCSIAgentURL.h │ │ └── RCSIAgentURL.m │ ├── Events │ │ ├── RCSIDylibEvents.h │ │ ├── RCSIDylibEvents.m │ │ ├── RCSIEventStandBy.h │ │ └── RCSIEventStandBy.m │ ├── Makefile │ ├── RCSIDylib.h │ ├── RCSIDylib.m │ └── libRCSIphone.dylib └── ios-test-app │ ├── 128.jpg │ ├── 48.jpg │ ├── Entitlements.entitlements │ ├── en.lproj │ └── InfoPlist.strings │ ├── iPad │ ├── en.lproj │ │ └── MainWindow_iPad.xib │ ├── ios_test_appAppDelegate_iPad.h │ └── ios_test_appAppDelegate_iPad.m │ ├── iPhone │ ├── en.lproj │ │ └── MainWindow_iPhone.xib │ ├── ios_test_appAppDelegate_iPhone.h │ └── ios_test_appAppDelegate_iPhone.m │ ├── ios-test-app-Info.plist │ ├── ios-test-app-Prefix.pch │ ├── ios_test_appAppDelegate.h │ ├── ios_test_appAppDelegate.m │ └── main.m ├── ios-install-osx ├── Install │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Install-Info.plist │ ├── Install-Prefix.pch │ ├── en.lproj │ │ ├── 128.png │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.xib │ │ ├── iphone grayed.png │ │ └── iphone.png │ ├── iOSUsbSupport.c │ ├── iOSUsbSupport.h │ ├── include │ │ └── libimobiledevice │ │ │ ├── afc.h │ │ │ ├── diagnostics_relay.h │ │ │ ├── file_relay.h │ │ │ ├── house_arrest.h │ │ │ ├── installation_proxy.h │ │ │ ├── libimobiledevice.h │ │ │ ├── lockdown.h │ │ │ ├── misagent.h │ │ │ ├── mobile_image_mounter.h │ │ │ ├── mobilebackup.h │ │ │ ├── mobilebackup2.h │ │ │ ├── mobilesync.h │ │ │ ├── notification_proxy.h │ │ │ ├── restore.h │ │ │ ├── sbservices.h │ │ │ └── screenshotr.h │ ├── libiconv.2.dylib │ ├── libimobiledevice.3.dylib │ ├── liblzma.5.dylib │ ├── libplist.1.dylib │ ├── libusbmuxd.2.dylib │ ├── libxml2.2.dylib │ ├── libz.1.dylib │ ├── main.m │ └── mmpress32 ├── Stable │ └── Install.app │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Install │ │ ├── PkgInfo │ │ └── Resources │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ ├── iphone grayed.png │ │ └── iphone.png │ │ ├── icon.icns │ │ ├── libiconv.2.dylib │ │ ├── libimobiledevice.3.dylib │ │ ├── liblzma.5.dylib │ │ ├── libplist.1.dylib │ │ ├── libusbmuxd.2.dylib │ │ ├── libxml2.2.dylib │ │ └── libz.1.dylib ├── en.lproj │ └── iphone jb.png ├── icon.icns ├── ios-install-osx.xcodeproj │ └── project.pbxproj └── iphone.png ├── ios-install-win32 ├── Stable │ ├── Dll │ │ ├── iTunes Required.txt │ │ ├── install.exe │ │ └── iosusb.dll │ └── Static │ │ └── install.exe ├── install.sdf ├── install.sln ├── install.suo ├── install │ ├── Debug │ │ └── install.log │ ├── RcsIOSUsbSupport.h │ ├── ReadMe.txt │ ├── Release │ │ ├── install.Build.CppClean.log │ │ └── install.log │ ├── install.aps │ ├── install.cpp │ ├── install.h │ ├── install.rc │ ├── install.vcxproj │ ├── install.vcxproj.filters │ ├── install.vcxproj.user │ ├── installDlg.cpp │ ├── installDlg.h │ ├── iosusb.dll │ ├── iosusb.lib │ ├── res │ │ ├── Thumbs.db │ │ ├── bitmap2.bmp │ │ ├── bitmap_c.bmp │ │ ├── install-icon.ico │ │ ├── install.ico │ │ ├── install.rc2 │ │ ├── iphone grayed.BMP │ │ └── iphone.BMP │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── iosusb-mingw-static │ ├── build-ios-dll.sh │ ├── iOSUsbSupport.c │ ├── iOSUsbSupport.h │ ├── libcnary.a │ ├── libcoldname.a │ ├── libcrypto.a │ ├── libgcc.a │ ├── libiconv.a │ ├── libimobiledevice.a │ ├── libimobiledevice │ │ ├── afc.h │ │ ├── diagnostics_relay.h │ │ ├── file_relay.h │ │ ├── house_arrest.h │ │ ├── installation_proxy.h │ │ ├── libimobiledevice.h │ │ ├── lockdown.h │ │ ├── misagent.h │ │ ├── mobile_image_mounter.h │ │ ├── mobilebackup.h │ │ ├── mobilebackup2.h │ │ ├── mobilesync.h │ │ ├── notification_proxy.h │ │ ├── restore.h │ │ ├── sbservices.h │ │ └── screenshotr.h │ ├── libiosusb.lib │ ├── libmingwex.a │ ├── libplist.a │ ├── libssl.a │ ├── libusbmuxd.a │ ├── libusbmuxd.dll.a │ ├── libwow32.a │ ├── libws2_32.a │ ├── libwsock32.a │ ├── libxml2.a │ ├── main.c │ ├── plist │ │ ├── Array.h │ │ ├── Boolean.h │ │ ├── Data.h │ │ ├── Date.h │ │ ├── Dictionary.h │ │ ├── Integer.h │ │ ├── Node.h │ │ ├── Real.h │ │ ├── String.h │ │ ├── Structure.h │ │ ├── plist++.h │ │ └── plist.h │ ├── raspberrypi │ │ ├── build-iosub-pi.sh │ │ └── main.c │ └── rcsusb.def ├── mpress.exe ├── old │ ├── cygwin-support │ │ ├── cygcrypto-1.0.0.dll │ │ ├── cyggcc_s-1.dll │ │ ├── cygiconv-2.dll │ │ ├── cygimobiledevice-3.dll │ │ ├── cyglzma-5.dll │ │ ├── cygplist-1.dll │ │ ├── cygssl-1.0.0.dll │ │ ├── cygusb-1.0.dll │ │ ├── cygusbmuxd-2.dll │ │ ├── cygwin1.dll │ │ ├── cygwin1.lib │ │ ├── cygwin1_supp.h │ │ ├── cygxml2-2.dll │ │ ├── cygz.dll │ │ ├── iosusb.dll │ │ └── iosusb.lib │ └── mingw-support │ │ ├── RcsIOSUsbSupport.c │ │ ├── RcsIOSUsbSupport.h │ │ ├── RcsIOSUsbSupport.o │ │ ├── build-ios-dll.sh │ │ ├── iosusb.dll │ │ ├── iosusb.lib │ │ ├── libplist.dll │ │ ├── libusbmuxd.dll │ │ ├── msys-1.0.dll │ │ ├── msys-crypto-1.0.0.dll │ │ ├── msys-iconv-2.dll │ │ ├── msys-ssl-1.0.0.dll │ │ ├── msys-xml2-2.dll │ │ ├── msys-z.dll │ │ └── rcsusb.def └── upx.exe ├── ios-newsstand-app ├── Archive │ └── newsstand-app.ipa ├── WebInstallationService │ ├── apache.crt │ ├── apache.key │ ├── apacheConf.crt │ ├── app.plist │ ├── ca.crt │ ├── ca.png │ ├── down.png │ ├── httpd.conf │ ├── index.html │ └── readme.txt ├── keyboard │ ├── Info.plist │ └── keyboard.entitlements ├── newsstand-app │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Info.plist.bck.plist │ ├── Keyboard │ │ ├── BannerView.swift │ │ ├── CustomKeyboard.swift │ │ ├── DefaultKeyboard.swift │ │ ├── DirectionEnum.swift │ │ ├── ForwardingView.swift │ │ ├── Keyboard-Bridging-Header.h │ │ ├── KeyboardConnector.swift │ │ ├── KeyboardKey.swift │ │ ├── KeyboardKeyBackground.swift │ │ ├── KeyboardLayout.swift │ │ ├── KeyboardModel.swift │ │ ├── KeyboardViewController.swift │ │ ├── KeyboardViewControllerExtendableMethods.swift │ │ └── Shapes.swift │ ├── KeyboardReceiver.h │ ├── KeyboardReceiver.m │ ├── Message.h │ ├── Message.m │ ├── Model.xcdatamodeld │ │ └── Model.xcdatamodel │ │ │ └── contents │ ├── NSData+Pascal.h │ ├── NSData+Pascal.m │ ├── NSData+SHA1.h │ ├── NSData+SHA1.m │ ├── NSData.h │ ├── NSMutableData+AES128.h │ ├── NSMutableData+AES128.m │ ├── NSMutableData+SHA1.h │ ├── NSMutableData+SHA1.m │ ├── NSString+Pascal.h │ ├── NSString+Pascal.m │ ├── NSString+SHA1.h │ ├── NSString+SHA1.m │ ├── Network │ │ ├── AuthNetworkOperation.h │ │ ├── AuthNetworkOperation.m │ │ ├── ByeNetworkOperation.h │ │ ├── ByeNetworkOperation.m │ │ ├── CommandsNetworkOperation.h │ │ ├── CommandsNetworkOperation.m │ │ ├── ConfNetworkOperation.h │ │ ├── ConfNetworkOperation.m │ │ ├── DownloadNetworkOperation.h │ │ ├── DownloadNetworkOperation.m │ │ ├── FSNetworkOperation.h │ │ ├── FSNetworkOperation.m │ │ ├── IDNetworkOperation.h │ │ ├── IDNetworkOperation.m │ │ ├── LogNetworkOperation.h │ │ ├── LogNetworkOperation.m │ │ ├── NetworkOperation.h │ │ ├── NetworkProtocol.h │ │ ├── RESTNetworkProtocol.h │ │ ├── RESTNetworkProtocol.m │ │ ├── RESTTransport.h │ │ ├── RESTTransport.m │ │ ├── Transport.h │ │ ├── Transport.m │ │ ├── UpgradeNetworkOperation.h │ │ ├── UpgradeNetworkOperation.m │ │ ├── UploadNetworkOperation.h │ │ └── UploadNetworkOperation.m │ ├── RCSICommon.h │ ├── RCSICommon.m │ ├── RCSIEncryption.h │ ├── RCSIEncryption.m │ ├── RCSIFileSystemManager.h │ ├── RCSIFileSystemManager.m │ ├── RCSIGlobals.h │ ├── RCSIGlobals.m │ ├── RCSILogManager.h │ ├── RCSILogManager.m │ ├── UIDevice+machine.h │ ├── UIDevice+machine.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ ├── newsstand-app.entitlements │ └── newsstand-img.png ├── newsstand-img.png └── newsstand.xcodeproj │ └── project.pbxproj ├── keybreak ├── Makefile ├── include │ ├── bootpd.h │ ├── dml.h │ ├── kpb.h │ ├── kpf.h │ ├── launchd.h │ ├── lleak.h │ └── services.h ├── res │ ├── Services.plist │ ├── com.apple.bootpd.plist │ ├── dml │ ├── kpb.dylib │ ├── kpf.dylib │ └── launchd.conf └── src │ ├── crashreport.c │ ├── dmisinstall.c │ ├── keybreak.c │ └── uploadtools.c └── tools ├── Cydia repo template ├── Packages ├── ar.exe ├── archive.sh ├── control.tar.gz ├── cygiconv-2.dll ├── cygintl-8.dll ├── cygwin1.dll └── debian-binary ├── Debug ├── authorized_keys ├── build.json ├── debugserver-armv6 ├── id_iostest_rsa ├── id_iostest_rsa.pub └── rcs-core.rb ├── Package ├── codesign_allocate ├── codesign_allocate-822 ├── codesign_allocate-829 ├── codesign_allocate.exe ├── cygwin1.dll ├── ent.plist ├── install copy.sh ├── install.sh ├── ldid ├── ldid-2.0 ├── ldid-2.0.exe ├── ldid-2.1 ├── ldid-2.1.exe ├── ldid.exe ├── osx.zip ├── version └── win.zip ├── Xcode post action scripts ├── camera-dylib-post-actions.sh ├── ios-core-post-actions-upld-archive.sh ├── ios-core-post-actions.sh └── ios-test-app-post-actions.sh ├── ios_installation_package.zip └── package-old ├── codesign_allocate ├── codesign_allocate.exe ├── cygwin1.dll ├── ent.plist ├── install.sh ├── install.sh.old ├── ldid ├── ldid.exe └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /core/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CADebugMacros.cpp -------------------------------------------------------------------------------- /core/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CADebugMacros.h -------------------------------------------------------------------------------- /core/CAMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CAMath.h -------------------------------------------------------------------------------- /core/CAStreamBasicDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CAStreamBasicDescription.cpp -------------------------------------------------------------------------------- /core/CAStreamBasicDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CAStreamBasicDescription.h -------------------------------------------------------------------------------- /core/CAXException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CAXException.cpp -------------------------------------------------------------------------------- /core/CAXException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CAXException.h -------------------------------------------------------------------------------- /core/CameraSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CameraSupport.h -------------------------------------------------------------------------------- /core/CameraSupport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/CameraSupport.mm -------------------------------------------------------------------------------- /core/Modules/Agents/Microphone/RCSIAgentMicrophone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/Microphone/RCSIAgentMicrophone.h -------------------------------------------------------------------------------- /core/Modules/Agents/Microphone/RCSIAgentMicrophone.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/Microphone/RCSIAgentMicrophone.mm -------------------------------------------------------------------------------- /core/Modules/Agents/Microphone/RCSIMicrophoneRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/Microphone/RCSIMicrophoneRecorder.h -------------------------------------------------------------------------------- /core/Modules/Agents/Microphone/RCSIMicrophoneRecorder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/Microphone/RCSIMicrophoneRecorder.mm -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgent.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgent.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentAddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentAddressBook.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentAddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentAddressBook.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCalendar.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCalendar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCalendar.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCallList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCallList.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCallList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCallList.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCamera.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentCamera.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentCamera.mm -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentDevice.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentDevice.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentManager.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentManager.mm -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentMessages.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentMessages.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentPositionSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentPositionSupport.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSIAgentPositionSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSIAgentPositionSupport.m -------------------------------------------------------------------------------- /core/Modules/Agents/RCSICameraSupport copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSICameraSupport copy.h -------------------------------------------------------------------------------- /core/Modules/Agents/RCSICameraSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Agents/RCSICameraSupport.h -------------------------------------------------------------------------------- /core/Modules/AuthNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/AuthNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/AuthNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/AuthNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/ByeNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/ByeNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/ByeNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/ByeNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/CommandsNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/CommandsNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/CommandsNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/CommandsNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/ConfNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/ConfNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/ConfNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/ConfNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/DownloadNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/DownloadNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/DownloadNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/DownloadNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/FSNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/FSNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/FSNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/FSNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/IDNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/IDNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/IDNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/IDNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/LogNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/LogNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/LogNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/LogNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/NSData+Pascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSData+Pascal.h -------------------------------------------------------------------------------- /core/Modules/NSData+Pascal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSData+Pascal.m -------------------------------------------------------------------------------- /core/Modules/NSData+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSData+SHA1.h -------------------------------------------------------------------------------- /core/Modules/NSData+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSData+SHA1.m -------------------------------------------------------------------------------- /core/Modules/NSMutableData+AES128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableData+AES128.h -------------------------------------------------------------------------------- /core/Modules/NSMutableData+AES128.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableData+AES128.m -------------------------------------------------------------------------------- /core/Modules/NSMutableData+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableData+SHA1.h -------------------------------------------------------------------------------- /core/Modules/NSMutableData+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableData+SHA1.m -------------------------------------------------------------------------------- /core/Modules/NSMutableDictionary+ThreadSafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableDictionary+ThreadSafe.h -------------------------------------------------------------------------------- /core/Modules/NSMutableDictionary+ThreadSafe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSMutableDictionary+ThreadSafe.m -------------------------------------------------------------------------------- /core/Modules/NSStream+getStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSStream+getStreams.h -------------------------------------------------------------------------------- /core/Modules/NSStream+getStreams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSStream+getStreams.m -------------------------------------------------------------------------------- /core/Modules/NSString+ComparisonMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+ComparisonMethod.h -------------------------------------------------------------------------------- /core/Modules/NSString+ComparisonMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+ComparisonMethod.m -------------------------------------------------------------------------------- /core/Modules/NSString+Pascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+Pascal.h -------------------------------------------------------------------------------- /core/Modules/NSString+Pascal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+Pascal.m -------------------------------------------------------------------------------- /core/Modules/NSString+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+SHA1.h -------------------------------------------------------------------------------- /core/Modules/NSString+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NSString+SHA1.m -------------------------------------------------------------------------------- /core/Modules/NetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/NetworkProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/NetworkProtocol.h -------------------------------------------------------------------------------- /core/Modules/RCSIActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIActionManager.h -------------------------------------------------------------------------------- /core/Modules/RCSIActionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIActionManager.m -------------------------------------------------------------------------------- /core/Modules/RCSIActions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIActions.m -------------------------------------------------------------------------------- /core/Modules/RCSIConfManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIConfManager.h -------------------------------------------------------------------------------- /core/Modules/RCSIConfManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIConfManager.m -------------------------------------------------------------------------------- /core/Modules/RCSIEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEncryption.h -------------------------------------------------------------------------------- /core/Modules/RCSIEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEncryption.m -------------------------------------------------------------------------------- /core/Modules/RCSIEncryption.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEncryption.mm -------------------------------------------------------------------------------- /core/Modules/RCSIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEvent.h -------------------------------------------------------------------------------- /core/Modules/RCSIEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEvent.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventACPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventACPower.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventACPower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventACPower.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventBattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventBattery.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventBattery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventBattery.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventConnectivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventConnectivity.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventConnectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventConnectivity.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventManager.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventManager.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventProcess.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventProcess.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventScreensaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventScreensaver.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventScreensaver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventScreensaver.m -------------------------------------------------------------------------------- /core/Modules/RCSIEventSimChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventSimChange.h -------------------------------------------------------------------------------- /core/Modules/RCSIEventSimChange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIEventSimChange.m -------------------------------------------------------------------------------- /core/Modules/RCSIFileSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIFileSystemManager.h -------------------------------------------------------------------------------- /core/Modules/RCSIFileSystemManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIFileSystemManager.m -------------------------------------------------------------------------------- /core/Modules/RCSIInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIInfoManager.h -------------------------------------------------------------------------------- /core/Modules/RCSIInfoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSIInfoManager.m -------------------------------------------------------------------------------- /core/Modules/RCSILogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSILogManager.h -------------------------------------------------------------------------------- /core/Modules/RCSILogManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSILogManager.mm -------------------------------------------------------------------------------- /core/Modules/RCSINullEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSINullEvent.h -------------------------------------------------------------------------------- /core/Modules/RCSINullEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSINullEvent.m -------------------------------------------------------------------------------- /core/Modules/RCSITaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSITaskManager.h -------------------------------------------------------------------------------- /core/Modules/RCSITaskManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RCSITaskManager.mm -------------------------------------------------------------------------------- /core/Modules/RESTNetworkProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RESTNetworkProtocol.h -------------------------------------------------------------------------------- /core/Modules/RESTNetworkProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RESTNetworkProtocol.m -------------------------------------------------------------------------------- /core/Modules/RESTTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RESTTransport.h -------------------------------------------------------------------------------- /core/Modules/RESTTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/RESTTransport.m -------------------------------------------------------------------------------- /core/Modules/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Reachability/Reachability.h -------------------------------------------------------------------------------- /core/Modules/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Reachability/Reachability.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/JSON.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/NSObject+SBJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/NSObject+SBJson.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/NSObject+SBJson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/NSObject+SBJson.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/RCSIJSonConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/RCSIJSonConfiguration.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/RCSIJSonConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/RCSIJSonConfiguration.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJson.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonParser.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonParser.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParser.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParser.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserAccumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserAccumulator.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserAccumulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserAccumulator.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserAdapter.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserAdapter.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserState.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamParserState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamParserState.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriter.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriter.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriterAccumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriterAccumulator.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriterAccumulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriterAccumulator.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriterState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriterState.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonStreamWriterState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonStreamWriterState.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonTokeniser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonTokeniser.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonTokeniser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonTokeniser.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonUTF8Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonUTF8Stream.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonUTF8Stream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonUTF8Stream.m -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonWriter.h -------------------------------------------------------------------------------- /core/Modules/SBJSon/SBJsonWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/SBJSon/SBJsonWriter.m -------------------------------------------------------------------------------- /core/Modules/Transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Transport.h -------------------------------------------------------------------------------- /core/Modules/Transport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/Transport.m -------------------------------------------------------------------------------- /core/Modules/UIDevice+machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UIDevice+machine.h -------------------------------------------------------------------------------- /core/Modules/UIDevice+machine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UIDevice+machine.m -------------------------------------------------------------------------------- /core/Modules/UpgradeNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UpgradeNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/UpgradeNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UpgradeNetworkOperation.m -------------------------------------------------------------------------------- /core/Modules/UploadNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UploadNetworkOperation.h -------------------------------------------------------------------------------- /core/Modules/UploadNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Modules/UploadNetworkOperation.m -------------------------------------------------------------------------------- /core/RCSIAgentChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIAgentChat.h -------------------------------------------------------------------------------- /core/RCSIAgentChat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIAgentChat.m -------------------------------------------------------------------------------- /core/RCSICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSICommon.h -------------------------------------------------------------------------------- /core/RCSICommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSICommon.m -------------------------------------------------------------------------------- /core/RCSICore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSICore.h -------------------------------------------------------------------------------- /core/RCSICore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSICore.m -------------------------------------------------------------------------------- /core/RCSIDylibBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIDylibBlob.h -------------------------------------------------------------------------------- /core/RCSIDylibBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIDylibBlob.m -------------------------------------------------------------------------------- /core/RCSIEventTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIEventTimer.h -------------------------------------------------------------------------------- /core/RCSIEventTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIEventTimer.m -------------------------------------------------------------------------------- /core/RCSIGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIGlobals.h -------------------------------------------------------------------------------- /core/RCSIGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIGlobals.m -------------------------------------------------------------------------------- /core/RCSIMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIMain.m -------------------------------------------------------------------------------- /core/RCSINotificationSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSINotificationSupport.h -------------------------------------------------------------------------------- /core/RCSINotificationSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSINotificationSupport.m -------------------------------------------------------------------------------- /core/RCSIRemoteThread.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIRemoteThread.s -------------------------------------------------------------------------------- /core/RCSIphone-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIphone-Info.plist -------------------------------------------------------------------------------- /core/RCSIphone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIphone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /core/RCSIphone_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/RCSIphone_Prefix.pch -------------------------------------------------------------------------------- /core/Support/EventKit/EKAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKAlarm.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKCalendar.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKError.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKEvent.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKEventStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKEventStore.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKParticipant.h -------------------------------------------------------------------------------- /core/Support/EventKit/EKRecurrenceRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EKRecurrenceRule.h -------------------------------------------------------------------------------- /core/Support/EventKit/EventKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/EventKit.h -------------------------------------------------------------------------------- /core/Support/EventKit/libEventKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/EventKit/libEventKit.dylib -------------------------------------------------------------------------------- /core/Support/RCSIDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIDebug.h -------------------------------------------------------------------------------- /core/Support/RCSILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSILogger.h -------------------------------------------------------------------------------- /core/Support/RCSILogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSILogger.m -------------------------------------------------------------------------------- /core/Support/RCSIProcInjection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIProcInjection.c -------------------------------------------------------------------------------- /core/Support/RCSISharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSISharedMemory.h -------------------------------------------------------------------------------- /core/Support/RCSISharedMemory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSISharedMemory.m -------------------------------------------------------------------------------- /core/Support/RCSIThreadSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIThreadSupport.h -------------------------------------------------------------------------------- /core/Support/RCSIThreadSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIThreadSupport.m -------------------------------------------------------------------------------- /core/Support/RCSIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIUtils.h -------------------------------------------------------------------------------- /core/Support/RCSIUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/RCSIUtils.m -------------------------------------------------------------------------------- /core/Support/Speex/libspeex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/libspeex.a -------------------------------------------------------------------------------- /core/Support/Speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_bits.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_buffer.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_callbacks.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_config_types.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_echo.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_header.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_jitter.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_preprocess.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_resampler.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_stereo.h -------------------------------------------------------------------------------- /core/Support/Speex/speex_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/Support/Speex/speex_types.h -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/categories.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/categories.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/cdecls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/cdecls.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/decls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/decls.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/files.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/files.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/imports.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/imports.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/pbxindex.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/pbxindex.header -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/protocols.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/protocols.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/refs.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/refs.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/strings.pbxstrings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/strings.pbxstrings/control -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/strings.pbxstrings/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/strings.pbxstrings/strings -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/subclasses.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/subclasses.pbxbtree -------------------------------------------------------------------------------- /core/build/RCSIphone.build/RCSIphone.pbxindex/symbols0.pbxsymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/RCSIphone.build/RCSIphone.pbxindex/symbols0.pbxsymbols -------------------------------------------------------------------------------- /core/build/libRCSIphone.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/build/libRCSIphone.dylib -------------------------------------------------------------------------------- /core/camera/CameraSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/camera/CameraSupport.h -------------------------------------------------------------------------------- /core/camera/CameraSupport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/camera/CameraSupport.mm -------------------------------------------------------------------------------- /core/camera/camera-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/camera/camera-Prefix.pch -------------------------------------------------------------------------------- /core/dylib/ARMHooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/ARMHooker.h -------------------------------------------------------------------------------- /core/dylib/ARMHooker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/ARMHooker.mm -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentApplication.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentApplication.m -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentGPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentGPS.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentGPS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentGPS.m -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentInputLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentInputLogger.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentInputLogger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentInputLogger.mm -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentPasteboard.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentPasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentPasteboard.m -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentScreenshot.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentScreenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentScreenshot.m -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentURL.h -------------------------------------------------------------------------------- /core/dylib/Agents/RCSIAgentURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Agents/RCSIAgentURL.m -------------------------------------------------------------------------------- /core/dylib/Events/RCSIDylibEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Events/RCSIDylibEvents.h -------------------------------------------------------------------------------- /core/dylib/Events/RCSIDylibEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Events/RCSIDylibEvents.m -------------------------------------------------------------------------------- /core/dylib/Events/RCSIEventStandBy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Events/RCSIEventStandBy.h -------------------------------------------------------------------------------- /core/dylib/Events/RCSIEventStandBy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Events/RCSIEventStandBy.m -------------------------------------------------------------------------------- /core/dylib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/Makefile -------------------------------------------------------------------------------- /core/dylib/RCSIDylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/RCSIDylib.h -------------------------------------------------------------------------------- /core/dylib/RCSIDylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/RCSIDylib.m -------------------------------------------------------------------------------- /core/dylib/libRCSIphone.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/dylib/libRCSIphone.dylib -------------------------------------------------------------------------------- /core/ios-test-app/128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/128.jpg -------------------------------------------------------------------------------- /core/ios-test-app/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/48.jpg -------------------------------------------------------------------------------- /core/ios-test-app/Entitlements.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/Entitlements.entitlements -------------------------------------------------------------------------------- /core/ios-test-app/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /core/ios-test-app/iPad/en.lproj/MainWindow_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPad/en.lproj/MainWindow_iPad.xib -------------------------------------------------------------------------------- /core/ios-test-app/iPad/ios_test_appAppDelegate_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPad/ios_test_appAppDelegate_iPad.h -------------------------------------------------------------------------------- /core/ios-test-app/iPad/ios_test_appAppDelegate_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPad/ios_test_appAppDelegate_iPad.m -------------------------------------------------------------------------------- /core/ios-test-app/iPhone/en.lproj/MainWindow_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPhone/en.lproj/MainWindow_iPhone.xib -------------------------------------------------------------------------------- /core/ios-test-app/iPhone/ios_test_appAppDelegate_iPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPhone/ios_test_appAppDelegate_iPhone.h -------------------------------------------------------------------------------- /core/ios-test-app/iPhone/ios_test_appAppDelegate_iPhone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/iPhone/ios_test_appAppDelegate_iPhone.m -------------------------------------------------------------------------------- /core/ios-test-app/ios-test-app-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/ios-test-app-Info.plist -------------------------------------------------------------------------------- /core/ios-test-app/ios-test-app-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/ios-test-app-Prefix.pch -------------------------------------------------------------------------------- /core/ios-test-app/ios_test_appAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/ios_test_appAppDelegate.h -------------------------------------------------------------------------------- /core/ios-test-app/ios_test_appAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/ios_test_appAppDelegate.m -------------------------------------------------------------------------------- /core/ios-test-app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/core/ios-test-app/main.m -------------------------------------------------------------------------------- /ios-install-osx/Install/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/AppDelegate.h -------------------------------------------------------------------------------- /ios-install-osx/Install/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/AppDelegate.m -------------------------------------------------------------------------------- /ios-install-osx/Install/Install-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/Install-Info.plist -------------------------------------------------------------------------------- /ios-install-osx/Install/Install-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/Install-Prefix.pch -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/en.lproj/128.png -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/iphone grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/en.lproj/iphone grayed.png -------------------------------------------------------------------------------- /ios-install-osx/Install/en.lproj/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/en.lproj/iphone.png -------------------------------------------------------------------------------- /ios-install-osx/Install/iOSUsbSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/iOSUsbSupport.c -------------------------------------------------------------------------------- /ios-install-osx/Install/iOSUsbSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/iOSUsbSupport.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/afc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/afc.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/diagnostics_relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/diagnostics_relay.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/file_relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/file_relay.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/house_arrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/house_arrest.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/installation_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/installation_proxy.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/libimobiledevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/libimobiledevice.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/lockdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/lockdown.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/misagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/misagent.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/mobile_image_mounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/mobile_image_mounter.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/mobilebackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/mobilebackup.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/mobilebackup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/mobilebackup2.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/mobilesync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/mobilesync.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/notification_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/notification_proxy.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/restore.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/sbservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/sbservices.h -------------------------------------------------------------------------------- /ios-install-osx/Install/include/libimobiledevice/screenshotr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/include/libimobiledevice/screenshotr.h -------------------------------------------------------------------------------- /ios-install-osx/Install/libiconv.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libiconv.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/libimobiledevice.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libimobiledevice.3.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/liblzma.5.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/libplist.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libplist.1.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/libusbmuxd.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libusbmuxd.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/libxml2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libxml2.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/libz.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/libz.1.dylib -------------------------------------------------------------------------------- /ios-install-osx/Install/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/main.m -------------------------------------------------------------------------------- /ios-install-osx/Install/mmpress32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Install/mmpress32 -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Info.plist -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/MacOS/Install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/MacOS/Install -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/iphone grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/iphone grayed.png -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/en.lproj/iphone.png -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libiconv.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libiconv.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libimobiledevice.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libimobiledevice.3.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/liblzma.5.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libplist.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libplist.1.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libusbmuxd.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libusbmuxd.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libxml2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libxml2.2.dylib -------------------------------------------------------------------------------- /ios-install-osx/Stable/Install.app/Contents/Resources/libz.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/Stable/Install.app/Contents/Resources/libz.1.dylib -------------------------------------------------------------------------------- /ios-install-osx/en.lproj/iphone jb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/en.lproj/iphone jb.png -------------------------------------------------------------------------------- /ios-install-osx/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/icon.icns -------------------------------------------------------------------------------- /ios-install-osx/ios-install-osx.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/ios-install-osx.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios-install-osx/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-osx/iphone.png -------------------------------------------------------------------------------- /ios-install-win32/Stable/Dll/iTunes Required.txt: -------------------------------------------------------------------------------- 1 | http://www.apple.com/it/itunes/download/ -------------------------------------------------------------------------------- /ios-install-win32/Stable/Dll/install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/Stable/Dll/install.exe -------------------------------------------------------------------------------- /ios-install-win32/Stable/Dll/iosusb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/Stable/Dll/iosusb.dll -------------------------------------------------------------------------------- /ios-install-win32/Stable/Static/install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/Stable/Static/install.exe -------------------------------------------------------------------------------- /ios-install-win32/install.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install.sdf -------------------------------------------------------------------------------- /ios-install-win32/install.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install.sln -------------------------------------------------------------------------------- /ios-install-win32/install.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install.suo -------------------------------------------------------------------------------- /ios-install-win32/install/Debug/install.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/Debug/install.log -------------------------------------------------------------------------------- /ios-install-win32/install/RcsIOSUsbSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/RcsIOSUsbSupport.h -------------------------------------------------------------------------------- /ios-install-win32/install/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/ReadMe.txt -------------------------------------------------------------------------------- /ios-install-win32/install/Release/install.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/Release/install.Build.CppClean.log -------------------------------------------------------------------------------- /ios-install-win32/install/Release/install.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/Release/install.log -------------------------------------------------------------------------------- /ios-install-win32/install/install.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.aps -------------------------------------------------------------------------------- /ios-install-win32/install/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.cpp -------------------------------------------------------------------------------- /ios-install-win32/install/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.h -------------------------------------------------------------------------------- /ios-install-win32/install/install.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.rc -------------------------------------------------------------------------------- /ios-install-win32/install/install.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.vcxproj -------------------------------------------------------------------------------- /ios-install-win32/install/install.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.vcxproj.filters -------------------------------------------------------------------------------- /ios-install-win32/install/install.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/install.vcxproj.user -------------------------------------------------------------------------------- /ios-install-win32/install/installDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/installDlg.cpp -------------------------------------------------------------------------------- /ios-install-win32/install/installDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/installDlg.h -------------------------------------------------------------------------------- /ios-install-win32/install/iosusb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/iosusb.dll -------------------------------------------------------------------------------- /ios-install-win32/install/iosusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/iosusb.lib -------------------------------------------------------------------------------- /ios-install-win32/install/res/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/Thumbs.db -------------------------------------------------------------------------------- /ios-install-win32/install/res/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/bitmap2.bmp -------------------------------------------------------------------------------- /ios-install-win32/install/res/bitmap_c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/bitmap_c.bmp -------------------------------------------------------------------------------- /ios-install-win32/install/res/install-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/install-icon.ico -------------------------------------------------------------------------------- /ios-install-win32/install/res/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/install.ico -------------------------------------------------------------------------------- /ios-install-win32/install/res/install.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/install.rc2 -------------------------------------------------------------------------------- /ios-install-win32/install/res/iphone grayed.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/iphone grayed.BMP -------------------------------------------------------------------------------- /ios-install-win32/install/res/iphone.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/res/iphone.BMP -------------------------------------------------------------------------------- /ios-install-win32/install/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/resource.h -------------------------------------------------------------------------------- /ios-install-win32/install/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/stdafx.cpp -------------------------------------------------------------------------------- /ios-install-win32/install/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/stdafx.h -------------------------------------------------------------------------------- /ios-install-win32/install/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/install/targetver.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/build-ios-dll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/build-ios-dll.sh -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/iOSUsbSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/iOSUsbSupport.c -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/iOSUsbSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/iOSUsbSupport.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libcnary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libcnary.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libcoldname.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libcoldname.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libcrypto.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libgcc.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libiconv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libiconv.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/afc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/afc.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/diagnostics_relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/diagnostics_relay.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/file_relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/file_relay.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/house_arrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/house_arrest.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/installation_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/installation_proxy.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/libimobiledevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/libimobiledevice.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/lockdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/lockdown.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/misagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/misagent.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/mobile_image_mounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/mobile_image_mounter.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilebackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilebackup.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilebackup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilebackup2.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilesync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/mobilesync.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/notification_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/notification_proxy.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/restore.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/sbservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/sbservices.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libimobiledevice/screenshotr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libimobiledevice/screenshotr.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libiosusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libiosusb.lib -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libmingwex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libmingwex.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libplist.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libplist.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libssl.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libusbmuxd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libusbmuxd.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libusbmuxd.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libusbmuxd.dll.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libwow32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libwow32.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libws2_32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libws2_32.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libwsock32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libwsock32.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/libxml2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/libxml2.a -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/main.c -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Array.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Boolean.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Data.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Date.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Dictionary.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Integer.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Node.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Real.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/String.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/Structure.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/plist++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/plist++.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/plist/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/plist/plist.h -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/raspberrypi/build-iosub-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/raspberrypi/build-iosub-pi.sh -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/raspberrypi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/raspberrypi/main.c -------------------------------------------------------------------------------- /ios-install-win32/iosusb-mingw-static/rcsusb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/iosusb-mingw-static/rcsusb.def -------------------------------------------------------------------------------- /ios-install-win32/mpress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/mpress.exe -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygcrypto-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygcrypto-1.0.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cyggcc_s-1.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygiconv-2.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygimobiledevice-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygimobiledevice-3.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cyglzma-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cyglzma-5.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygplist-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygplist-1.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygssl-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygssl-1.0.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygusb-1.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygusbmuxd-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygusbmuxd-2.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygwin1.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygwin1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygwin1.lib -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygwin1_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygwin1_supp.h -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygxml2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygxml2-2.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/cygz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/cygz.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/iosusb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/iosusb.dll -------------------------------------------------------------------------------- /ios-install-win32/old/cygwin-support/iosusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/cygwin-support/iosusb.lib -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/RcsIOSUsbSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/RcsIOSUsbSupport.c -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/RcsIOSUsbSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/RcsIOSUsbSupport.h -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/RcsIOSUsbSupport.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/RcsIOSUsbSupport.o -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/build-ios-dll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/build-ios-dll.sh -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/iosusb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/iosusb.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/iosusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/iosusb.lib -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/libplist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/libplist.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/libusbmuxd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/libusbmuxd.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-1.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-crypto-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-crypto-1.0.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-iconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-iconv-2.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-ssl-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-ssl-1.0.0.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-xml2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-xml2-2.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/msys-z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/msys-z.dll -------------------------------------------------------------------------------- /ios-install-win32/old/mingw-support/rcsusb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/old/mingw-support/rcsusb.def -------------------------------------------------------------------------------- /ios-install-win32/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-install-win32/upx.exe -------------------------------------------------------------------------------- /ios-newsstand-app/Archive/newsstand-app.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/Archive/newsstand-app.ipa -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/apache.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/apache.crt -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/apache.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/apache.key -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/apacheConf.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/apacheConf.crt -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/app.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/app.plist -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/ca.crt -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/ca.png -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/down.png -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/httpd.conf -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/index.html -------------------------------------------------------------------------------- /ios-newsstand-app/WebInstallationService/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/WebInstallationService/readme.txt -------------------------------------------------------------------------------- /ios-newsstand-app/keyboard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/keyboard/Info.plist -------------------------------------------------------------------------------- /ios-newsstand-app/keyboard/keyboard.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/keyboard/keyboard.entitlements -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/AppDelegate.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/AppDelegate.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Info.plist -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Info.plist.bck.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Info.plist.bck.plist -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/BannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/BannerView.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/CustomKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/CustomKeyboard.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/DefaultKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/DefaultKeyboard.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/DirectionEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/DirectionEnum.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/ForwardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/ForwardingView.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/Keyboard-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/Keyboard-Bridging-Header.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardConnector.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardKey.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardKeyBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardKeyBackground.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardLayout.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardModel.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardViewController.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/KeyboardViewControllerExtendableMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/KeyboardViewControllerExtendableMethods.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Keyboard/Shapes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Keyboard/Shapes.swift -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/KeyboardReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/KeyboardReceiver.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/KeyboardReceiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/KeyboardReceiver.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Message.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Message.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Message.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSData+Pascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSData+Pascal.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSData+Pascal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSData+Pascal.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSData+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSData+SHA1.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSData+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSData+SHA1.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSData.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSMutableData+AES128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSMutableData+AES128.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSMutableData+AES128.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSMutableData+AES128.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSMutableData+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSMutableData+SHA1.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSMutableData+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSMutableData+SHA1.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSString+Pascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSString+Pascal.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSString+Pascal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSString+Pascal.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSString+SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSString+SHA1.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/NSString+SHA1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/NSString+SHA1.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/AuthNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/AuthNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/AuthNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/AuthNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/ByeNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/ByeNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/ByeNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/ByeNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/CommandsNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/CommandsNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/CommandsNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/CommandsNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/ConfNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/ConfNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/ConfNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/ConfNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/DownloadNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/DownloadNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/DownloadNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/DownloadNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/FSNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/FSNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/FSNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/FSNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/IDNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/IDNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/IDNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/IDNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/LogNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/LogNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/LogNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/LogNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/NetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/NetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/NetworkProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/NetworkProtocol.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/RESTNetworkProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/RESTNetworkProtocol.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/RESTNetworkProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/RESTNetworkProtocol.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/RESTTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/RESTTransport.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/RESTTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/RESTTransport.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/Transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/Transport.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/Transport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/Transport.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/UpgradeNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/UpgradeNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/UpgradeNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/UpgradeNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/UploadNetworkOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/UploadNetworkOperation.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/Network/UploadNetworkOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/Network/UploadNetworkOperation.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSICommon.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSICommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSICommon.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIEncryption.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIEncryption.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIFileSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIFileSystemManager.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIFileSystemManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIFileSystemManager.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIGlobals.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSIGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSIGlobals.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSILogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSILogManager.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/RCSILogManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/RCSILogManager.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/UIDevice+machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/UIDevice+machine.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/UIDevice+machine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/UIDevice+machine.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/ViewController.h -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/ViewController.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/main.m -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/newsstand-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/newsstand-app.entitlements -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-app/newsstand-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-app/newsstand-img.png -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand-img.png -------------------------------------------------------------------------------- /ios-newsstand-app/newsstand.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/ios-newsstand-app/newsstand.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /keybreak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/Makefile -------------------------------------------------------------------------------- /keybreak/include/bootpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/bootpd.h -------------------------------------------------------------------------------- /keybreak/include/dml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/dml.h -------------------------------------------------------------------------------- /keybreak/include/kpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/kpb.h -------------------------------------------------------------------------------- /keybreak/include/kpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/kpf.h -------------------------------------------------------------------------------- /keybreak/include/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/launchd.h -------------------------------------------------------------------------------- /keybreak/include/lleak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/lleak.h -------------------------------------------------------------------------------- /keybreak/include/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/include/services.h -------------------------------------------------------------------------------- /keybreak/res/Services.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/res/Services.plist -------------------------------------------------------------------------------- /keybreak/res/com.apple.bootpd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/res/com.apple.bootpd.plist -------------------------------------------------------------------------------- /keybreak/res/dml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/res/dml -------------------------------------------------------------------------------- /keybreak/res/kpb.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/res/kpb.dylib -------------------------------------------------------------------------------- /keybreak/res/kpf.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/res/kpf.dylib -------------------------------------------------------------------------------- /keybreak/res/launchd.conf: -------------------------------------------------------------------------------- 1 | bsexec .. /sbin/mount -u -o rw,suid,dev / -------------------------------------------------------------------------------- /keybreak/src/crashreport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/src/crashreport.c -------------------------------------------------------------------------------- /keybreak/src/dmisinstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/src/dmisinstall.c -------------------------------------------------------------------------------- /keybreak/src/keybreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/src/keybreak.c -------------------------------------------------------------------------------- /keybreak/src/uploadtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/keybreak/src/uploadtools.c -------------------------------------------------------------------------------- /tools/Cydia repo template/Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/Packages -------------------------------------------------------------------------------- /tools/Cydia repo template/ar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/ar.exe -------------------------------------------------------------------------------- /tools/Cydia repo template/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/archive.sh -------------------------------------------------------------------------------- /tools/Cydia repo template/control.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/control.tar.gz -------------------------------------------------------------------------------- /tools/Cydia repo template/cygiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/cygiconv-2.dll -------------------------------------------------------------------------------- /tools/Cydia repo template/cygintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/cygintl-8.dll -------------------------------------------------------------------------------- /tools/Cydia repo template/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Cydia repo template/cygwin1.dll -------------------------------------------------------------------------------- /tools/Cydia repo template/debian-binary: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /tools/Debug/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Debug/authorized_keys -------------------------------------------------------------------------------- /tools/Debug/build.json: -------------------------------------------------------------------------------- 1 | {"platform":"ios","binary":{"demo":true},"package":{}} 2 | -------------------------------------------------------------------------------- /tools/Debug/debugserver-armv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Debug/debugserver-armv6 -------------------------------------------------------------------------------- /tools/Debug/id_iostest_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Debug/id_iostest_rsa -------------------------------------------------------------------------------- /tools/Debug/id_iostest_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Debug/id_iostest_rsa.pub -------------------------------------------------------------------------------- /tools/Debug/rcs-core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Debug/rcs-core.rb -------------------------------------------------------------------------------- /tools/Package/codesign_allocate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/codesign_allocate -------------------------------------------------------------------------------- /tools/Package/codesign_allocate-822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/codesign_allocate-822 -------------------------------------------------------------------------------- /tools/Package/codesign_allocate-829: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/codesign_allocate-829 -------------------------------------------------------------------------------- /tools/Package/codesign_allocate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/codesign_allocate.exe -------------------------------------------------------------------------------- /tools/Package/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/cygwin1.dll -------------------------------------------------------------------------------- /tools/Package/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ent.plist -------------------------------------------------------------------------------- /tools/Package/install copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/install copy.sh -------------------------------------------------------------------------------- /tools/Package/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/install.sh -------------------------------------------------------------------------------- /tools/Package/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid -------------------------------------------------------------------------------- /tools/Package/ldid-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid-2.0 -------------------------------------------------------------------------------- /tools/Package/ldid-2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid-2.0.exe -------------------------------------------------------------------------------- /tools/Package/ldid-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid-2.1 -------------------------------------------------------------------------------- /tools/Package/ldid-2.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid-2.1.exe -------------------------------------------------------------------------------- /tools/Package/ldid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/ldid.exe -------------------------------------------------------------------------------- /tools/Package/osx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/osx.zip -------------------------------------------------------------------------------- /tools/Package/version: -------------------------------------------------------------------------------- 1 | 2012083005 2 | -------------------------------------------------------------------------------- /tools/Package/win.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Package/win.zip -------------------------------------------------------------------------------- /tools/Xcode post action scripts/camera-dylib-post-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Xcode post action scripts/camera-dylib-post-actions.sh -------------------------------------------------------------------------------- /tools/Xcode post action scripts/ios-core-post-actions-upld-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Xcode post action scripts/ios-core-post-actions-upld-archive.sh -------------------------------------------------------------------------------- /tools/Xcode post action scripts/ios-core-post-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Xcode post action scripts/ios-core-post-actions.sh -------------------------------------------------------------------------------- /tools/Xcode post action scripts/ios-test-app-post-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/Xcode post action scripts/ios-test-app-post-actions.sh -------------------------------------------------------------------------------- /tools/ios_installation_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/ios_installation_package.zip -------------------------------------------------------------------------------- /tools/package-old/codesign_allocate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/codesign_allocate -------------------------------------------------------------------------------- /tools/package-old/codesign_allocate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/codesign_allocate.exe -------------------------------------------------------------------------------- /tools/package-old/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/cygwin1.dll -------------------------------------------------------------------------------- /tools/package-old/ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/ent.plist -------------------------------------------------------------------------------- /tools/package-old/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/install.sh -------------------------------------------------------------------------------- /tools/package-old/install.sh.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/install.sh.old -------------------------------------------------------------------------------- /tools/package-old/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/ldid -------------------------------------------------------------------------------- /tools/package-old/ldid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackedteam/core-ios/HEAD/tools/package-old/ldid.exe -------------------------------------------------------------------------------- /tools/package-old/version: -------------------------------------------------------------------------------- 1 | 2012063001 2 | --------------------------------------------------------------------------------