farimarwat / maxguard

An android library for android app security agains reverse engineering

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MaxGuard

An android library for android app security against reverse engineering.

MaxGuard is a maximum security layer to protect against reverse engineering via frida. This library tries to detect frida injection and close the app if injection is found.

What is frida

Frida is a super powerful tool to inject android apps to extract sensitive data. It can defeat any kind of encryption even AES. So to secure android app, it is most important to detect frida injection.

Features

  1. Frida Detection
  2. Root Detection

Setup

Implementation

    implementation("io.github.farimarwat:maxguard:1.2")

Usage

override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        MaxGuard()
            .startMaxGuard()
}

About

An android library for android app security agains reverse engineering


Languages

Language:Kotlin 100.0%