Python 技术篇 - 通过pyminifier库实现源码压缩、混淆、加密保护实例演示,pyminifier的使用方法

本文涉及的产品
密钥管理服务KMS,1000个密钥,100个凭据,1个月
简介: Python 技术篇 - 通过pyminifier库实现源码压缩、混淆、加密保护实例演示,pyminifier的使用方法

   

源代码如下:

image.png

参数 -O :混淆所有函数/方法名、变量和类。默认是不要混淆。

我这里使用参数 -O 进行源码混淆。

image.png

如果运行时报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 54: illegal multibyte sequence

可以查看解决方法:

Python 技术篇 - 修改 pyminifier 库源码解决编码不一致导致的报错问题

转换后生成新文件,minified 文件夹里也是转化后的内容,这个是默认生成的,通过参数 -d 可以进行指定。

image.png

可以看到方法和变量名都被改了,而且注释也被默认去掉了,这样就一定程度上提高了我们源代码的安全性。

当然默认会被编码为 gbk ,如需调整可以自行转化一下文件编码。

image.png

pyminifier 详细命令方法如下:

pyminifier -h
Usage: pyminifier [options] "<input file>"
Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -o <file path>, --outfile=<file path>
                        Save output to the given file.
  -d <file path>, --destdir=<file path>
                        Save output to the given directory. This option is
                        required when handling multiple files. Defaults to
                        './minified' and will be created if not present.
                        将输出保存到给定的目录。当处理多个文件时,此选项是必需的。默认为'./minified',如果不存在,将被创建。
  --nominify            Don't bother minifying (only used with --pyz).
  --use-tabs            Use tabs for indentation instead of spaces.
              使用制表符代替空格来缩进。
  --bzip2               bzip2-compress the result into a self-executing python
                        script.  Only works on stand-alone scripts without
                        implicit imports.
                        以bzip2方式压缩将结果到一个自动执行的python脚本中。只能在独立脚本上工作,不需要隐式导入。
  --gzip                gzip-compress the result into a self-executing python
                        script.  Only works on stand-alone scripts without
                        implicit imports.
                        以gzip方式压缩结果到一个自执行的python脚本中。只能在独立脚本上工作,不需要隐式导入。
  --lzma                lzma-compress the result into a self-executing python
                        script.  Only works on stand-alone scripts without
                        implicit imports.
            以lzma方式压缩将结果到一个自动执行的python脚本中。只能在独立脚本上工作,不需要隐式导入。
  --pyz=<name of archive>.pyz
                        zip-compress the result into a self-executing python
                        script. This will create a new file that includes any
                        necessary implicit (local to the script) modules.
                        Will include/process all files given as arguments to
                        pyminifier.py on the command line.
  -O, --obfuscate       Obfuscate all function/method names, variables, and
                        classes.  Default is to NOT obfuscate.
  --obfuscate-classes   Obfuscate class names.
  --obfuscate-functions
                        Obfuscate function and method names.
  --obfuscate-variables
                        Obfuscate variable names.
  --obfuscate-import-methods
                        Obfuscate globally-imported mouled methods (e.g.
                        'Ag=re.compile').
  --obfuscate-builtins  Obfuscate built-ins (i.e. True, False, object,
                        Exception, etc).
  --replacement-length=1
                        The length of the random names that will be used when
                        obfuscating identifiers.
  --nonlatin            Use non-latin (unicode) characters in obfuscation
                        (Python 3 only).  WARNING: This results in some
                        SERIOUSLY hard-to-read code.
  --prepend=<file path>
                        Prepend the text in this file to the top of our
                        output.  e.g. A copyright notice.

喜欢的点个赞❤吧!

           

目录
相关文章
|
6天前
|
算法 安全 数据安全/隐私保护
Crypto++库支持多种加密算法
【10月更文挑战第29天】Crypto++库支持多种加密算法
27 4
|
22天前
|
安全 Linux 数据安全/隐私保护
python知识点100篇系列(15)-加密python源代码为pyd文件
【10月更文挑战第5天】为了保护Python源码不被查看,可将其编译成二进制文件(Windows下为.pyd,Linux下为.so)。以Python3.8为例,通过Cython工具,先写好Python代码并加入`# cython: language_level=3`指令,安装easycython库后,使用`easycython *.py`命令编译源文件,最终生成.pyd文件供直接导入使用。
python知识点100篇系列(15)-加密python源代码为pyd文件
|
28天前
|
数据安全/隐私保护 Python
Zipfile学习笔记(二)::通过zipfile模块暴力破解加密的压缩文件
如何使用Python的zipfile模块生成密码表并尝试暴力破解加密的ZIP压缩文件。
32 1
Zipfile学习笔记(二)::通过zipfile模块暴力破解加密的压缩文件
|
6天前
|
测试技术 API 数据安全/隐私保护
Python连接到Jira实例、登录、查询、修改和创建bug
通过使用Python和Jira的REST API,可以方便地连接到Jira实例并进行各种操作,包括查询、修改和创建Bug。`jira`库提供了简洁的接口,使得这些操作变得简单易行。无论是自动化测试还是开发工作流的集成,这些方法都可以极大地提高效率和准确性。希望通过本文的介绍,您能够更好地理解和应用这些技术。
32 0
|
1月前
|
Python
Python中的push方法详解与实例
Python中的push方法详解与实例
|
28天前
|
数据安全/隐私保护 Python
python学习十一:python常用模块使用,如 加密模块pyarmor,时间模块time等
这篇文章介绍了Python中两个常用模块的使用:加密模块pyarmor用于保护代码,以及时间模块time用于处理时间相关的功能。
40 0
|
1月前
|
数据可视化 Python
Python绘制基频曲线——实例解析与应用探讨
Python绘制基频曲线——实例解析与应用探讨
|
1月前
|
数据安全/隐私保护 Python
Python中的MD5加密“解密”
Python中的MD5加密“解密”
|
1月前
|
Python 容器
AutoDL Python实现 自动续签 防止实例过期释放 小脚本 定时任务 apscheduler requests
AutoDL Python实现 自动续签 防止实例过期释放 小脚本 定时任务 apscheduler requests
24 0
|
1月前
|
安全 测试技术 Go
Python 和 Go 实现 AES 加密算法的技术详解
Python 和 Go 实现 AES 加密算法的技术详解
63 0

热门文章

最新文章