Giter Site home page Giter Site logo

ios-jailbroken's People

Contributors

macsat01 avatar mattapperson avatar sat2eesh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ios-jailbroken's Issues

Test for same mod dates fails on local device ( appPathNameModifiedDate > [pkgInfoModifiedDate )

In JBroken.m, this check:

if([appPathNameModifiedDate timeIntervalSinceReferenceDate] > [pkgInfoModifiedDate timeIntervalSinceReferenceDate]) {

usually fails when running the app locally from Xcode 5.1.1 onto a physical device (iPad Air), as the times are different by a few or several seconds.

I wonder if a better test might be checking for a difference of more than several seconds, like this:

if( abs ([appPathNameModifiedDate timeIntervalSinceReferenceDate] - [pkgInfoModifiedDate timeIntervalSinceReferenceDate]) > 20 ) {

Jailbreak checks on jailbroken devices are easy to disarm

These checks are futile if the user has installed a tweak with the following source code (Using CydiaSubstrate)

MSHook(BOOL, isDeviceJailbroken) { return NO; }
MSHook(BOOL, isAppStoreVersion) { return YES; }
MSHook(BOOL, isAppCracked) { return NO; }
%ctor {
    MSHookFunction(isDeviceJailbroken, MSHake(isDeviceJailbroken));
    MSHookFunction(isAppStoreVersion, MSHake(isAppStoreVersion));
    MSHookFunction(isDeviceJailbroken, MSHake(isAppCracked));
}

Identifier

//
// JBroken.h
//
// Created by Sathish Venkatisan on 12/10/13.
//

float firmwareVersion();
BOOL isDeviceJailbroken();
BOOL isAppCracked();
BOOL isAppStoreVersion();

Incorrect JB reporting

This codes reports the device jailbroken even if it's not, but was restored from a jb backup... (the directories are there)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.