linux python项目加密混淆

该脚本主要利用Cython对Python项目进行加密,并通过distutils和Cython.Build模块构建扩展。它遍历指定目录下的.py和.pyx文件,排除某些文件,然后进行编译和复制操作。在Ubuntu环境下,需要安装python3-dev和gcc作为依赖。执行python3setup.pybuild_ext后,会生成加密后的项目副本。
摘要由CSDN通过智能技术生成
# author : @sj
# -*- coding:utf-8 -*-
# time : 2023/4/25 16:37
import os
import time
import shutil
from Cython.Distutils import build_ext
from distutils.core import Extension, setup
from Cython.Build import cythonize
from Cython.Compiler import Options

start_time = time.time()
curr_dir = os.path.abspath('.')
# parent_path = sys.argv[1] if len(sys.argv) > 1 else ""
parent_path = 'project_name'
setup_file = os.path.join(os.path.abspath('.'), __file__)

build_dir = "{}_build".format(parent_path)
build_tmp_dir = build_dir + "/{}_temp".format(parent_path)

# 环境 ubuntu
# 依赖
# sudo apt install python3-dev gcc
# pip3 install cython

# Python文件加密 parent_path 项目的目录名字,例如 parent_path = project_name
# setup.py放下根目录下
# 执行 python3 setup.py build_ext
# project_name_build 覆盖掉project_name 执行命令 mv project_name_build ../project_name


def getpy(basepath=os.path.abspath('.'), parentpath='', name='', excepts=(), copyOther=True,delC=False):
    """
    获取py文件的路径
    :param basepath: 根路径
    :param parentpath: 父路径
    :param name: 文件/夹
    :param excepts: 排除文件
    :param copy: 是否copy其他文件
    :return: py文件的迭代器
    """
    fullpath = os.path.join(basepath, parentpath, name)
    for f_name in os.listdir(fullpath):
        ffile = os.path.join(fullpath, f_name)

        if os.path.isdir(ffile) and f_name != build_dir and not f_name.startswith('.'):
            for f in getpy(basepath, os.path.join(parentpath, name), f_name, excepts, copyOther, delC):
                # f = basepath + '/' + f
                yield f.replace('\\', '/')

        elif os.path.isfile(ffile):
            ext = os.path.splitext(f_name)[1]
            if ext == ".c":
                if delC and os.stat(ffile).st_mtime > start_time:
                    os.remove(ffile)
            elif ffile not in excepts and os.path.splitext(f_name)[1] not in('.pyc', '.pyx'):
                if os.path.splitext(f_name)[1] in('.py', '.pyx') and not f_name.startswith('__'):
                    yield os.path.join(parentpath, name, f_name)
                elif copyOther:
                        dstdir = os.path.join(basepath, build_dir, parentpath, name)
                        if not os.path.isdir(dstdir): os.makedirs(dstdir)
                        shutil.copyfile(ffile, os.path.join(dstdir, f_name))
        else:
            pass


if __name__ == '__main__':
    module_list = list(getpy(basepath=curr_dir,parentpath=parent_path, excepts=(setup_file)))
    try:
        setup(ext_modules=cythonize(module_list),script_args=["build_ext", "-b", build_dir, "-t", build_tmp_dir])
    except Exception as e:
        print(f'error {e}')
    else:
        module_list = list(getpy(basepath=curr_dir, parentpath=parent_path, excepts=(setup_file), copyOther=True))
    module_list = list(getpy(basepath=curr_dir, parentpath=parent_path, excepts=(setup_file), delC=True))
    if os.path.exists(build_tmp_dir):
        shutil.rmtree(build_tmp_dir)
    print('end')



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Linux 下安装 PyConcrete 加密 Python 代码的步骤如下: 1. 安装 Python 和 pip PyConcrete 是一个 Python 模块,因此需要安装 Python 和 pip。在 Ubuntu 上,可以使用以下命令安装: ``` sudo apt update sudo apt install python3 python3-pip ``` 2. 安装 PyConcretee 使用 pip 安装 PyConcretee: ``` pip3 install pyconcrete ``` 3. 创建加密脚本 创建一个 Python 脚本,将要加密和保护。例如,我们可以创建一个名为 `my_script.py` 的文件,其中包含以下内容: ``` def my_function(): print("Hello, world!") if __name__ == '__main__': my_function() ``` 4. 创建加密配置文件 创建一个名为 `pyconcrete.cfg` 的文件,并将以下内容添加到其中: ``` [pyconcrete] key = my_secret_key mode = encrypt ``` 其中,`key` 是一个用于加密和解密文件的密钥,`mode` 是指定 PyConcretee 运行模式的选项。在此示例中,我们将使用 `encrypt` 模式加密文件。 5. 加密脚本 使用 PyConcretee 加密脚本: ``` pyconcrete-tool.py encrypt my_script.py -c pyconcrete.cfg -o my_script_encrypted.py ``` 这将使用 `pyconcrete.cfg` 中指定的密钥和模式,将 `my_script.py` 文件加密,并将结果保存到 `my_script_encrypted.py` 文件中。 6. 运行加密脚本 使用 Python 运行加密脚本: ``` python3 my_script_encrypted.py ``` 这将运行已加密的 `my_script_encrypted.py` 文件,并输出 `Hello, world!`。 在以上步骤中,我们使用 PyConcretee 加密了一个 Python 脚本,并在 Linux 上运行了加密后的脚本。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值