flutter_tamper_detector 0.0.1
flutter_tamper_detector: ^0.0.1 copied to clipboard
flutter_tamper_detector is a Flutter security plugin that detects rooting, hooking tools like Frida and Xposed, or emulators, allowing you to block execution or exit the app.
flutter_tamper_detector #
flutter_tamper_detector is a Flutter security plugin designed to detect and prevent application tampering. It checks if the device is rooted, if tools like Frida, Xposed, or Cydia Substrate are being used, or if the app is running on an emulator. With this information, you can implement security measures in your Flutter app, such as terminating the application or blocking execution.
Getting Started #
$ flutter pub add flutter_tamper_detector
or add in your dependencies
dependencies:
flutter_tamper_detector: <latest>
Usage #
Simple and easy to use!
import 'package:flutter_tamper_detector/flutter_tamper_detector.dart';
Now just use the functions directly with our main class FlutterTamperDetector
:
bool isEmulator = await FlutterTamperDetector.isEmulator();
bool isRooted = await FlutterTamperDetector.isRooted();
bool isHooked = await FlutterTamperDetector.isHooked();
Then you can make some decision in your app according to your needs, for example, exit the app if it is running on a rooted device.
Future<void> checkIfRootedAndExit() async {
bool isRooted = await FlutterTamperDetector.isRooted();
if (isRooted) {
print('Device is rooted, exiting the app...');
exit(0);
} else {
print('Device is not rooted.');
}
}
See more details in the example section
How test #
1 - Run on a emulator
2 - Run on a device rooted (ex with magisk)
3 - Run on a device that has frida on it, for example, you can test this by following the official frida documentation, after completing the steps described there, run the application.
Don't worry, after that you will be able to remove Frida from your device.