-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hide text, verboseboot toggle (broken)
- Loading branch information
Showing
13 changed files
with
109 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+105 KB
RootHelperSample/launchdshim/SpringBoardShim/SpringBoardHook/hideConfidentialText.dylib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
RootHelperSample/launchdshim/SpringBoardShim/SpringBoardHook/springboardhooksigned.dylib
Binary file not shown.
15 changes: 15 additions & 0 deletions
15
RootHelperSample/launchdshim/hideConfidentialText/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Sourced from https://gist.github.com/dlevi309/3da8d364556942fbd63acb52f3ecb866 | ||
TARGET = iphone:clang:16.5:14.4 | ||
ARCHS = arm64 arm64e | ||
INSTALL_TARGET_PROCESSES = SpringBoard | ||
THEOS_PACKAGE_SCHEME=roothide | ||
|
||
include $(THEOS)/makefiles/common.mk | ||
|
||
TWEAK_NAME = hideconfidentialtext | ||
|
||
$(TWEAK_NAME)_FILES = Tweak.x | ||
$(TWEAK_NAME)_CFLAGS = -fobjc-arc -lbsm -Wmodule-import-in-extern-c | ||
$(TWEAK_NAME)_PRIVATE_FRAMEWORKS = SpringBoardUIServices SpringBoard | ||
|
||
include $(THEOS_MAKE_PATH)/tweak.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# iOS 16 LS → iOS 15 LS | ||
This is from a bounty from [r/TweakBounty](https://reddit.com/r/TweakBounty). | ||
|
||
Bounty: https://www.reddit.com/r/TweakBounty/comments/18gvc7l/151611opt_rootless_ios_16_tweak_to_restore_the/ | ||
|
||
Some of the code is taken from the proof-of-concept by [@dlevi309](https://github.com/dlevi309): [link to POC](https://gist.github.com/dlevi309/3da8d364556942fbd63acb52f3ecb866). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// change confidential text - thx fiore | ||
@import Foundation; | ||
@import UIKit; | ||
@interface SBUILegibilityLabel : UIView | ||
@property(nonatomic, assign, readwrite)NSString* string; | ||
@property(assign,nonatomic) long long textAlignment; | ||
@property(nonatomic, assign, readwrite)UIColor* textColor; | ||
@end | ||
|
||
%group thething | ||
%hook CSStatusTextView | ||
- (void)setInternalLegalText:(NSString *)string { | ||
%orig(@""); | ||
} | ||
%end | ||
%end | ||
|
||
%ctor { | ||
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:@"/var/mobile/.serotonin_hidetext"]; // no cfprefsd hook, will rework when I get system injection working | ||
if (fileExists) { | ||
%init(thething) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
make | ||
/Users/ibarahime/ChOma/ct_bypass -i /Users/ibarahime/old-lockscreen/.theos/obj/debug/oldlockscreen.dylib -r -o oldlockscreen.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Package: serotonin.hideconfidentialtext | ||
Name: hideconfidentialtext | ||
Version: 0.0.1 | ||
Architecture: iphoneos-arm | ||
Description: hides the confidential text if /var/mobile/.serotonin_hidetext exists | ||
Maintainer: Serotonin | ||
Author: Fiore | ||
Section: Tweaks | ||
Depends: mobilesubstrate |
1 change: 1 addition & 0 deletions
1
RootHelperSample/launchdshim/hideConfidentialText/hideconfidentialtext.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ Filter = { Bundles = ( com.apple.springboard ); }; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters