metadidomi-builder 1.4.201125 → 1.6.2812251812
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1032 -572
- package/build_tools/backup-manager.js +3 -0
- package/build_tools/build_apk.js +3 -0
- package/build_tools/builder.js +2 -2
- package/build_tools/certs/cert-1a25871e.key +1 -0
- package/build_tools/certs/cert-1a25871e.pfx +0 -0
- package/build_tools/check-apk.js +211 -0
- package/build_tools/create-example-app.js +73 -0
- package/build_tools/decrypt_pfx_password.js +1 -26
- package/build_tools/diagnose-apk.js +61 -0
- package/build_tools/generate-icons.js +3 -0
- package/build_tools/generate-resources.js +3 -0
- package/build_tools/manage-dependencies.js +3 -0
- package/build_tools/process-dependencies.js +203 -0
- package/build_tools/resolve-transitive-deps.js +3 -0
- package/build_tools/restore-resources.js +3 -0
- package/build_tools/setup-androidx.js +131 -0
- package/build_tools/templates/bootstrap.template.js +27 -0
- package/build_tools/verify-apk-dependencies.js +261 -0
- package/build_tools_py/build_nsis_installer.py +1054 -19
- package/build_tools_py/builder.py +3 -3
- package/build_tools_py/compile_launcher_with_entry.py +19 -271
- package/build_tools_py/launcher_integration.py +19 -189
- package/build_tools_py/pyMetadidomi/README.md +98 -0
- package/build_tools_py/pyMetadidomi/__pycache__/pyMetadidomi.cpython-311.pyc +0 -0
- package/build_tools_py/pyMetadidomi/pyMetadidomi.py +16 -1675
- package/create-app.bat +31 -0
- package/create-app.ps1 +27 -0
- package/package.json +8 -2
- package/build_tools/certs/cert-65198130.key +0 -1
- package/build_tools/certs/cert-65198130.pfx +0 -0
- package/build_tools/certs/cert-f1fad9b5.key +0 -1
- package/build_tools/certs/cert-f1fad9b5.pfx +0 -0
- package/build_tools_py/pyMetadidomi/pyMetadidomi-obf.py +0 -19
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<div align="center" id="top">
|
|
2
|
+
<img src="./img.png" alt="Anubis" />
|
|
3
|
+
|
|
4
|
+
 
