Skip to content

Commit

Permalink
add gympass bypass fork (JailedMonkey)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuah345 committed Feb 3, 2022
1 parent 0ccfc5d commit e26bca0
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 0 deletions.
15 changes: 15 additions & 0 deletions JailedMonkey/JailedMonkey.plist
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>
14 changes: 14 additions & 0 deletions JailedMonkey/Makefile
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
26 changes: 26 additions & 0 deletions JailedMonkey/Tweak.xm
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
9 changes: 9 additions & 0 deletions JailedMonkey/control
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)

0 comments on commit e26bca0

Please sign in to comment.