{"id":14961117,"url":"https://github.com/mofneko/jbinspector","last_synced_at":"2025-10-24T20:31:00.325Z","repository":{"id":56915696,"uuid":"169833500","full_name":"mofneko/JBInspector","owner":"mofneko","description":"iOS JailBreak Detector Unity Compatible.","archived":false,"fork":false,"pushed_at":"2019-12-03T11:39:15.000Z","size":33,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T04:02:31.284Z","etag":null,"topics":["ios-library","security","unity3d-plugin"],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mofneko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-09T04:59:59.000Z","updated_at":"2024-05-23T13:40:49.000Z","dependencies_parsed_at":"2022-08-20T21:20:23.846Z","dependency_job_id":null,"html_url":"https://github.com/mofneko/JBInspector","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FJBInspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FJBInspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FJBInspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FJBInspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mofneko","download_url":"https://codeload.github.com/mofneko/JBInspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238030288,"owners_count":19404859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios-library","security","unity3d-plugin"],"created_at":"2024-09-24T13:23:54.424Z","updated_at":"2025-10-24T20:30:59.882Z","avatar_url":"https://github.com/mofneko.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JBInspector\n\n[![Language](https://img.shields.io/badge/language-Objective--C-orange.svg?style=flat\n)](https://developer.apple.com/documentation/objectivec)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![Version](https://img.shields.io/cocoapods/v/JBInspector.svg?style=flat)](https://cocoapods.org/pods/JBInspector)\n[![License](https://img.shields.io/cocoapods/l/JBInspector.svg?style=flat)](https://cocoapods.org/pods/JBInspector)\n[![Platform](https://img.shields.io/cocoapods/p/JBInspector.svg?style=flat)](https://cocoapods.org/pods/JBInspector)\n\nThis module help you to JailBreak detection to your iOS project suported Unity.\n\nready to Sileo.\n\n## Usage\n\nPlease initialize `JBInspector`.\n\n```obj-c\n#import \u003cJBInspector/JBInspector.h\u003e\n```\n\n### Objective-C\n\n```obj-c\nif ([JBInspector isJailbreak]) {\n    // JailBreak detect.\n}\n```\n\n### Swift\n\n```swift\nif (JBInspector.isJailbreak) {\n    // JailBreak detect.\n}\n```\n\n### Unity(C#)\n\n```cs\nusing System.Runtime.InteropServices;\n\n[DllImport(\"__Internal\")]\nprivate static extern bool isJailbreak();\npublic static bool isJailbreak() {\n#if UNITY_EDITOR\n\treturn false;\n#else\n\treturn isJailbreak();\n#endif\n}\n```\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the `JBInspectorExample` directory first.\n\n## Requirements\n\n- iOS 5 or greater\n\n## Installation\n\n### Carthage\n\nIf you’re using [Carthage](https://github.com/Carthage/Carthage), simply add JBInspector to your `Cartfile`:\n\n```ruby\ngithub \"mofneko/JBInspector\"\n```\n\n### CocoaPods\n\nJBInspector is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'JBInspector'\n```\n\n### Unity\n\nIn your Unity project, create a folder Assets/Plugin/iOS. Copy to that directory the files JBInspector.h , JBInspector.mm from Sources/:\n- JBInspector.h\n- JBInspector.mm\n\n## License\n\n```\nMIT License\n\nCopyright (c) 2019 Yusuke Arakawa\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmofneko%2Fjbinspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmofneko%2Fjbinspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmofneko%2Fjbinspector/lists"}