Reputation: 181
I'm new to Flutter and I'm creating an app in Flutter. Currently I'm going through some of the security points. One of which is "Code Tampering".
How to protect the app from code tampering & code injection? In Native Android, we use to check verify the Release key Signature so that we can avoid code tampering. Is there any plugin or any way to do the same in Flutter? Thanks in advance.
Upvotes: 0
Views: 2582
Reputation: 81
Yes, there is a free RASP (runtime App self-protection) SDK for Flutter that helps to prevent app Tampering, running with Debugger/Emulator/Hooking frameworks, and also Root/JB detection.
https://pub.dev/packages/freerasp
Disclaimer. I am a co-founder of this product so any critics and feedbacks are welcome. :)
NB: you can get inspired by this thread as well: How to protect Flutter app from reverse engineering
Upvotes: 4