Apktool VS Metasploit

Compare Apktool vs Metasploit and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Apktool Metasploit
64 117
18,797 32,701
- 1.1%
9.1 10.0
1 day ago 4 days ago
Java Ruby
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Apktool

Posts with mentions or reviews of Apktool. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-03.
  • Understanding security in React Native applications
    9 projects | dev.to | 3 Apr 2024
    App tampering and repackaging can be performed by using reverse engineering or tampering tools, such as Apktool, dex2jar, etc.
  • Wearmodder Auto - Automatically scalling sideloaded apps for WearOS
    5 projects | /r/WearOS | 9 Dec 2023
    Apktool made by iBotPeaches, this uses v2.9.1
  • Getting Started, How to pirate on Pico 4 ?
    2 projects | /r/PicoPiracy | 4 Dec 2023
    Can someone clarify what "PP tools" are, and provide a link to them? I came across this link (https://apktool.org/) but I'm not sure if it's the right tool.
  • Reverse Engineering the Facebook Messenger API
    2 projects | news.ycombinator.com | 8 Apr 2023
    Not sure. I started reverse engineering Java apps very early in my life — initially it was J2ME games. Decompilers of the time sucked but that didn't stop me from modding Gravity Defied :P

    I honestly don't know what's a good way of getting started on reverse engineering. There's a bunch of everything about Windows executables in particular, including "crackmes", but native machine code is a level up from JVM bytecode. Java classes and Android dex files can be decompiled back to sensible source with a good chance that you get something that can be compiled again. No such luck for native code — C/C++ compilation is a lossy process by its nature, especially the optimizations. Ghidra does a decent job but still requires a non-zero amount of manual assistance. Flash games also were good to hone one's reverse engineering skills since ActionScript decompilers did a pretty darn good job.

    Anyway. To decompile dex to Java source, there's jadx: https://github.com/skylot/jadx

    Since decompilation is sometimes lossy, there's apktool for when you want to put the app back together after tinkering with it: https://github.com/iBotPeaches/Apktool

    It goes without saying that you also need a JDK and the Android SDK. In particular, you need apksigner form the SDK to sign the unsigned apks generated by apktool. You can also automate things a bit and use adb to deploy them to your device.

    What I usually do is get a high-level overview of the app in jadx, and then modify the smali (dalvik bytecode in text form, very assembly-like) files generated by apktool.

  • Any legit cracking tutorial?
    2 projects | /r/ApksApps | 13 Feb 2023
    apktool: Decompile any app into smali, modify it and recompile it back. Here you do not need to edit smali, the JavaScript bundle is inside the assets folder.
  • apk.sh, make reverse engineering Android apps easier!
    4 projects | /r/androiddev | 13 Dec 2022
    apk.sh basically uses apktool to disassemble, decode and rebuild resources and some bash to automate the frida gadget injection process. It also supports app bundles/split APKs.
  • The Xbox App for Android TV (not the Game Pass)
    3 projects | /r/AndroidTV | 7 Nov 2022
  • Is there a way to decompile and rebundle an android bundle?
    2 projects | /r/androiddev | 29 Sep 2022
    Apktool can unpack and repack an apk. https://ibotpeaches.github.io/Apktool/
  • how to modify tiktok app
    2 projects | /r/androiddev | 17 Jul 2022
    Then decompile the apk. Use https://ibotpeaches.github.io/Apktool/ or similar. You have to decompile it with resources to smali. Smali is a programming language which looks like java binary code.
  • Use ApkTool to inspect your APK file when building for Android
    2 projects | /r/reactnative | 15 May 2022
    I wasn't aware of apkTool before today. Randomly google removed our app from the store because we included the android.permission.QUERY_ALL_PACKAGES permission. It wasn't anywhere in our code so i assumed it was in a dependency but wasn't sure. Searching in VsCode didn't turn up anything.

Metasploit

Posts with mentions or reviews of Metasploit. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-01.
  • Best Hacking Tools for Beginners 2024
    5 projects | dev.to | 1 Feb 2024
    Metasploit
  • Metasploit explained for pentesters
    4 projects | dev.to | 1 Dec 2023
    msf6 > use auxiliary/scanner/smb/smb_ms17_010 msf6 auxiliary(scanner/smb/smb_ms17_010) > options Module options (auxiliary/scanner/smb/smb_ms17_010): Name Current Setting Required Description ---- --------------- -------- ----------- CHECK_ARCH true no Check for architecture on vulnerable hosts CHECK_DOPU true no Check for DOUBLEPULSAR on vulnerable hosts CHECK_PIPE false no Check for named pipe on vulnerable hosts NAMED_PIPES /usr/share/metasploit-framework/data/wordl yes List of named pipes to check ists/named_pipes.txt RHOSTS yes The target host(s), see https://github.com/rapid7/metasploit-framework/wiki/U sing-Metasploit RPORT 445 yes The SMB service port (TCP) SMBDomain . no The Windows domain to use for authentication SMBPass no The password for the specified username SMBUser no The username to authenticate as THREADS 1 yes The number of concurrent threads (max one per host)
    4 projects | dev.to | 1 Dec 2023
  • Effective Adversary Emulation
    3 projects | dev.to | 27 Nov 2023
    Metasploit: https://github.com/rapid7/metasploit-framework
  • Hacking from anywhere
    3 projects | /r/Hacking_Tutorials | 11 Oct 2023
    1-) Learn Hacking on a debian based distro like Kali Linux - I personally started with tools like nikto, camhacker... and then moved to more complex frameworks like metasploit.
  • Hackers Tools: Must-Have Tools for Every Ethical Hacker
    2 projects | dev.to | 29 May 2023
    Metasploit Framework (mentioned earlier)
  • I watched a video of Mr. Robot programming a script. As I watch the script, the syntax is reminiscent of the Ruby language, and it really is.
    2 projects | /r/ruby | 24 May 2023
    It's using the metasploit framework https://github.com/rapid7/metasploit-framework
  • The 36 tools that SaaS can use to keep their product and data safe from criminal hackers (manual research)
    18 projects | /r/SaaS | 22 May 2023
    Metasploit
  • Why are there so many Rails related posts here?
    6 projects | /r/ruby | 7 May 2023
    This is something that kind of annoys me; there's even a /r/rails sub-reddit specifically for Ruby on Rails stuff. Understandably Rails helped put Ruby on the map. Before Rails, Ruby was just another fringe language. Rails became massively popular, helped many startups quickly build their Web 2.0 sites, and become successful companies (ex: GitHub, LinkedIn, AirBnB, etc). Like others have said, "Rails is where the money is at". However, this posses a problem for the Ruby community: whenever Rails becomes less popular, so does Ruby. I wish the Ruby ecosystem wasn't so heavily centralized around Rails, and that we diversified our uses of Ruby a bit. There's of course Sinatra, dry-rb, Hanami, Dragon Ruby, SciRuby, and a dozen security tools written in Ruby such as Metasploit, BeFF, Arachni, and Ronin.
  • Pentesting Tools I Use Everyday
    8 projects | dev.to | 7 Feb 2023
    Learn more about Metasploit here: https://www.metasploit.com/

What are some alternatives?

When comparing Apktool and Metasploit you can also consider the following projects:

BeEF - The Browser Exploitation Framework Project

jadx - Dex to Java decompiler

dex2jar - Tools to work with android .dex and java .class files

Covenant - Covenant is a collaborative .NET C2 framework for red teamers.

routersploit - Exploitation Framework for Embedded Devices [Moved to: https://github.com/threat9/routersploit]

SQLMap - Automatic SQL injection and database takeover tool

bettercap - The Swiss Army knife for 802.11, BLE, IPv4 and IPv6 networks reconnaissance and MITM attacks.

Brakeman - A static analysis security vulnerability scanner for Ruby on Rails applications

Uber Apk Signer - A cli tool that helps signing and zip aligning single or multiple Android application packages (APKs) with either debug or provided release certificates. It supports v1, v2 and v3 Android signing scheme has an embedded debug keystore and auto verifies after signing.

thc-hydra - hydra

Rack::Attack - Rack middleware for blocking & throttling

pwntools - CTF framework and exploit development library