-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gympass bypass fork (JailedMonkey)
- Loading branch information
1 parent
0ccfc5d
commit e26bca0
Showing
4 changed files
with
64 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" | ||
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Filter</key> | ||
<dict> | ||
<key>Bundles</key> | ||
<array> | ||
<string>com.gympass.gympass</string> | ||
<string>com.ecomi.veve</string> | ||
</array> | ||
</dict> | ||
</dict> | ||
</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,14 @@ | ||
TARGET := iphone:clang:14.4:13.0 | ||
INSTALL_TARGET_PROCESSES = Gympass, Veve, onemobileapp | ||
GO_EASY_ON_ME = 1 | ||
|
||
include $(THEOS)/makefiles/common.mk | ||
|
||
TWEAK_NAME = JailedMonkey | ||
JailedMonkey_FILES = Tweak.xm | ||
JailedMonkey_CFLAGS = -fobjc-arc | ||
JailedMonkey_FRAMEWORKS = UIKit Foundation | ||
ARCHS = arm64 arm64e | ||
|
||
include $(THEOS_MAKE_PATH)/tweak.mk | ||
include $(THEOS_MAKE_PATH)/aggregate.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,26 @@ | ||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
|
||
%hook JailMonkey | ||
- (id)pathsToCheck { | ||
return NULL; | ||
} | ||
- (id)schemesToCheck { | ||
return NULL; | ||
} | ||
- (BOOL)checkPaths { | ||
return 0; | ||
} | ||
- (BOOL)checkSchemes { | ||
return 0; | ||
} | ||
- (BOOL)canViolateSandbox { | ||
return 0; | ||
} | ||
- (BOOL)isDebugged { | ||
return 0; | ||
} | ||
- (BOOL)isJailBroken { | ||
return 0; | ||
} | ||
%end |
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: org.hekatos.jailedmonkey | ||
Name: JailedMonkey | ||
Version: 1.0.1 | ||
Architecture: iphoneos-arm | ||
Description: Bypass JB Detection In apps using JailMonkey (Currently only for Gympass and Veve) | ||
Maintainer: Superuser1958 | ||
Author: Lillie & Superuser1958 | ||
Section: Tweaks | ||
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 13.0) |