open-obfuscator / o-mvll

:electron: O-MVLL is a LLVM-based obfuscator for native code (Android & iOS)

Home Page:https://obfuscator.re/omvll

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



O-MVLL

Build38

  Android NDK   Xcode Toolcahin

O-MVLL

O-MVLL (in reference to O-LLVM) is a LLVM-based obfuscator driven by a Python API and by new LLVM pass manager:

clang++ -fpass-plugin=omvll.so main.cpp -o main
import omvll

class MyConfig(omvll.ObfuscationConfig):
    def __init__(self):
        super().__init__()

    def flatten_cfg(self, mod: omvll.Module, func: omvll.Function):
        if func.name == "check_password":
            return True
        return False

O-MVLL Pipeline

O-MVLL can be used with the Android NDK and an iOS toolchain but it only supports the AArch64 architecture.

For the details, you can checkout the documentation: obfuscator.re/omvll

Download

Contact

You can reach out by email at this address: ping@obfuscator.re

Maintainers

Author

Credits

License

O-MVLL is released under the same License as LLVM: Apache License, Version 2.0

About

:electron: O-MVLL is a LLVM-based obfuscator for native code (Android & iOS)

https://obfuscator.re/omvll

License:Apache License 2.0


Languages

Language:C++ 75.8%Language:C 8.7%Language:Shell 6.4%Language:CMake 4.1%Language:Python 3.3%Language:LLVM 1.0%Language:Dockerfile 0.7%