Cython加密python代码防止反编译

cython,加密,python,代码,防止,反编译 · 浏览次数 : 23

小编点评

**安装库:** ```bash # 安装 Cython pip3 pip3 install Cython==3.0.0a10 ``` **编写待加密文件:** ```python # hello.py import random def ac(): i = random.randint(0, 5) if i > 2: print('success') else: print('failure') ``` **编写加密脚本:** ```python import osimport globfrom distutils.core import setupfrom Cython.Build import cythonize # 需要加密的py文件路径 path_list = ['/opt/test/te', '/opt/test'] # 移除的py文件路径 reduce_list = ['setup.py'] # 遍历每个py文件 py_files = [] for path in path_list: for root, dirs, files in os.walk(path): for file in glob.glob(os.path.join(root, '*.py')): for rds in reduce_list: if rds not in file: py_files.append(file) # 使用Cython将py文件编译为可执行库 setup(ext_modules=cythonize(py_files), language_level=3) ``` **执行加密命令:** ```bash # 执行 Cython编译 python3 setup.py build_ext --inplace # 执行加密 python3 setup.py build_ext --inplace ``` **执行结果:** * 生成一个名为 `hello.cpython-38-x86_64-linux-gnu.so` 的可执行库文件。 * 该库文件仅包含 `hello.c` 的源代码,并以 `hello.so` 的格式命名。 * 确保生成的 `hello.so` 文件与原始 `hello.py` 文件同名,且为 `.so` 格式。 **使用方式:** 1. 将 `hello.py` 的代码保存为 `hello.py` 文件。 2. 创建一个名为 `path_list` 的文件,其中包含要加密的py文件的路径。 3. 创建一个名为 `reduce_list` 的文件,其中包含要移除的py文件路径。 4. 创建一个名为 `setup.py` 的文件,并包含以下代码: ```python from osimport import globfrom distutils.core import setupfrom Cython.Build import cythonize # 设置 Cython编译选项 setup(ext_modules=cythonize(glob.glob(os.path.join(path_list, '*.py'))), language_level=3) ``` 5. 执行加密命令:`python3 setup.py build_ext --inplace`。 6. 运行程序:`python3 hello.py`。

正文

本方法适用于Linux环境下:

1.安装库Cython

pip3 install Cython==3.0.0a10

 

2.编写待加密文件:hello.py

import random

def ac():
    i = random.randint(0, 5)
    if i > 2:
        print('success')
    else:
        print('failure')

 

3.编写加密脚本

import os
import glob
from distutils.core import setup
from Cython.Build import cythonize
# 需要加密py文件所在文件夹,批量加密
path_list = ["/opt/test/te", "/opt/test"]
# 需要去除的py文件
reduce_list = ["setup.py"]
py_files = []
for path in path_list:
    for root, dirs, files in os.walk(path):
        for file in glob.glob(os.path.join(root, "*.py")):
            for rds in reduce_list:
                if rds not in file:
                    py_files.append(file)

setup(ext_modules=cythonize(py_files), language_level=3)

 

4.执行加密命令

python3 setup.py build_ext --inplace

 

5.执行结果:会生成build文件夹、同名.c文件和同名.so文件,其中.so文件是我们需要的文件,只保留.so文件,其余的全部删除

生成的文件名为 hello.cpython-38-x86_64-linux-gnu.so 可以把他重命名为hello.so, 只要保证跟原文件同名,且为.so格式即可

 

6.使用方式:与Python导包保持一致 from hello import ac

安全性:.so文件反编译后变成c语言,几乎不容易再变回原来的python代码。

 

与Cython加密python代码防止反编译相似的内容:

Cython加密python代码防止反编译

本方法适用于Linux环境下: 1.安装库Cython pip3 install Cython==3.0.0a10 2.编写待加密文件:hello.py import random def ac(): i = random.randint(0, 5) if i > 2: print('success

CPython, Pypy, MicroPython...还在傻傻分不清楚?

哈喽大家好,我是咸鱼 当我们说 Python 时,通常指的是官方实现的 CPython 但还有很多比如 Pypy、Jython、MicroPython、Brython、RustPython 等 “python” 许多小伙伴看到这些带 “python” 的概念可能一头雾水,心想这跟我平时接触到的 py

GIL 锁或将在 CPython 中成为可选项

哈喽大家好,我是咸鱼 几天前有媒体报道称,经过多次辩论,Python 指导委员会打算批准通过 PEP 703 提案,**让 GIL(全局解释器)锁在 CPython 中成为一个可选项** PEP 703 提案主要目标是使 GIL 变成可选项,即允许 Python 解释器在特定情况下不使用GIL ![

Python3.7源码编译

1.下载Python3.7.0源码 git clone https://github.com/python/cpython.gitgit checkout v3.7.0 wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz

深入理解Python虚拟机:super超级魔法的背后原理

super 是 Python 面向对象编程当中非常重要的一部分内容,在本篇文章当中详细介绍了 super 内部的工作原理和 CPython 内部部分源代码分析了 super 的具体实现。

正则表达式中 “$” 并不是表示 “字符串结束

作者:Seth Larson 译者:豌豆花下猫@Python猫 英文:Regex character “$” doesn't mean “end-of-string” 转载请保留作者及译者信息! 这篇文章写一写我最近在用 Python 的正则表达式模块(re)开发 CPython 的 SBOM 工具