question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Bypass Jailbreak using Liberty Lite

See original GitHub issue

Hi,

I want to ask, can this lib be bypassed using Liberty Lite? I want to make sure that jail-monkey prevents bypass from any tools, including Liberty Lite.

Thank you.

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:7

github_iconTop GitHub Comments

1reaction
anupamhorecommented, Apr 14, 2021

Share me your personal Id. I will communicate with you On Wednesday, 14 April, 2021, 04:32:51 pm GMT+8, harshitDewan @.***> wrote:

@anupamhore

  • import “JB.h” is it referring to jail-monkey plugin for react native ? (I have jail-monkey installed no other plugin as of now).
  • Please help with logic used for “isSecurityCheckPassed”, what checks are made in it and how to add it in AppDelegate.m
  • For me Pen Test failed in android by using Magisk hide - Any suggestions for android as well?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.

1reaction
anupamhorecommented, Apr 12, 2021

Hi, Yes I have found a solution. Please implement from the below steps.

  1. Add these two attached files in the xcode project2. In your AppDelegate.m do the following    import “JB.h”
  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

….

//Jailbreak detection, if it is true, show alert, then exit app

if (!isSecurityCheckPassed()) {

UIAlertController *alertController = [UIAlertController

alertControllerWithTitle:@“Jailbroken Device is Detected”

message:@“Your device might have been modified. In order to protect your privacy, we will not run the application on this device. It is recommended to have your device checked by the device manufacturer.”

preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@“Ok”

style:UIAlertActionStyleDefault

handler:^(UIAlertAction *action) {

exit(1);

}];

[alertController addAction:cancelAction];

[self.window.rootViewController presentViewController:alertController animated:YES completion:nil];

}

……

……

}

Considering you already have the jailbreak code in the react native side with the jail monkey plugin, use this in the xcode. It will work

On Monday, 12 April, 2021, 06:40:41 pm GMT+8, harshitDewan ***@***.***> wrote:  

My Pen Test also failed because the guys were using Liberty Lite. Is there any way to prevent this

@anupamhore did you found any possible solution yet ?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.

Read more comments on GitHub >

github_iconTop Results From Across the Web

JailBreak Detection Bypass Using LibertyLite Tweak
In this article, I will be explaining the steps to be followed to use LibertyLite tweak in order to perform jailbreak detection bypass....
Read more >
How to Protect iOS Apps from Liberty Lite Jailbreak Detection ...
Liberty Lite is a very popular, easy to use, general-purpose Jailbreak detection bypass tweak that works with all recent iOS versions and allows ......
Read more >
[Request] Liberty Lite is broken on latest unc0ver iOS 14 ...
Yes phonepe working with A-bypass. But you need to uninstall Liberty before installing A-bypass. And install from its official repo.
Read more >
Liberty Lite – Jailbreak Detection Bypass for iOS 12
Liberty Lite is a general-purpose jailbreak detection bypass for iOS 11/12 firmware. It is developed by famed patch developer, Ryley Angus.
Read more >
Bypass Jailbreak Detection iOS 14 - 14.4 and below - YouTube
Bypass Jailbreak Detection iOS 14 - 14.4 and below | Any App 2021 TWEAK INFO Name: Liberty Lite Source: https://ryleyangus.com/repo ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found