python代码打包编译与python代码反编译,一文带你了解

本文最后会附加所有脚本和程序的获取方式;

PS:在我的测试过程中,python3.9版本不支持反编译,其他的使用的暂时没发现问题,都可以反编译成功。

情景对话一:

A:给我写个程序,我要实现什么什么

B:写好了,给你

A:运行失败了啊。。。

B:我看看

B:你这里没有安装xxx\xxx\xxx模块,你安装下就好了

A:这么麻烦?我这是内网,下载老麻烦了

B:那我不管,我给你实现了哈

A:你这技术不行啊~~~

B:???

情景对话二:

A:哇塞,你这个代码好厉害啊,直接运行就好了;

B:哎呀,一般般了;

A:你是怎么实现的啊,源代码发我一下我看看吧;

B:要什么源代码,很简单了,不是不给你看,主要是我代码丢了;

A:~~~

以上两种情况,不知道你遇到过没有,如果有的话,看完这个文章,再遇到这样的问题,分分钟搞定了就。

1、python代码打包编译

python打包成各种平台上的可执行文件,其实用到了pyinstaller模块;

他可以让你的python代码打包成各种类型的,比如运行在windows上的.exe格式文件,亦或者运行在linux上的可执行文件;这样子做有什么好处呢?

我们都知道,写python代码的时候往往需要安装很多模块,那么后期运行的服务器上经常会出现缺少模块的事情发生,但是我们通过pyinstaller模块打包之后,就可以在没有安装这些模块的机器上运行了,那么看下如何操作吧。

1.1、安装

pip install pyinstaller

1.2、python代码打包成可执行文件

想打包成可以在windows下运行的.exe文件的话,就在windows平台下打包;linux亦然;也就是说后期你想在什么平台执行,那就需要在什么平台打包;

例如我们的源代码如下:

#!/usr/bin/python
#coding:utf-8
from datetime import datetime
now_date = datetime.now()
print('现在的时间为:' + str(now_date))

打包命令:

PS C:\Users\22768\Desktop\yunwei_ceshi> ls


目录: C:\Users\22768\Desktop\yunwei_ceshi


Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2022-06-15 21:43 138 ceshi.py


PS C:\Users\22768\Desktop\yunwei_ceshi> pyinstaller -F .\ceshi.py # 命令在这里哈
PS C:\Users\22768\Desktop\yunwei_ceshi> ls


目录: C:\Users\22768\Desktop\yunwei_ceshi


Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2022-06-15 21:44 build
d----- 2022-06-15 21:44 dist
-a---- 2022-06-15 21:43 138 ceshi.py
-a---- 2022-06-15 21:44 854 ceshi.spec

PS C:\Users\22768\Desktop\yunwei_ceshi>

执行完之后可以看到输出了几个目录,那么我们打包的内容在哪里呢?在dist目录下,我们进去看一下;

PS C:\Users\22768\Desktop\yunwei_ceshi> cd .\dist\
PS C:\Users\22768\Desktop\yunwei_ceshi\dist> ls


目录: C:\Users\22768\Desktop\yunwei_ceshi\dist


Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2022-06-15 21:44 7864211 ceshi.exe

PS C:\Users\22768\Desktop\yunwei_ceshi\dist>

由于我是在windows平台上运行的,所以就是一个ceshi.exe文件,你如果想让后面的程序在linux平台上运行,那么你就需要在linux平台上进行打包;

1.3、运行

windows平台上打包的python代码,双击即可运行;

linux平台上打包的python代码,只能使用./来执行,例如:

./ceshi

2、python代码反编译

如果我们拿到了python打包后的代码,想看下源代码,亦或者是提供程序包的人离职了,没人有源代码,这种情况下我们该如何查看源代码呢?且往下看;

例如我们拿到的就是上一步打包之后的ceshi.exe文件,如何看到源代码呢?

2.1、第一步

这里需要使用到一个脚本pyinstxtractor.py,本文最后会附加所有脚本和程序的获取方式;

PS C:\Users\22768\Desktop\yunwei_ceshi\dist> python pyinstxtractor.py .\ceshi.exe
[+] Processing .\ceshi.exe
[+] Pyinstaller version: 2.1+
[+] Python version: 3.9
[+] Length of package: 7548819 bytes
[+] Found 71 files in CArchive
[+] Beginning extraction...please standby
[+] Possible entry point: pyiboot01_bootstrap.pyc
[+] Possible entry point: pyi_rth_subprocess.pyc
[+] Possible entry point: pyi_rth_pkgutil.pyc
[+] Possible entry point: pyi_rth_multiprocessing.pyc
[+] Possible entry point: pyi_rth_inspect.pyc
[+] Possible entry point: ceshi.pyc
[+] Found 227 files in PYZ archive
[+] Successfully extracted pyinstaller archive: .\ceshi.exe

