Push remaining files and update README

This commit is contained in:
Hamza-Ayed
2026-06-09 08:44:23 +03:00
parent d8901e1a87
commit 9bc7a31c94
61 changed files with 2283 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
//
// JailbreakDetection.swift
// Runner
//
// Created by Hamza Aleghwairyeen on 26/07/2025.
//
import Foundation
class JailbreakDetection {
static func isJailbroken() -> Bool {
let paths = [
"/Applications/Cydia.app",
"/Library/MobileSubstrate/MobileSubstrate.dylib",
"/usr/sbin/sshd",
"/etc/apt"
]
for path in paths {
if FileManager.default.fileExists(atPath: path) {
return true
}
}
return false
}
}