├── LICENSE ├── README.md ├── TrollBoard-modified.png ├── TrollBoard.xcodeproj └── project.pbxproj └── TrollBoard ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ └── TrollBoard.png ├── Contents.json └── TrollBoard.imageset │ ├── Contents.json │ └── TrollBoard.png ├── Exploit ├── grant_full_disk_access.h ├── grant_full_disk_access.m ├── helpers.h ├── helpers.m ├── vm_unaligned_copy_switch_race.c └── vm_unaligned_copy_switch_race.h ├── Extensions ├── ButtonStyles.swift └── Compress.swift ├── Functions ├── AppSearch.swift ├── FileController.swift ├── Functions.swift └── Themer.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── TrollBoardApp.swift ├── TrollBoardHeader.h └── Views └── ThemesView.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/README.md -------------------------------------------------------------------------------- /TrollBoard-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard-modified.png -------------------------------------------------------------------------------- /TrollBoard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/AppIcon.appiconset/TrollBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/AppIcon.appiconset/TrollBoard.png -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/TrollBoard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/TrollBoard.imageset/Contents.json -------------------------------------------------------------------------------- /TrollBoard/Assets.xcassets/TrollBoard.imageset/TrollBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Assets.xcassets/TrollBoard.imageset/TrollBoard.png -------------------------------------------------------------------------------- /TrollBoard/Exploit/grant_full_disk_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/grant_full_disk_access.h -------------------------------------------------------------------------------- /TrollBoard/Exploit/grant_full_disk_access.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/grant_full_disk_access.m -------------------------------------------------------------------------------- /TrollBoard/Exploit/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/helpers.h -------------------------------------------------------------------------------- /TrollBoard/Exploit/helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/helpers.m -------------------------------------------------------------------------------- /TrollBoard/Exploit/vm_unaligned_copy_switch_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/vm_unaligned_copy_switch_race.c -------------------------------------------------------------------------------- /TrollBoard/Exploit/vm_unaligned_copy_switch_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Exploit/vm_unaligned_copy_switch_race.h -------------------------------------------------------------------------------- /TrollBoard/Extensions/ButtonStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Extensions/ButtonStyles.swift -------------------------------------------------------------------------------- /TrollBoard/Extensions/Compress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Extensions/Compress.swift -------------------------------------------------------------------------------- /TrollBoard/Functions/AppSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Functions/AppSearch.swift -------------------------------------------------------------------------------- /TrollBoard/Functions/FileController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Functions/FileController.swift -------------------------------------------------------------------------------- /TrollBoard/Functions/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Functions/Functions.swift -------------------------------------------------------------------------------- /TrollBoard/Functions/Themer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Functions/Themer.swift -------------------------------------------------------------------------------- /TrollBoard/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollBoard/TrollBoardApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/TrollBoardApp.swift -------------------------------------------------------------------------------- /TrollBoard/TrollBoardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/TrollBoardHeader.h -------------------------------------------------------------------------------- /TrollBoard/Views/ThemesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxi0/TrollBoard/HEAD/TrollBoard/Views/ThemesView.swift --------------------------------------------------------------------------------