You can now use a python decompiler on the pyc files within the extracted directory
PS C:\Users\22768\Desktop\yunwei_ceshi\dist> ls


目录: C:\Users\22768\Desktop\yunwei_ceshi\dist


Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2022-06-15 21:53 ceshi.exe_extracted
-a---- 2022-06-15 21:44 7864211 ceshi.exe
-a---- 2022-06-13 19:19 15336 pyinstxtractor.py

PS C:\Users\22768\Desktop\yunwei_ceshi\dist>

可以看到多了一个ceshi.exe_extracted目录,进去看一下:

PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted> ls


目录: C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted


Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2022-06-15 21:53 PYZ-00.pyz_extracted
-a---- 2022-06-15 21:53 19864 api-ms-win-core-console-l1-1-0.dll
-a---- 2022-06-15 21:53 19352 api-ms-win-core-datetime-l1-1-0.dll
-a---- 2022-06-15 21:53 19352 api-ms-win-core-debug-l1-1-0.dll
-a---- 2022-06-15 21:53 19376 api-ms-win-core-errorhandling-l1-1-0.dll
-a---- 2022-06-15 21:53 22928 api-ms-win-core-file-l1-1-0.dll
-a---- 2022-06-15 21:53 19344 api-ms-win-core-file-l1-2-0.dll
-a---- 2022-06-15 21:53 19336 api-ms-win-core-file-l2-1-0.dll
-a---- 2022-06-15 21:53 19352 api-ms-win-core-handle-l1-1-0.dll
-a---- 2022-06-15 21:53 19856 api-ms-win-core-heap-l1-1-0.dll
-a---- 2022-06-15 21:53 19368 api-ms-win-core-interlocked-l1-1-0.dll
-a---- 2022-06-15 21:53 19888 api-ms-win-core-libraryloader-l1-1-0.dll
-a---- 2022-06-15 21:53 21936 api-ms-win-core-localization-l1-2-0.dll
-a---- 2022-06-15 21:53 19856 api-ms-win-core-memory-l1-1-0.dll
-a---- 2022-06-15 21:53 19360 api-ms-win-core-namedpipe-l1-1-0.dll
-a---- 2022-06-15 21:53 20424 api-ms-win-core-processenvironment-l1-1-0.dll
-a---- 2022-06-15 21:53 21432 api-ms-win-core-processthreads-l1-1-0.dll
-a---- 2022-06-15 21:53 19896 api-ms-win-core-processthreads-l1-1-1.dll
-a---- 2022-06-15 21:53 18840 api-ms-win-core-profile-l1-1-0.dll
-a---- 2022-06-15 21:53 19880 api-ms-win-core-rtlsupport-l1-1-0.dll
-a---- 2022-06-15 21:53 19352 api-ms-win-core-string-l1-1-0.dll
-a---- 2022-06-15 21:53 21392 api-ms-win-core-synch-l1-1-0.dll
-a---- 2022-06-15 21:53 19856 api-ms-win-core-synch-l1-2-0.dll
-a---- 2022-06-15 21:53 20376 api-ms-win-core-sysinfo-l1-1-0.dll
-a---- 2022-06-15 21:53 19360 api-ms-win-core-timezone-l1-1-0.dll
-a---- 2022-06-15 21:53 19336 api-ms-win-core-util-l1-1-0.dll
-a---- 2022-06-15 21:53 20368 api-ms-win-crt-conio-l1-1-0.dll
-a---- 2022-06-15 21:53 23448 api-ms-win-crt-convert-l1-1-0.dll
-a---- 2022-06-15 21:53 19872 api-ms-win-crt-environment-l1-1-0.dll
-a---- 2022-06-15 21:53 21408 api-ms-win-crt-filesystem-l1-1-0.dll
-a---- 2022-06-15 21:53 20360 api-ms-win-crt-heap-l1-1-0.dll
-a---- 2022-06-15 21:53 19856 api-ms-win-crt-locale-l1-1-0.dll
-a---- 2022-06-15 21:53 28552 api-ms-win-crt-math-l1-1-0.dll
-a---- 2022-06-15 21:53 20376 api-ms-win-crt-process-l1-1-0.dll
-a---- 2022-06-15 21:53 23960 api-ms-win-crt-runtime-l1-1-0.dll
-a---- 2022-06-15 21:53 25480 api-ms-win-crt-stdio-l1-1-0.dll
-a---- 2022-06-15 21:53 25496 api-ms-win-crt-string-l1-1-0.dll
-a---- 2022-06-15 21:53 21896 api-ms-win-crt-time-l1-1-0.dll
-a---- 2022-06-15 21:53 19864 api-ms-win-crt-utility-l1-1-0.dll
-a---- 2022-06-15 21:53 794260 base_library.zip
-a---- 2022-06-15 21:53 211 ceshi.pyc
-a---- 2022-06-15 21:53 3399200 libcrypto-1_1.dll
-a---- 2022-06-15 21:53 32792 libffi-7.dll
-a---- 2022-06-15 21:53 689184 libssl-1_1.dll
-a---- 2022-06-15 21:53 190008 pyexpat.pyd
-a---- 2022-06-15 21:53 1386 pyiboot01_bootstrap.pyc
-a---- 2022-06-15 21:53 1728 pyimod01_os_path.pyc
-a---- 2022-06-15 21:53 8809 pyimod02_archive.pyc
-a---- 2022-06-15 21:53 17668 pyimod03_importers.pyc
-a---- 2022-06-15 21:53 3495 pyimod04_ctypes.pyc
-a---- 2022-06-15 21:53 712 pyi_rth_inspect.pyc
-a---- 2022-06-15 21:53 2163 pyi_rth_multiprocessing.pyc
-a---- 2022-06-15 21:53 1101 pyi_rth_pkgutil.pyc
-a---- 2022-06-15 21:53 851 pyi_rth_subprocess.pyc
-a---- 2022-06-15 21:53 4451896 python39.dll
-a---- 2022-06-15 21:53 1735486 PYZ-00.pyz
-a---- 2022-06-15 21:53 28216 select.pyd
-a---- 2022-06-15 21:53 285 struct.pyc
-a---- 2022-06-15 21:53 1144936 ucrtbase.dll
-a---- 2022-06-15 21:53 1120824 unicodedata.pyd
-a---- 2022-06-15 21:53 94088 VCRUNTIME140.dll
-a---- 2022-06-15 21:53 64568 _asyncio.pyd
-a---- 2022-06-15 21:53 86072 _bz2.pyd
-a---- 2022-06-15 21:53 126520 _ctypes.pyd
-a---- 2022-06-15 21:53 271416 _decimal.pyd
-a---- 2022-06-15 21:53 65592 _hashlib.pyd
-a---- 2022-06-15 21:53 162360 _lzma.pyd
-a---- 2022-06-15 21:53 29752 _multiprocessing.pyd
-a---- 2022-06-15 21:53 46136 _overlapped.pyd
-a---- 2022-06-15 21:53 29240 _queue.pyd
-a---- 2022-06-15 21:53 79928 _socket.pyd
-a---- 2022-06-15 21:53 154168 _ssl.pyd

PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted>

可以看到里面有生成了很多软件包;

2.2、第二步

在第一步新生成的诸多文件中,我们需要用到两个文件,一个是struct.pyc,另一个是ceshi.pyc;

PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted> ls .\struct.pyc


目录: C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted


Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2022-06-15 21:53 285 struct.pyc


PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted> ls .\ceshi.pyc


目录: C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted


Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2022-06-15 21:53 211 ceshi.pyc

PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted>

2.3、第三步

使用imhex软件,这个软件是十六进制编译器,该软件安装就很简单了,直接依次下一步即可,并不需要什么特殊操作;安装好之后打开struct.pyc文件,如下图:

我们需要记录下第一行的值,如下图:

然后关闭该文件,打开另一个ceshi.pyc文件,如下图:

修改第一行的值和struct.pyc文件的第一行的值相同,如下图:

然后保存文件内容;

2.4、第四步

这里我们需要使用到另一个模块了,即uncompyle6,从该问末尾获取该软件,解压之后使用如下命令进行安装;

PS C:\Users\22768\Desktop\python-uncompyle6-master> python .\setup.py install

安装完毕之后,我们重新回到有ceshi.pyc这个文件的目录下;

PS C:\Users\22768\Desktop\yunwei_ceshi\dist\ceshi.exe_extracted> uncompyle6 .\ceshi.pyc > nihao.txt

这个nihao.txt就是我们的源代码了。

3、软件下载

本文一共用到了一个脚本pyinstxtractor.py,一个软件imhex,一个pythonuncompyle6,我都打包好了,微信公众号后台回复:python反编译,即可获取下载地址;

至此,本文结束。

更多内容请转至VX公众号 “运维家” ,获取最新文章。

------ “运维家”  ------

------ “运维家”  ------

------ “运维家”  ------

linux系统下,mknodlinux,linux目录写权限,大白菜能安装linux吗,linux系统创建文件的方法,领克linux系统怎么装软件,linux文本定位;

ocr识别linux,linux锚定词尾,linux系统使用记录,u盘有linux镜像文件,应届生不会Linux,linux内核64位,linux自启动管理服务;

linux计算文件夹大小,linux设备名称有哪些,linux能用的虚拟机吗,linux系统进入不了命令行,如何创建kalilinux,linux跟so文件一样吗。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容