-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #376 from Psiphon-Labs/master
Merge master into staging-client
- Loading branch information
Showing
10 changed files
with
312 additions
and
41 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
29 changes: 29 additions & 0 deletions
29
MobileLibrary/iOS/PsiphonTunnel/PsiphonTunnel/JailbreakCheck/JailbreakCheck.h
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,29 @@ | ||
// | ||
// JailbreakCheck.h | ||
// JailbreakCheck | ||
// | ||
|
||
/* | ||
* Copyright (c) 2017, Psiphon Inc. | ||
* All rights reserved. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
@interface JailbreakCheck : NSObject | ||
|
||
+ (BOOL)isDeviceJailbroken; | ||
|
||
@end |
136 changes: 136 additions & 0 deletions
136
MobileLibrary/iOS/PsiphonTunnel/PsiphonTunnel/JailbreakCheck/JailbreakCheck.m
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,136 @@ | ||
// Adapted from https://github.com/olxios/JailbreakCheck | ||
/* | ||
MIT License | ||
Copyright (c) 2016 olxios | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
*/ | ||
|
||
|
||
#import <Foundation/Foundation.h> | ||
#import "UIKit/UIKit.h" | ||
#import <sys/stat.h> | ||
#import "JailbreakCheck.h" | ||
|
||
|
||
@implementation JailbreakCheck | ||
|
||
|
||
BOOL checkReadWritePermissions() | ||
{ | ||
// UIApplication:sharedApplication is disallowed in an application exetension | ||
// (such as would be used by a whole-device Psiphon VPN). We may re-enable | ||
// this code later, but leave it out for now to avoid confusion. | ||
/* | ||
if([[UIApplication sharedApplication] canOpenURL: | ||
[NSURL URLWithString:@"cydia://package/com.com.com"]]) | ||
{ | ||
return TRUE; | ||
} | ||
NSError *error; | ||
NSString *stringToBeWritten = @"0"; | ||
[stringToBeWritten writeToFile:@"/private/jailbreak.test" | ||
atomically:YES | ||
encoding:NSUTF8StringEncoding error:&error]; | ||
if (error == nil) | ||
{ | ||
return TRUE; | ||
} | ||
*/ | ||
|
||
return FALSE; | ||
} | ||
|
||
BOOL checkJailbreakSymLink(NSString *checkPath) | ||
{ | ||
struct stat s; | ||
|
||
if (lstat([checkPath UTF8String], &s) == 0) | ||
{ | ||
if (S_ISLNK(s.st_mode) == 1) | ||
{ | ||
return TRUE; | ||
} | ||
} | ||
|
||
return FALSE; | ||
} | ||
|
||
BOOL checkJailbreakSymlinks() | ||
{ | ||
NSArray *linksChecks = @[@"/Applications", | ||
@"/usr/libexec", | ||
@"/usr/share", | ||
@"/Library/Wallpaper", | ||
@"/usr/include"]; | ||
|
||
for (NSString *checkPath in linksChecks) | ||
{ | ||
if (checkJailbreakSymLink(checkPath)) { | ||
return TRUE; | ||
} | ||
} | ||
|
||
return FALSE; | ||
} | ||
|
||
BOOL checkJailbreakFile(NSString *checkPath) | ||
{ | ||
struct stat s; | ||
|
||
if (stat([checkPath UTF8String], &s) == 0) | ||
{ | ||
return TRUE; | ||
} | ||
|
||
return FALSE; | ||
} | ||
|
||
BOOL checkJailbreakFiles() | ||
{ | ||
NSArray *fileChecks = @[@"/bin/bash", | ||
@"/etc/apt", | ||
@"/usr/sbin/sshd", | ||
@"/Library/MobileSubstrate/MobileSubstrate.dylib", | ||
@"/Applications/Cydia.app", | ||
@"/bin/sh", | ||
@"/var/cache/apt", | ||
@"/var/tmp/cydia.log"]; | ||
|
||
for (NSString *checkPath in fileChecks) | ||
{ | ||
if (checkJailbreakFile(checkPath)) { | ||
return TRUE; | ||
} | ||
} | ||
|
||
return FALSE; | ||
} | ||
|
||
+ (BOOL)isDeviceJailbroken | ||
{ | ||
return | ||
checkJailbreakSymlinks() | ||
|| checkJailbreakFiles() | ||
|| checkReadWritePermissions(); | ||
} | ||
|
||
@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
Oops, something went wrong.