We are looking for options to harden our app and need the following
- Obfuscation
- Jailbreak/Root detection
- Hook detection
- Swizzle detection (iOS)
What I found were:
Android - Obfuscation by proguard - Root detection using RootBeer https://github.com/scottyab/rootbeer - Hook detection ?
iOS - Obfuscation by xcode during builds - Jailbreak detection using https://github.com/TheSwiftyCoder/JailBreak-Detection - Hook detection ? - Swizzle detection?
How is hook detection done for iOS and Android.
Also for cordova/flutter apps are there any libraries for Hook detection and general app hardening in general?