Skip to content

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

License

Notifications You must be signed in to change notification settings

stelian42/o-mvll

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



O-MVLL

  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

Contact

You can reach out by email at this address: [email protected]

Maintainers

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)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 89.3%
  • Shell 5.3%
  • CMake 4.9%
  • Python 0.5%