Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
MaFrida — A Magisk module that simplifies running the Frida server on Android, with easy management commands to download specific versions, enable or disable the server, and more. | Kitploit
Tools/GitHubGitHub/theshinigami/mafrida
Android SecurityDynamic Analysis (Sandboxing)Dynamic Code Analysis (DAST)Reverse EngineeringPenetration TestingMobile SecurityUtilities & FrameworksRed Teaming
GitHubtheshinigami/mafrida

MaFrida

A Magisk module that simplifies running the Frida server on Android, with easy management commands to download specific versions, enable or disable the server, and more.

View Repository
3841 month agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

MaFrida

A simple yet powerful Magisk module that automates starting the Frida server on boot and provides a convenient command-line interface to manage different Frida versions on Android.

Features

  • Automatically starts frida-server at boot.
  • Easily switch between different Frida versions.
  • Lightweight CLI tool: mafrida, Built-in commands for downloading, starting, killing, and checking the status of frida-server.
  • Enable/Disable frida-server on boot.

Installation

  1. Flash the module via Magisk Manager.
  2. Reboot your device.
  3. Use the mafrida command in a root shell.

Usage

Use the mafrida CLI tool to manage the Frida server:

root@kitploit:~
Usage: mafrida [--set <frida-version> | -g | kill | start | status]
  --set <version>               Set and install the specified Frida version (e.g., 16.1.4)
  -g                            Show the currently set Frida version
  -p, --port <port>             Set server port, default: 27042
  -n, --server-filename <name>  server filename, default: shiny-egg
  download                      Download the frida-server binary for the set version
  kill                          Force kill any running frida-server instance
  start                         Start frida-server using the set version
  status                        Check if frida-server is currently running
  enable                        Enable frida-server to auto-start on boot
  disable                       Disable frida-server from auto-starting on boot

Demo

mafrida_demo

Supported Platforms

  • arm
  • arm64
  • x86
  • x86_64

Examples

Set Frida version:

root@kitploit:~
mafrida --set 16.6.1

Download the binary for the current version:

root@kitploit:~
mafrida download

Start the server:

root@kitploit:~
mafrida start

Check server status:

root@kitploit:~
mafrida status

Kill the running instance:

root@kitploit:~
mafrida kill

Enable frida server on boot

root@kitploit:~
mafrida enable

Disable frida server on boot

root@kitploit:~
mafrida disable

Requirements

  1. Magisk installed
  2. Root access
Download Tool