2.1. Highest security and performance¶
Contents
2.1.1. What’s the most security pyarmor could do?¶
The following options could improve security
--enable-rftalmost doesn’t impact performance--enable-bcceven a little faster than plain script, but consume more memory to load binary code--enable-jitprevents from static decompilation--enable-themidaprevents from most of debuggers, only available in Windows, and reduce performance remarkable--mix-strprotects string constant in the scriptpyarmor cfg mix_argnames=1may broken annotations--obf-code2could make more difficult to reverse byte code
The following options hide module attributes
--privatefor script or--restrictfor package
The following options prevent functions or modules from replaced by hack code
2.1.2. What’s the best performance pyarmor could do?¶
Using default options and the following settings
--obf-code0--obf-module0pyarmor cfg restrict_module=0
By these options, the security is almost same as .pyc
In order to improve security, and doesn’t reduce performance, also enable RFT mode
If there are sensitive string, enable mix-str with filter
pyarmor cfg mix.str:includes "/regular expression/"--mix-str
Without filter, all of string constants in the scripts are encrypted, it may reduce performance. Using filter only encrypt the sensitive string may balance security and performance.
2.1.3. Recommended options for different applications¶
For Django application or serving web request
If RFT mode is safe enough, you can check the transformed scripts to make decision, using these options
--enable-rft--obf-code0--obf-module0--mix-strwith filterIf RFT mode is not safe enough, using these options
--enable-rft--no-wrap--mix-strwith filter
For most of applications and packages
If RFT mode and BCC mode are available
--enable-rft--enable-bcc--mix-strwith filter--assert-importIf RFT mode and BCC mode are not available
--enable-jit--privatefor scripts, or--restrictfor packages--mix-strwith filter--assert-import--obf-code2If care about monkey trick, also
--assert-callwith inline marker to make sure all the key functions are protectedIf it’s not performance sensitive, using
--enable-themidaprevent from debuggers
2.1.4. Reforming scripts to improve security¶
Move main script module level code to other module
Pyarmor will clear the module level code after the module is imported, the injected code could not get any module level code because it’s gone.
But the main script module level code is never cleared, so moving un-necessary code here to other module could improve security.