├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── BaseBin ├── .gitignore ├── _external │ ├── fallback │ │ └── CydiaSubstrate.framework │ │ │ ├── .this_is_ellekit_not_substrate │ │ │ └── CydiaSubstrate │ ├── opainject │ └── tar ├── _shared │ ├── CoreServices │ │ ├── LSApplicationProxy.h │ │ └── LSBundleProxy.h │ ├── CoreSymbolication.h │ ├── FSEvents.h │ ├── bsm │ │ ├── audit.h │ │ ├── audit_filter.h │ │ ├── audit_session.h │ │ ├── audit_uevents.h │ │ └── libbsm.h │ ├── kern_memorystatus.h │ ├── launch.h │ ├── libarchive │ │ ├── archive.h │ │ └── archive_entry.h │ ├── libellekit.tbd │ ├── libproc.h │ ├── libproc_private.h │ ├── sandbox.h │ ├── substrate.h │ └── xpc │ │ ├── XPC.apinotes │ │ ├── activity.h │ │ ├── availability.h │ │ ├── base.h │ │ ├── connection.h │ │ ├── debug.h │ │ ├── endpoint.h │ │ ├── module.modulemap │ │ ├── private.h │ │ ├── rich_error.h │ │ ├── session.h │ │ └── xpc.h ├── boomerang │ ├── Makefile │ ├── entitlements.plist │ └── src │ │ └── main.m ├── clean ├── clean.sh ├── forkfix │ ├── Makefile │ ├── src │ │ ├── litehook.c │ │ ├── litehook.h │ │ ├── main.c │ │ ├── syscall.S │ │ └── syscall.h │ └── upload.sh ├── idownloadd │ ├── Makefile │ ├── daemon.plist │ ├── entitlements.plist │ └── src │ │ ├── idownloadd.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ │ └── idownloadd │ │ ├── iDownloadCmds.swift │ │ ├── iDownloadKRW.swift │ │ ├── idownloadd-Bridging-Header.h │ │ └── main.swift ├── jailbreakd │ ├── Makefile │ ├── README.md │ ├── daemon.plist │ ├── entitlements.plist │ └── src │ │ ├── JBDTCPage.h │ │ ├── JBDTCPage.m │ │ ├── codesign.h │ │ ├── codesign.m │ │ ├── dyld_patch.h │ │ ├── dyld_patch.m │ │ ├── fakelib.h │ │ ├── fakelib.m │ │ ├── forkfix.h │ │ ├── forkfix.m │ │ ├── server.h │ │ ├── server.m │ │ ├── spawn_wrapper.h │ │ ├── spawn_wrapper.m │ │ ├── trustcache.h │ │ ├── trustcache.m │ │ ├── trustcache_structs.h │ │ ├── update.h │ │ └── update.m ├── jbctl │ ├── Makefile │ ├── entitlements.plist │ ├── rebuild_daemon.plist │ └── src │ │ └── main.m ├── jbinit │ ├── Makefile │ ├── entitlements.plist │ └── src │ │ ├── launchctl.h │ │ ├── launchctl.m │ │ └── main.m ├── launchdhook │ ├── Makefile │ └── src │ │ ├── boomerang.h │ │ ├── boomerang.m │ │ ├── crashreporter.h │ │ ├── crashreporter.m │ │ ├── daemon_hook.h │ │ ├── daemon_hook.m │ │ ├── ipc_hook.h │ │ ├── ipc_hook.m │ │ ├── main.m │ │ ├── spawn_hook.h │ │ ├── spawn_hook.m │ │ ├── xpc_hook.h │ │ └── xpc_hook.m ├── libfilecom │ ├── Makefile │ └── src │ │ ├── FCHandler.h │ │ └── FCHandler.m ├── libintl.8.dylib ├── libjailbreak │ ├── Makefile │ └── src │ │ ├── RemoteLog.h │ │ ├── boot_info.h │ │ ├── boot_info.m │ │ ├── csblob.h │ │ ├── handoff.h │ │ ├── handoff.m │ │ ├── jailbreakd.h │ │ ├── jailbreakd.m │ │ ├── kcall.h │ │ ├── kcall.m │ │ ├── launchd.h │ │ ├── launchd.m │ │ ├── libjailbreak.h │ │ ├── log.c │ │ ├── log.h │ │ ├── macho.h │ │ ├── macho.m │ │ ├── pac.S │ │ ├── patchfind.h │ │ ├── patchfind.m │ │ ├── pplrw.h │ │ ├── pplrw.m │ │ ├── pte.h │ │ ├── recdhash.m │ │ ├── signatures.h │ │ ├── signatures.m │ │ ├── unrestrict.m │ │ ├── unsandbox.m │ │ ├── util.h │ │ ├── util.m │ │ └── vnode.h ├── pack.sh ├── roothidehooks │ ├── .gitignore │ ├── Makefile │ ├── cfprefsd.x │ ├── common.h │ ├── common.m │ ├── installd.x │ ├── lsd.x │ ├── main.x │ ├── pathhook.x │ └── sb.x ├── systemhook │ ├── Makefile │ ├── src │ │ ├── common.c │ │ ├── common.h │ │ ├── envbuf.c │ │ ├── envbuf.h │ │ ├── launchd.h │ │ └── main.c │ └── upload.sh ├── tar ├── upload.sh └── watchdoghook │ ├── Makefile │ └── src │ └── main.m ├── Dopamine ├── .gitignore ├── Dopamine.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Dopamine.xcscheme ├── Dopamine │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29-ipad.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-ipad.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Backgrounds │ │ │ ├── Clouds.imageset │ │ │ │ ├── Clouds@3x.jpg │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Wallpaper.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pexels-soubhagya-maharana-4124435.jpg │ │ ├── Contents.json │ │ ├── Easter Eggs │ │ │ ├── Contents.json │ │ │ └── fr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fr.png │ │ ├── Logos │ │ │ ├── Contents.json │ │ │ ├── DopamineLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DopamineLogo@1x.png │ │ │ │ ├── DopamineLogo@2x.png │ │ │ │ └── DopamineLogo@3x.png │ │ │ ├── DopamineLogo2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DopamineLogo@1x.png │ │ │ │ ├── DopamineLogo@2x.png │ │ │ │ └── DopamineLogo@3x.png │ │ │ ├── FuguTransparent.imageset │ │ │ │ ├── Artboard copy 2.png │ │ │ │ ├── Artboard copy.png │ │ │ │ ├── Artboard.png │ │ │ │ └── Contents.json │ │ │ ├── PinautenLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Pinauten_Logo_SecResearch_4096 copy 2.png │ │ │ │ ├── Pinauten_Logo_SecResearch_4096 copy.png │ │ │ │ └── Pinauten_Logo_SecResearch_4096.png │ │ │ ├── discord.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── discord-mark-white.png │ │ │ └── github.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GitHub-Mark-64px.png │ │ ├── Package Managers │ │ │ ├── Contents.json │ │ │ ├── Sileo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sileo.png │ │ │ └── Zebra.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Zebra.png │ │ ├── Pinauten_Logo_SecResearch_1024.png │ │ ├── Pinauten_Logo_SecResearch_2048.png │ │ └── Pinauten_Logo_SecResearch_4096.png │ ├── Dopamine-Bridging-Header.h │ ├── Dopamine.entitlements │ ├── DopamineApp.swift │ ├── Info.plist │ ├── JailbreakView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── UI │ │ ├── Classes │ │ │ └── Logger.swift │ │ ├── Extensions │ │ │ ├── Error++.swift │ │ │ ├── TextField++.swift │ │ │ └── URLExtension+download.swift │ │ └── Views │ │ │ ├── AboutView.swift │ │ │ ├── Jailbreak.swift │ │ │ ├── JailbreakView.swift │ │ │ ├── LogView.swift │ │ │ ├── MaterialView.swift │ │ │ ├── PackageManagerSelectionView.swift │ │ │ ├── PopupView.swift │ │ │ ├── SettingsView.swift │ │ │ └── UpdateDownloadingView.swift │ ├── bootstrap │ │ ├── Dopamine.roothide │ │ ├── bootstrap-iphoneos-arm64.tar.zst │ │ ├── libjbdrw.deb │ │ ├── roothideapp.deb │ │ ├── sileo.deb │ │ └── zebra.deb │ ├── include │ │ ├── LSApplicationProxy.h │ │ ├── LSApplicationWorkspace.h │ │ ├── LSBundleProxy.h │ │ ├── _LSApplicationState.h │ │ └── posix_spawn.h │ └── main.swift ├── Makefile ├── ar.lproj │ └── Localizable.strings ├── da.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── el.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── fil.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── kk.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── localization_keys.sh ├── nl.lproj │ └── Localizable.strings ├── pl.lproj │ └── Localizable.strings ├── pt-BR.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── sort_localizations.sh ├── sv.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── uk.lproj │ └── Localizable.strings ├── ur.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings ├── zh_CN.lproj │ └── Localizable.strings ├── zh_HK.lproj │ └── Localizable.strings └── zh_TW.lproj │ └── Localizable.strings ├── Exploits ├── fastPath │ ├── arm.pfx │ ├── ca.conf │ ├── clean.sh │ ├── genCrt.sh │ ├── itd.conf │ ├── usr_arm.conf │ ├── usr_x86_64.conf │ └── x86_64.pfx └── oobPCI │ ├── .gitignore │ ├── Makefile │ ├── Sources │ ├── DriverKit.c │ ├── DriverKit.h │ ├── DriverKitClasses.h │ ├── Fugu15KRW.h │ ├── asm.S │ ├── badRecovery.c │ ├── badRecovery.h │ ├── device.defs │ ├── generated │ │ ├── device.c │ │ ├── device.h │ │ ├── mach_host.c │ │ ├── mach_host.h │ │ ├── task.c │ │ ├── task.h │ │ ├── thread.c │ │ └── thread.h │ ├── includeme.h │ ├── kernel.c │ ├── kernel.h │ ├── kernrw_alloc.c │ ├── kernrw_alloc.h │ ├── mach.c │ ├── mach_host.defs │ ├── main.c │ ├── misc.c │ ├── offsets.c │ ├── offsets.h │ ├── oobPCI.c │ ├── oobPCI.h │ ├── physrw.c │ ├── physrw.h │ ├── print.c │ ├── sleep.c │ ├── sleep.h │ ├── task.defs │ ├── thread.defs │ ├── tlbFail.c │ ├── tlbFail.h │ ├── virtrw.c │ ├── virtrw.h │ └── xprr.h │ └── oobPCI.entitlements ├── LICENSE.md ├── LICENSE_Fugu15.md ├── LICENSE_libc.md ├── Makefile ├── Packages ├── Fugu15KernelExploit │ ├── .gitignore │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ └── Sources │ │ ├── CBindings │ │ ├── fcntl.m │ │ ├── include │ │ │ ├── CBindings.h │ │ │ ├── libjailbreak.h │ │ │ ├── posix_spawn.h │ │ │ ├── th_state.h │ │ │ ├── wifi.h │ │ │ ├── zdict.h │ │ │ ├── zstd.h │ │ │ └── zstd_errors.h │ │ ├── launch.h │ │ ├── libjailbreak.m │ │ ├── pci_offset.m │ │ ├── th_state.c │ │ ├── wifi.m │ │ ├── xpc │ │ │ ├── XPC.apinotes │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ ├── module.modulemap │ │ │ └── xpc.h │ │ └── zstd_wrapper.m │ │ └── Fugu15KernelExploit │ │ ├── Bootstrapper.swift │ │ ├── Fugu15.swift │ │ ├── KRWHandler.swift │ │ ├── Logger.swift │ │ ├── SpawnDrv │ │ ├── SpawnDrv.swift │ │ └── tp.swift │ │ ├── Util.swift │ │ ├── codelessKext.swift │ │ └── oobPCI.swift ├── KernelPatchfinder │ ├── .gitignore │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── KernelPatchfinder │ │ │ └── KernelPatchfinder.swift │ │ └── KernelPatchfinderTester │ │ │ └── main.swift │ └── Tests │ │ └── KernelPatchfinderTests │ │ └── KernelPatchfinderTests.swift ├── PatchfinderUtils │ ├── .gitignore │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ └── Sources │ │ ├── CFastFind │ │ ├── CFastFind.c │ │ └── include │ │ │ └── CFastFind.h │ │ └── PatchfinderUtils │ │ ├── AArch64Instr.swift │ │ ├── Kernel.swift │ │ ├── MachO.swift │ │ └── PatchfinderSegment.swift └── ProcessCommunication │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ └── Sources │ └── ProcessCommunication │ └── ProcessCommunication.swift ├── README.dev.md ├── README.md ├── Tools ├── Exe2Driver │ ├── .gitignore │ ├── Exe2Driver │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ └── Sources │ │ └── Exe2Driver │ │ └── main.swift ├── Makefile ├── Makefile.inc ├── fastPathSign │ ├── .gitignore │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── Security_Codesign │ │ │ ├── SecCodeSigner.h │ │ │ └── module.modulemap │ │ └── fastPathSign │ │ │ └── main.swift │ └── fastPathSign └── installHaxx │ ├── .gitignore │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── installHaxx │ │ └── main.swift │ └── installHaxx ├── banner.png └── jbupdate.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BaseBin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/.gitignore -------------------------------------------------------------------------------- /BaseBin/_external/fallback/CydiaSubstrate.framework/.this_is_ellekit_not_substrate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseBin/_external/fallback/CydiaSubstrate.framework/CydiaSubstrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_external/fallback/CydiaSubstrate.framework/CydiaSubstrate -------------------------------------------------------------------------------- /BaseBin/_external/opainject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_external/opainject -------------------------------------------------------------------------------- /BaseBin/_external/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_external/tar -------------------------------------------------------------------------------- /BaseBin/_shared/CoreServices/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/CoreServices/LSApplicationProxy.h -------------------------------------------------------------------------------- /BaseBin/_shared/CoreServices/LSBundleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/CoreServices/LSBundleProxy.h -------------------------------------------------------------------------------- /BaseBin/_shared/CoreSymbolication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/CoreSymbolication.h -------------------------------------------------------------------------------- /BaseBin/_shared/FSEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/FSEvents.h -------------------------------------------------------------------------------- /BaseBin/_shared/bsm/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/bsm/audit.h -------------------------------------------------------------------------------- /BaseBin/_shared/bsm/audit_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/bsm/audit_filter.h -------------------------------------------------------------------------------- /BaseBin/_shared/bsm/audit_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/bsm/audit_session.h -------------------------------------------------------------------------------- /BaseBin/_shared/bsm/audit_uevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/bsm/audit_uevents.h -------------------------------------------------------------------------------- /BaseBin/_shared/bsm/libbsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/bsm/libbsm.h -------------------------------------------------------------------------------- /BaseBin/_shared/kern_memorystatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/kern_memorystatus.h -------------------------------------------------------------------------------- /BaseBin/_shared/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/launch.h -------------------------------------------------------------------------------- /BaseBin/_shared/libarchive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/libarchive/archive.h -------------------------------------------------------------------------------- /BaseBin/_shared/libarchive/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/libarchive/archive_entry.h -------------------------------------------------------------------------------- /BaseBin/_shared/libellekit.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/libellekit.tbd -------------------------------------------------------------------------------- /BaseBin/_shared/libproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/libproc.h -------------------------------------------------------------------------------- /BaseBin/_shared/libproc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/libproc_private.h -------------------------------------------------------------------------------- /BaseBin/_shared/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/sandbox.h -------------------------------------------------------------------------------- /BaseBin/_shared/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/substrate.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/XPC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/XPC.apinotes -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/activity.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/availability.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/base.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/connection.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/debug.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/endpoint.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/module.modulemap -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/private.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/rich_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/rich_error.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/session.h -------------------------------------------------------------------------------- /BaseBin/_shared/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/_shared/xpc/xpc.h -------------------------------------------------------------------------------- /BaseBin/boomerang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/boomerang/Makefile -------------------------------------------------------------------------------- /BaseBin/boomerang/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/boomerang/entitlements.plist -------------------------------------------------------------------------------- /BaseBin/boomerang/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/boomerang/src/main.m -------------------------------------------------------------------------------- /BaseBin/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/clean -------------------------------------------------------------------------------- /BaseBin/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/clean.sh -------------------------------------------------------------------------------- /BaseBin/forkfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/Makefile -------------------------------------------------------------------------------- /BaseBin/forkfix/src/litehook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/src/litehook.c -------------------------------------------------------------------------------- /BaseBin/forkfix/src/litehook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/src/litehook.h -------------------------------------------------------------------------------- /BaseBin/forkfix/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/src/main.c -------------------------------------------------------------------------------- /BaseBin/forkfix/src/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/src/syscall.S -------------------------------------------------------------------------------- /BaseBin/forkfix/src/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/src/syscall.h -------------------------------------------------------------------------------- /BaseBin/forkfix/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/forkfix/upload.sh -------------------------------------------------------------------------------- /BaseBin/idownloadd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/Makefile -------------------------------------------------------------------------------- /BaseBin/idownloadd/daemon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/daemon.plist -------------------------------------------------------------------------------- /BaseBin/idownloadd/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/entitlements.plist -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd/iDownloadCmds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd/iDownloadCmds.swift -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd/iDownloadKRW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd/iDownloadKRW.swift -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd/idownloadd-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd/idownloadd-Bridging-Header.h -------------------------------------------------------------------------------- /BaseBin/idownloadd/src/idownloadd/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/idownloadd/src/idownloadd/main.swift -------------------------------------------------------------------------------- /BaseBin/jailbreakd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/Makefile -------------------------------------------------------------------------------- /BaseBin/jailbreakd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/README.md -------------------------------------------------------------------------------- /BaseBin/jailbreakd/daemon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/daemon.plist -------------------------------------------------------------------------------- /BaseBin/jailbreakd/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/entitlements.plist -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/JBDTCPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/JBDTCPage.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/JBDTCPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/JBDTCPage.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/codesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/codesign.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/codesign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/codesign.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/dyld_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/dyld_patch.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/dyld_patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/dyld_patch.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/fakelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/fakelib.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/fakelib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/fakelib.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/forkfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/forkfix.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/forkfix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/forkfix.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/server.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/server.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/server.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/spawn_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/spawn_wrapper.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/spawn_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/spawn_wrapper.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/trustcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/trustcache.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/trustcache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/trustcache.m -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/trustcache_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/trustcache_structs.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/update.h -------------------------------------------------------------------------------- /BaseBin/jailbreakd/src/update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jailbreakd/src/update.m -------------------------------------------------------------------------------- /BaseBin/jbctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbctl/Makefile -------------------------------------------------------------------------------- /BaseBin/jbctl/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbctl/entitlements.plist -------------------------------------------------------------------------------- /BaseBin/jbctl/rebuild_daemon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbctl/rebuild_daemon.plist -------------------------------------------------------------------------------- /BaseBin/jbctl/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbctl/src/main.m -------------------------------------------------------------------------------- /BaseBin/jbinit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbinit/Makefile -------------------------------------------------------------------------------- /BaseBin/jbinit/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbinit/entitlements.plist -------------------------------------------------------------------------------- /BaseBin/jbinit/src/launchctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbinit/src/launchctl.h -------------------------------------------------------------------------------- /BaseBin/jbinit/src/launchctl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbinit/src/launchctl.m -------------------------------------------------------------------------------- /BaseBin/jbinit/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/jbinit/src/main.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/Makefile -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/boomerang.h: -------------------------------------------------------------------------------- 1 | void boomerang_userspaceRebootIncoming(); -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/boomerang.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/boomerang.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/crashreporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/crashreporter.h -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/crashreporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/crashreporter.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/daemon_hook.h: -------------------------------------------------------------------------------- 1 | void initDaemonHooks(void); -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/daemon_hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/daemon_hook.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/ipc_hook.h: -------------------------------------------------------------------------------- 1 | void initIPCHooks(void); -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/ipc_hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/ipc_hook.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/main.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/spawn_hook.h: -------------------------------------------------------------------------------- 1 | void initSpawnHooks(void); -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/spawn_hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/spawn_hook.m -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/xpc_hook.h: -------------------------------------------------------------------------------- 1 | void initXPCHooks(void); -------------------------------------------------------------------------------- /BaseBin/launchdhook/src/xpc_hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/launchdhook/src/xpc_hook.m -------------------------------------------------------------------------------- /BaseBin/libfilecom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libfilecom/Makefile -------------------------------------------------------------------------------- /BaseBin/libfilecom/src/FCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libfilecom/src/FCHandler.h -------------------------------------------------------------------------------- /BaseBin/libfilecom/src/FCHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libfilecom/src/FCHandler.m -------------------------------------------------------------------------------- /BaseBin/libintl.8.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libintl.8.dylib -------------------------------------------------------------------------------- /BaseBin/libjailbreak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/Makefile -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/RemoteLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/RemoteLog.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/boot_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/boot_info.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/boot_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/boot_info.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/csblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/csblob.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/handoff.h: -------------------------------------------------------------------------------- 1 | int handoffPPLPrimitives(pid_t pid); 2 | -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/handoff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/handoff.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/jailbreakd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/jailbreakd.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/jailbreakd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/jailbreakd.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/kcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/kcall.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/kcall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/kcall.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/launchd.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/launchd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/launchd.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/libjailbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/libjailbreak.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/log.c -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/log.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/macho.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/macho.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/macho.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/pac.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/pac.S -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/patchfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/patchfind.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/patchfind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/patchfind.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/pplrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/pplrw.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/pplrw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/pplrw.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/pte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/pte.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/recdhash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/recdhash.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/signatures.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/signatures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/signatures.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/unrestrict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/unrestrict.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/unsandbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/unsandbox.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/util.h -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/util.m -------------------------------------------------------------------------------- /BaseBin/libjailbreak/src/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/libjailbreak/src/vnode.h -------------------------------------------------------------------------------- /BaseBin/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/pack.sh -------------------------------------------------------------------------------- /BaseBin/roothidehooks/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /BaseBin/roothidehooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/Makefile -------------------------------------------------------------------------------- /BaseBin/roothidehooks/cfprefsd.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/cfprefsd.x -------------------------------------------------------------------------------- /BaseBin/roothidehooks/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/common.h -------------------------------------------------------------------------------- /BaseBin/roothidehooks/common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/common.m -------------------------------------------------------------------------------- /BaseBin/roothidehooks/installd.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/installd.x -------------------------------------------------------------------------------- /BaseBin/roothidehooks/lsd.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/lsd.x -------------------------------------------------------------------------------- /BaseBin/roothidehooks/main.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/main.x -------------------------------------------------------------------------------- /BaseBin/roothidehooks/pathhook.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/pathhook.x -------------------------------------------------------------------------------- /BaseBin/roothidehooks/sb.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/roothidehooks/sb.x -------------------------------------------------------------------------------- /BaseBin/systemhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/Makefile -------------------------------------------------------------------------------- /BaseBin/systemhook/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/common.c -------------------------------------------------------------------------------- /BaseBin/systemhook/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/common.h -------------------------------------------------------------------------------- /BaseBin/systemhook/src/envbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/envbuf.c -------------------------------------------------------------------------------- /BaseBin/systemhook/src/envbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/envbuf.h -------------------------------------------------------------------------------- /BaseBin/systemhook/src/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/launchd.h -------------------------------------------------------------------------------- /BaseBin/systemhook/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/src/main.c -------------------------------------------------------------------------------- /BaseBin/systemhook/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/systemhook/upload.sh -------------------------------------------------------------------------------- /BaseBin/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/tar -------------------------------------------------------------------------------- /BaseBin/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/upload.sh -------------------------------------------------------------------------------- /BaseBin/watchdoghook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/watchdoghook/Makefile -------------------------------------------------------------------------------- /BaseBin/watchdoghook/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/BaseBin/watchdoghook/src/main.m -------------------------------------------------------------------------------- /Dopamine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/.gitignore -------------------------------------------------------------------------------- /Dopamine/Dopamine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dopamine/Dopamine.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dopamine/Dopamine.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Dopamine/Dopamine.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Dopamine/Dopamine.xcodeproj/xcshareddata/xcschemes/Dopamine.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine.xcodeproj/xcshareddata/xcschemes/Dopamine.xcscheme -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Backgrounds/Clouds.imageset/Clouds@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Backgrounds/Clouds.imageset/Clouds@3x.jpg -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Backgrounds/Clouds.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Backgrounds/Clouds.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Backgrounds/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Backgrounds/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Backgrounds/Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Backgrounds/Wallpaper.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Backgrounds/Wallpaper.imageset/pexels-soubhagya-maharana-4124435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Backgrounds/Wallpaper.imageset/pexels-soubhagya-maharana-4124435.jpg -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Easter Eggs/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Easter Eggs/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Easter Eggs/fr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Easter Eggs/fr.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Easter Eggs/fr.imageset/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Easter Eggs/fr.imageset/fr.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@1x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo.imageset/DopamineLogo@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@1x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@2x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/DopamineLogo2.imageset/DopamineLogo@3x.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard copy 2.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard copy.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Artboard.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/FuguTransparent.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096 copy 2.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096 copy.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/PinautenLogo.imageset/Pinauten_Logo_SecResearch_4096.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/discord.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/discord.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/discord.imageset/discord-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/discord.imageset/discord-mark-white.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/github.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/github.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Logos/github.imageset/GitHub-Mark-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Logos/github.imageset/GitHub-Mark-64px.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Package Managers/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Package Managers/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Package Managers/Sileo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Package Managers/Sileo.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Package Managers/Sileo.imageset/Sileo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Package Managers/Sileo.imageset/Sileo.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Package Managers/Zebra.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Package Managers/Zebra.imageset/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Package Managers/Zebra.imageset/Zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Package Managers/Zebra.imageset/Zebra.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_1024.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_2048.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Assets.xcassets/Pinauten_Logo_SecResearch_4096.png -------------------------------------------------------------------------------- /Dopamine/Dopamine/Dopamine-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Dopamine-Bridging-Header.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/Dopamine.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Dopamine.entitlements -------------------------------------------------------------------------------- /Dopamine/Dopamine/DopamineApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/DopamineApp.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Info.plist -------------------------------------------------------------------------------- /Dopamine/Dopamine/JailbreakView.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dopamine/Dopamine/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Classes/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Classes/Logger.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Extensions/Error++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Extensions/Error++.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Extensions/TextField++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Extensions/TextField++.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Extensions/URLExtension+download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Extensions/URLExtension+download.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/AboutView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/Jailbreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/Jailbreak.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/JailbreakView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/JailbreakView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/LogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/LogView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/MaterialView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/MaterialView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/PackageManagerSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/PackageManagerSelectionView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/PopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/PopupView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/SettingsView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/UI/Views/UpdateDownloadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/UI/Views/UpdateDownloadingView.swift -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/Dopamine.roothide: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/bootstrap-iphoneos-arm64.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/bootstrap/bootstrap-iphoneos-arm64.tar.zst -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/libjbdrw.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/bootstrap/libjbdrw.deb -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/roothideapp.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/bootstrap/roothideapp.deb -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/sileo.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/bootstrap/sileo.deb -------------------------------------------------------------------------------- /Dopamine/Dopamine/bootstrap/zebra.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/bootstrap/zebra.deb -------------------------------------------------------------------------------- /Dopamine/Dopamine/include/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/include/LSApplicationProxy.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/include/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/include/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/include/LSBundleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/include/LSBundleProxy.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/include/_LSApplicationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/include/_LSApplicationState.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/include/posix_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/include/posix_spawn.h -------------------------------------------------------------------------------- /Dopamine/Dopamine/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Dopamine/main.swift -------------------------------------------------------------------------------- /Dopamine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/Makefile -------------------------------------------------------------------------------- /Dopamine/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/kk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/kk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/localization_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/localization_keys.sh -------------------------------------------------------------------------------- /Dopamine/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/sort_localizations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/sort_localizations.sh -------------------------------------------------------------------------------- /Dopamine/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/ur.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/zh_HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/zh_HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dopamine/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Dopamine/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /Exploits/fastPath/arm.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/arm.pfx -------------------------------------------------------------------------------- /Exploits/fastPath/ca.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/ca.conf -------------------------------------------------------------------------------- /Exploits/fastPath/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/clean.sh -------------------------------------------------------------------------------- /Exploits/fastPath/genCrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/genCrt.sh -------------------------------------------------------------------------------- /Exploits/fastPath/itd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/itd.conf -------------------------------------------------------------------------------- /Exploits/fastPath/usr_arm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/usr_arm.conf -------------------------------------------------------------------------------- /Exploits/fastPath/usr_x86_64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/usr_x86_64.conf -------------------------------------------------------------------------------- /Exploits/fastPath/x86_64.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/fastPath/x86_64.pfx -------------------------------------------------------------------------------- /Exploits/oobPCI/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /oobPCI 3 | -------------------------------------------------------------------------------- /Exploits/oobPCI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Makefile -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/DriverKit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/DriverKit.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/DriverKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/DriverKit.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/DriverKitClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/DriverKitClasses.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/Fugu15KRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/Fugu15KRW.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/asm.S -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/badRecovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/badRecovery.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/badRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/badRecovery.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/device.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/device.defs -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/device.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/device.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/mach_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/mach_host.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/mach_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/mach_host.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/task.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/task.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/thread.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/generated/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/generated/thread.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/includeme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/includeme.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/kernel.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/kernel.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/kernrw_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/kernrw_alloc.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/kernrw_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/kernrw_alloc.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/mach.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/mach_host.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/mach_host.defs -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/main.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/misc.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/offsets.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/offsets.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/oobPCI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/oobPCI.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/oobPCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/oobPCI.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/physrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/physrw.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/physrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/physrw.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/print.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/sleep.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/sleep.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/task.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/task.defs -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/thread.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/thread.defs -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/tlbFail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/tlbFail.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/tlbFail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/tlbFail.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/virtrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/virtrw.c -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/virtrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/virtrw.h -------------------------------------------------------------------------------- /Exploits/oobPCI/Sources/xprr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/Sources/xprr.h -------------------------------------------------------------------------------- /Exploits/oobPCI/oobPCI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Exploits/oobPCI/oobPCI.entitlements -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_Fugu15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/LICENSE_Fugu15.md -------------------------------------------------------------------------------- /LICENSE_libc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/LICENSE_libc.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Makefile -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/.gitignore -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Package.resolved -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Package.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/README.md -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/fcntl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/fcntl.m -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/CBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/CBindings.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/libjailbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/libjailbreak.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/posix_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/posix_spawn.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/th_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/th_state.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/wifi.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/zdict.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/zstd.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/include/zstd_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/include/zstd_errors.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/launch.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/libjailbreak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/libjailbreak.m -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/pci_offset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/pci_offset.m -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/th_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/th_state.c -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/wifi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/wifi.m -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/XPC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/XPC.apinotes -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/activity.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/availability.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/base.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/connection.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/debug.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/endpoint.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/module.modulemap -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/xpc/xpc.h -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/CBindings/zstd_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/CBindings/zstd_wrapper.m -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Bootstrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Bootstrapper.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Fugu15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Fugu15.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/KRWHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/KRWHandler.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Logger.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/SpawnDrv/SpawnDrv.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/SpawnDrv/SpawnDrv.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/SpawnDrv/tp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/SpawnDrv/tp.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/Util.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/codelessKext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/codelessKext.swift -------------------------------------------------------------------------------- /Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/oobPCI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/Fugu15KernelExploit/Sources/Fugu15KernelExploit/oobPCI.swift -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/.gitignore -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/LICENSE -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/Package.swift -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/README.md -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/Sources/KernelPatchfinder/KernelPatchfinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/Sources/KernelPatchfinder/KernelPatchfinder.swift -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/Sources/KernelPatchfinderTester/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/Sources/KernelPatchfinderTester/main.swift -------------------------------------------------------------------------------- /Packages/KernelPatchfinder/Tests/KernelPatchfinderTests/KernelPatchfinderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/KernelPatchfinder/Tests/KernelPatchfinderTests/KernelPatchfinderTests.swift -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/.gitignore -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/LICENSE -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Package.swift -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/README.md -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/CFastFind/CFastFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/CFastFind/CFastFind.c -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/CFastFind/include/CFastFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/CFastFind/include/CFastFind.h -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/PatchfinderUtils/AArch64Instr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/PatchfinderUtils/AArch64Instr.swift -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/PatchfinderUtils/Kernel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/PatchfinderUtils/Kernel.swift -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/PatchfinderUtils/MachO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/PatchfinderUtils/MachO.swift -------------------------------------------------------------------------------- /Packages/PatchfinderUtils/Sources/PatchfinderUtils/PatchfinderSegment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/PatchfinderUtils/Sources/PatchfinderUtils/PatchfinderSegment.swift -------------------------------------------------------------------------------- /Packages/ProcessCommunication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/ProcessCommunication/.gitignore -------------------------------------------------------------------------------- /Packages/ProcessCommunication/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/ProcessCommunication/Package.swift -------------------------------------------------------------------------------- /Packages/ProcessCommunication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/ProcessCommunication/README.md -------------------------------------------------------------------------------- /Packages/ProcessCommunication/Sources/ProcessCommunication/ProcessCommunication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Packages/ProcessCommunication/Sources/ProcessCommunication/ProcessCommunication.swift -------------------------------------------------------------------------------- /README.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/README.dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Exe2Driver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/.gitignore -------------------------------------------------------------------------------- /Tools/Exe2Driver/Exe2Driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/Exe2Driver -------------------------------------------------------------------------------- /Tools/Exe2Driver/Makefile: -------------------------------------------------------------------------------- 1 | TARGET=Exe2Driver 2 | CONFIG=release 3 | 4 | include ../Makefile.inc 5 | -------------------------------------------------------------------------------- /Tools/Exe2Driver/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/Package.resolved -------------------------------------------------------------------------------- /Tools/Exe2Driver/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/Package.swift -------------------------------------------------------------------------------- /Tools/Exe2Driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/README.md -------------------------------------------------------------------------------- /Tools/Exe2Driver/Sources/Exe2Driver/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Exe2Driver/Sources/Exe2Driver/main.swift -------------------------------------------------------------------------------- /Tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Makefile -------------------------------------------------------------------------------- /Tools/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/Makefile.inc -------------------------------------------------------------------------------- /Tools/fastPathSign/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/.gitignore -------------------------------------------------------------------------------- /Tools/fastPathSign/Makefile: -------------------------------------------------------------------------------- 1 | TARGET=fastPathSign 2 | CONFIG=release 3 | 4 | include ../Makefile.inc 5 | -------------------------------------------------------------------------------- /Tools/fastPathSign/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/Package.swift -------------------------------------------------------------------------------- /Tools/fastPathSign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/README.md -------------------------------------------------------------------------------- /Tools/fastPathSign/Sources/Security_Codesign/SecCodeSigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/Sources/Security_Codesign/SecCodeSigner.h -------------------------------------------------------------------------------- /Tools/fastPathSign/Sources/Security_Codesign/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/Sources/Security_Codesign/module.modulemap -------------------------------------------------------------------------------- /Tools/fastPathSign/Sources/fastPathSign/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/Sources/fastPathSign/main.swift -------------------------------------------------------------------------------- /Tools/fastPathSign/fastPathSign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/fastPathSign/fastPathSign -------------------------------------------------------------------------------- /Tools/installHaxx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/.gitignore -------------------------------------------------------------------------------- /Tools/installHaxx/Makefile: -------------------------------------------------------------------------------- 1 | TARGET=installHaxx 2 | CONFIG=release 3 | 4 | include ../Makefile.inc 5 | -------------------------------------------------------------------------------- /Tools/installHaxx/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/Package.resolved -------------------------------------------------------------------------------- /Tools/installHaxx/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/Package.swift -------------------------------------------------------------------------------- /Tools/installHaxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/README.md -------------------------------------------------------------------------------- /Tools/installHaxx/Sources/installHaxx/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/Sources/installHaxx/main.swift -------------------------------------------------------------------------------- /Tools/installHaxx/installHaxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/Tools/installHaxx/installHaxx -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/banner.png -------------------------------------------------------------------------------- /jbupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/Dopamine-roothide-dev/HEAD/jbupdate.sh --------------------------------------------------------------------------------