簡體   English   中英

Flutter iOS 應用程序的越獄檢測

[英]Jail break detection for Flutter iOS apps

在測試過程中發現 ios 應用程序沒有越獄保護來阻止在越獄設備上運行的應用程序。

任何建議如何為我的 iOS 的 flutter APP 實施以下內容強烈建議實施以下方法。

• Try to find the presence of Cydia
 • Attempt to find existence of CydiaSubstrate, the framework that allows installation of third-party patches 
• Attempt to access directories that should not be available to an app without escalated privileges (such as /bin/bash, /etc/apt)
 • Try to find symbolic links to usually unavailable directories
 • Or, attempt to write to a directory where that usually wouldn’t be possible 

pub.dev 中有 2 個插件可以為您完成這項工作。

https://pub.dev/packages/flutter_jailbreak_detection https://pub.dev/packages/trust_fall

They both utilize existing native libs Rootbeer https://github.com/scottyab/rootbeer for Android and DTTJailbreakDetection https://github.com/thii/DTTJailbreakDetection for iOs,

所以你可以考慮將它們直接連接到你的項目中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM