flutter_tamper_detector 0.0.1 copy "flutter_tamper_detector: ^0.0.1" to clipboard
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.

Star on GitHub

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
copied to clipboard

or add in your dependencies

dependencies:
  flutter_tamper_detector: <latest>
copied to clipboard

Usage #

Simple and easy to use!

import 'package:flutter_tamper_detector/flutter_tamper_detector.dart';
copied to clipboard

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();
copied to clipboard

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.');
    }
  }
copied to clipboard

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.

8
likes
0
points
573
downloads

Publisher

verified publisherdeebx.tech

Weekly Downloads

2024.09.16 - 2025.03.31

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.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_tamper_detector