├── .gitignore ├── CCPatch13.plist ├── Makefile ├── README.md ├── Tweak.xm └── layout └── DEBIAN ├── control ├── postinst └── postrm /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 98 | __pypackages__/ 99 | 100 | # Celery stuff 101 | celerybeat-schedule 102 | celerybeat.pid 103 | 104 | # SageMath parsed files 105 | *.sage.py 106 | 107 | # Environments 108 | .env 109 | .venv 110 | env/ 111 | venv/ 112 | ENV/ 113 | env.bak/ 114 | venv.bak/ 115 | 116 | # Spyder project settings 117 | .spyderproject 118 | .spyproject 119 | 120 | # Rope project settings 121 | .ropeproject 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | 131 | # pytype static type analyzer 132 | .pytype/ 133 | 134 | # Cython debug symbols 135 | cython_debug/ 136 | 137 | .DS_Store 138 | /.build 139 | /Packages 140 | xcuserdata/ 141 | 142 | # OS X 143 | .DS_Store 144 | 145 | # Xcode 146 | build/ 147 | *.pbxuser 148 | !default.pbxuser 149 | *.mode1v3 150 | !default.mode1v3 151 | *.mode2v3 152 | !default.mode2v3 153 | *.perspectivev3 154 | !default.perspectivev3 155 | xcuserdata 156 | *.xccheckout 157 | *.moved-aside 158 | DerivedData 159 | *.hmap 160 | *.ipa 161 | *.xcuserstate 162 | .swiftpm/ 163 | 164 | # Carthage 165 | /Carthage/ 166 | 167 | # Swift Package Manager 168 | .build 169 | Packages/ 170 | Pods/ 171 | 172 | .theos/ -------------------------------------------------------------------------------- /CCPatch13.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Executables = ( "CommCenter" ); }; } -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | ARCHS = arm64 arm64e armv7 armv7s 2 | TARGET = iphone:clang:latest:8.0 3 | INSTALL_TARGET_PROCESSES = CommCenter 4 | LEAN_AND_MEAN = 1 5 | PREFIX = /Applications/Xcode-11.7.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ 6 | 7 | include $(THEOS)/makefiles/common.mk 8 | 9 | TWEAK_NAME = CCPatch13 10 | 11 | CCPatch13_FILES = Tweak.xm 12 | CCPatch13_CFLAGS = -fobjc-arc 13 | 14 | include $(THEOS_MAKE_PATH)/tweak.mk 15 | include $(THEOS_MAKE_PATH)/aggregate.mk 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # commcenterpatch13 2 | 3 | new method, super simple, properly super stable. Probably iOS 8 - 14, no idea 4 | -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | #import 3 | //A new method from iOS 14 4 | 5 | int returnOne() { 6 | return 1; 7 | } 8 | 9 | %ctor { 10 | NSArray *symbols = @[ 11 | @"__Z50VerifyCarrierBundleVersionsXMLSignatureWithKeyTypePK14__CFDictionary16CBVersionsFormat15CBSignatureType16SignatureKeyType", 12 | @"_SecKeyRawVerify", 13 | @"__Z28VerifyCarrierBundleSignatureRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE15CBSignatureType16SignatureKeyType", 14 | @"__Z39VerifyCarrierBundleVersionsXMLSignaturePK14__CFDictionary16CBVersionsFormat15CBSignatureType", 15 | @"__Z28VerifyCarrierBundleSignatureRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP8__SecKey" 16 | ]; 17 | for (NSString *symbol in symbols) { 18 | MSHookFunction(MSFindSymbol(NULL, symbol.UTF8String), (void *)returnOne, NULL); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: com.amywhile.ccpatch13 2 | Architecture: iphoneos-arm 3 | Pre-Depends: firmware (>= 8.0) 4 | Name: CommCenterPatch13 5 | Depends: mobilesubstrate 6 | Version: 3.0 7 | Description: Hippity Hoppity make CommCenter your property 8 | Maintainer: Amy While 9 | Author: Amy While 10 | Section: Tweaks 11 | -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo Hippity Hoppity CommCenter is now your property 3 | killall CommCenter 4 | killall CommCenter Helper 5 | exit 0 6 | -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo Rebooting CommCenter... 3 | killall CommCenter 4 | killall CommCenter Helper 5 | exit 0 6 | --------------------------------------------------------------------------------