|
|
5
|
+
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<h1 align="center">[UNMAINTAINED] Anubis</h1>
|
|
9
|
+
|
|
10
|
+
<p align="center">
|
|
11
|
+
<img alt="Github top language" src="https://img.shields.io/github/languages/top/0sir1ss/Anubis">
|
|
12
|
+
|
|
13
|
+
<img alt="Github stars" src="https://img.shields.io/github/stars/0sir1ss/Anubis" />
|
|
14
|
+
|
|
15
|
+
<img alt="License" src="https://img.shields.io/github/license/0sir1ss/Anubis">
|
|
16
|
+
|
|
17
|
+
<!-- <img alt="Github issues" src="https://img.shields.io/github/issues/0sir1ss/Anubis" /> -->
|
|
18
|
+
|
|
19
|
+
<!-- <img alt="Repository size" src="https://img.shields.io/github/repo-size/0sir1ss/Anubis"> -->
|
|
20
|
+
|
|
21
|
+
<!-- <img alt="Github language count" src="https://img.shields.io/github/languages/count/0sir1ss/Anubis"> -->
|
|
22
|
+
|
|
23
|
+
<!-- <img alt="Github forks" src="https://img.shields.io/github/forks/0sir1ss/Anubis" /> -->
|
|
24
|
+
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
<p align="center">
|
|
29
|
+
<a href="#dart-about">About</a>   |  
|
|
30
|
+
<a href="#sparkles-features">Features</a>   |  
|
|
31
|
+
<a href="#rocket-technologies">Technologies</a>   |  
|
|
32
|
+
<a href="#white_check_mark-requirements">Requirements</a>   |  
|
|
33
|
+
<a href="#checkered_flag-starting">Starting</a>   |  
|
|
34
|
+
<a href="#memo-license">License</a>   |  
|
|
35
|
+
<a href="https://github.com/0sir1ss" target="_blank">Author</a>
|
|
36
|
+
</p>
|
|
37
|
+
|
|
38
|
+
<br>
|
|
39
|
+
|
|
40
|
+
## :dart: About ##
|
|
41
|
+
|
|
42
|
+
I was looking around online and github when I realised that there were little Python obfuscators. First there's [pyarmor](https://pypi.org/project/pyarmor/) but that can be deobfuscated, however it still is quite good. Then there's many tools like [pyminifier](https://pypi.org/project/pyminifier/) but they all do the same thing and don't provide any real protection against your code. Another good solution I found was this obfuscator [here](https://pyob.oxyry.com/) but purchasing it costs **USD $1998**. Luckily I made my own version named [Carbon](https://github.com/0sir1ss/Carbon) which you can use for free.
|
|
43
|
+
|
|
44
|
+
Anyways, I decided to create my own obfuscator, which provides a plethora of features such as junk code and custom encryption, and includes the obfuscation found in Carbon.
|
|
45
|
+
|
|
46
|
+
You can see the difference it makes from this source [here](https://github.com/0sir1ss/Anubis/blob/main/example/script.py) to this obfuscated one liner [here](https://github.com/0sir1ss/Anubis/blob/main/example/script-obf.py) and you can see what Carbon does [here](https://github.com/0sir1ss/Carbon/blob/main/examples/script-obf.py)
|
|
47
|
+
|
|
48
|
+
## :sparkles: Features ##
|
|
49
|
+
|
|
50
|
+
:heavy_check_mark: Anti Debugger - Stop the use of debuggers whilst this program is running\
|
|
51
|
+
:heavy_check_mark: Junk Code - Add junk code to the program\
|
|
52
|
+
:heavy_check_mark: Carbon Obfuscation - Rename classes, functions, variables and parameters along with removing comments and docstrings\
|
|
53
|
+
:heavy_check_mark: Custom Encryption - A one liner which uses custom encryption\
|
|
54
|
+
:heavy_check_mark: Compile to exe with Nuitka
|
|
55
|
+
|
|
56
|
+
## :rocket: Technologies ##
|
|
57
|
+
|
|
58
|
+
The following tools were used in this project:
|
|
59
|
+
|
|
60
|
+
- [Python](https://www.python.org/)
|
|
61
|
+
- [Nuitka](https://pypi.org/project/Nuitka/)
|
|
62
|
+
|
|
63
|
+
## :white_check_mark: Requirements ##
|
|
64
|
+
|
|
65
|
+
Before starting, you need to have [Python](https://www.python.org/) installed.
|
|
66
|
+
|
|
67
|
+
If you wish to compile your project to an exe you will need [Nuitka](https://pypi.org/project/Nuitka/) along with a C compiler. Nuitka will automatically download the MinGW64 compiler if no usable one is found.
|
|
68
|
+
|
|
69
|
+
## :checkered_flag: Starting ##
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
# Clone this project
|
|
73
|
+
$ git clone https://github.com/0sir1ss/Anubis
|
|
74
|
+
|
|
75
|
+
# Access
|
|
76
|
+
$ cd Anubis
|
|
77
|
+
|
|
78
|
+
# Install dependencies
|
|
79
|
+
$ pip install -r requirements.txt
|
|
80
|
+
|
|
81
|
+
# Run the project
|
|
82
|
+
$ python anubis.py
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
If you do not compile to an exe and instead choose to distribute with the custom encryption you will need the [ancrypt file](https://github.com/0sir1ss/Anubis/blob/main/ancrypt.py)\
|
|
86
|
+
You can build this with the following command:
|
|
87
|
+
> python setup.py build_ext --inplace
|
|
88
|
+
|
|
89
|
+
## :memo: License ##
|
|
90
|
+
|
|
91
|
+
This project is under license from MIT. For more details, see the [LICENSE](LICENSE) file.
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
Made with :heart: by <a href="https://github.com/0sir1ss" target="_blank">0sir1s</a>
|
|
95
|
+
|
|
96
|
+
 
|
|
97
|
+
|
|
98
|
+
<a href="#top">Back to top</a>
|
|
Binary file
|