{"id":13574286,"url":"https://github.com/open-obfuscator/o-mvll","last_synced_at":"2025-05-15T08:08:59.786Z","repository":{"id":62380232,"uuid":"544334029","full_name":"open-obfuscator/o-mvll","owner":"open-obfuscator","description":":electron: O-MVLL is a code obfuscator based on LLVM for native code (Android \u0026 iOS)","archived":false,"fork":false,"pushed_at":"2025-03-28T11:35:47.000Z","size":1659,"stargazers_count":686,"open_issues_count":17,"forks_count":75,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-04-07T04:05:03.379Z","etag":null,"topics":["android","ios","llvm","obfuscator","obfuscator-llvm"],"latest_commit_sha":null,"homepage":"https://obfuscator.re/omvll","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/open-obfuscator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-02T07:57:40.000Z","updated_at":"2025-04-05T21:28:44.000Z","dependencies_parsed_at":"2024-04-03T11:25:08.127Z","dependency_job_id":"d3c9d88a-ee97-424d-aa6d-b91635791e6b","html_url":"https://github.com/open-obfuscator/o-mvll","commit_stats":{"total_commits":105,"total_committers":8,"mean_commits":13.125,"dds":0.638095238095238,"last_synced_commit":"7644a56381ce0df88229e606f7f7f783f977b399"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-obfuscator%2Fo-mvll","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-obfuscator%2Fo-mvll/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-obfuscator%2Fo-mvll/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open-obfuscator%2Fo-mvll/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/open-obfuscator","download_url":"https://codeload.github.com/open-obfuscator/o-mvll/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248889959,"owners_count":21178331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","ios","llvm","obfuscator","obfuscator-llvm"],"created_at":"2024-08-01T15:00:49.704Z","updated_at":"2025-04-14T13:41:35.972Z","avatar_url":"https://github.com/open-obfuscator.png","language":"C++","funding_links":[],"categories":["C++"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n  \u003ca href=\"https://obfuscator.re/omvll\"\u003e\n    \u003cimg src=\".github/img/banner.webp\" alt=\"O-MVLL\" width=\"100%\"\u003e\n  \u003c/a\u003e\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n  \u003ca href=\"https://build38.com/\"\u003e\n    \u003cimg src=\".github/img/build38.webp\" alt=\"Build38\" width=\"100%\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/open-obfuscator/o-mvll\"\u003e\n  \u003c/a\u003e\n  \u0026nbsp;\n  \u003ca href=\"https://github.com/open-obfuscator/o-mvll/actions/workflows/ndk.yml\"\u003e\n    \u003cimg alt=\"Android NDK\" src=\"https://github.com/open-obfuscator/o-mvll/actions/workflows/ndk.yml/badge.svg?branch=main\"\u003e\n  \u003c/a\u003e\n  \u0026nbsp;\n  \u003ca href=\"https://github.com/open-obfuscator/o-mvll/actions/workflows/xcode.yml\"\u003e\n    \u003cimg alt=\"Xcode Toolcahin\" src=\"https://github.com/open-obfuscator/o-mvll/actions/workflows/xcode.yml/badge.svg?branch=main\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# O-MVLL\n\nO-MVLL (in reference to [O-LLVM](https://github.com/obfuscator-llvm/obfuscator)) is a LLVM-based obfuscator\ndriven by Python and the LLVM pass manager. It can be run as follows:\n\n```bash\nclang++ -fpass-plugin=libOMVLL.dylib main.cpp -o main\n```\n\n```python\nimport omvll\n\nclass MyConfig(omvll.ObfuscationConfig):\n    def __init__(self):\n        super().__init__()\n\n    def flatten_cfg(self, mod: omvll.Module, func: omvll.Function):\n        if func.name == \"check_password\":\n            return True\n        return False\n```\n\n\u003cimg src=\".github/img/omvll-pipeline.webp\" alt=\"O-MVLL Pipeline\" width=\"100%\"\u003e\n\nO-MVLL can be used with the Android NDK and an iOS toolchain. It currently supports AArch64 and ARM architectures.\n\nFor more details, please check out the documentation at [obfuscator.re/omvll](https://obfuscator.re/omvll).\n\n### Download\n\n- [Official releases](https://github.com/open-obfuscator/o-mvll/releases)\n- [Experimental builds](https://open-obfuscator.build38.io/ci/index.html)\n\n### Contact\n\nFeel free to reach out at `ping@obfuscator.re` for any doubt, issue, bug you may encounter.\n\n#### Maintainers\n\n- [Build38: The Next-Gen Mobile App Security Platform](https://build38.com/)\n\n#### Author\n\n- [Romain Thomas](https://www.romainthomas.fr): [@rh0main](https://twitter.com/rh0main) (`me@romainthomas.fr`)\n\n#### Credits\n\n- [LLVM](https://llvm.org/)\n- [obfuscator-llvm](https://github.com/obfuscator-llvm/obfuscator)\n- [obfuscator-llvm](https://github.com/eshard/obfuscator-llvm) from [eShard](https://eshard.com/)\n- [Hikari](https://github.com/HikariObfuscator/Hikari)\n- [DragonFFI](https://github.com/aguinet/dragonffi)\n\n### License\n\nO-MVLL is released under the same License as LLVM: [Apache License, Version 2.0](./LICENSE).\n\nThis project is partly funded by the EU and the European Cybersecurity Competence Center.\n\n\u003cdiv style=\"display: flex; gap: 0px; padding: 10px;\"\u003e\n    \u003cimg src=\".github/img/eu.jpg\" alt=\"EU Co-funding Logo\" style=\"height: 50px; width: auto;\"\u003e\n    \u003cimg src=\".github/img/eccc.png\" alt=\"ECCC Logo\" style=\"height: 50px; width: auto; background-color: white;\"\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-obfuscator%2Fo-mvll","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopen-obfuscator%2Fo-mvll","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopen-obfuscator%2Fo-mvll/lists"}