Feb 11, 2020
2 mins read
Pyarmor is a tool that helps you obfuscate your python source code in a jiffy.
pyarmor obfuscate foo.py
This will generate dist
with structure:
dist
├── pytransform
│ ├── __init__.py
│ ├── _pytransform.dylib
│ ├── license.lic
│ └── pytransform.key
└── foo.py
The dist is simply a module that perform exact the same functionality without source code.
By changeing the name of entry file to __main__.py
:
mv foo.py __main__.py
And add a output flag --output
to specify the output dir name:
pyarmor obfuscate --output=foo foo.py
The dist
becomes:
foo
├── pytransform
│ ├── __init__.py
│ ├── _pytransform.dylib
│ ├── license.lic
│ └── pytransform.key
└── __main__.py
Then you can run python foo
, same as python foo.py
with the source code.
pyarmor obfuscate foo.py
to generate code, there is a license.lic
inside dist/pytransform
with no limitation. But running the obfuscated code needs the present of this file. To add more limitation to the license, you can use pyarmor licenses
:pyarmor licenses \
--bind-disk "100304PBN2081SF3NJ5T" \
--bind-mac "20:c1:d2:2f:a0:96" \
--expired 2020-01-01 \
code_name
# then replace the origin license.
cp licenses/code_name/license.lic dist/pytransform/
cd dist/
python foo.py
However, in free trial mode, everyone who knows how to use pyarmor can generate a license himself and replace the original one.
pyarmor obfuscate \
--platform windows.x86_64 \
--platform linux.x86_64 \
--platform darwin.x86_64 \
foo.py
To view the whole supported platform: here
pyarmor obfuscate \
--recursive \
--output dist \
foo.py
_pytransform
a dynamic library generated at obfuscate time.
_pytransform.so
will generate code from function 1 and run it with several protection approach.
Sharing is caring!