事情是這樣的
520晚上,正跟隊(duì)友 啪啪啪 組團(tuán)開黑
突然,微信上前女友的頭像跳動(dòng)了起來
快一年了,難道是想要復(fù)合?
發(fā)來的竟是一個(gè) " 520快樂.pdf " 的加密文件
想復(fù)合就直說嘛
干嘛還要搞的這么有情趣,讓我破解
伴隨著我隊(duì)友刺耳的罵街聲
我平靜而果斷的的退出了游戲
擼出了,我的python代碼。。。
明確需求
1、根據(jù)對(duì)前女友的了解,密碼為4位純數(shù)字。(代碼中可以自定義代碼生成函數(shù),生成各種組合的密碼,進(jìn)行破解)
2、520快樂.pdf 如下 ↓ ↓ ↓ 加密了打不開
安裝pdf工具模塊
pip install PyPDF2
PS D:\&; pip install PyPDF2
Looking in indexes: http://mirrors.aliyun.com/pypi/simple
Collecting PyPDF2
Downloading http://mirrors.aliyun.com/pypi/packages/b4/01/68fcc0d43daf4c6bdbc6b33cc3f77bda531c86b174cac56ef0ffdb96faab/PyPDF2-1.26.0.tar.gz (77 kB)
|████████████████████████████████| 77 kB 919 kB/s
Using legacy 'setup.py install' for PyPDF2, since package 'wheel' is not installed.
Installing collected packages: PyPDF2
Running setup.py install for PyPDF2 ... done
Successfully installed PyPDF2-1.26.0
PS D:\&;
如何給pdf加密碼?
要想破解加密的pdf文件,就要知道如何給pdf加密。可以通過PyPDF2模塊,給pdf加密。
代碼如下:
import PyPDF2
#加密PDF
def encrypt(old_Path, new_Path):
"""
:param old_Path: 待加密文件的路徑名
:param new_Path: 加密之后的文件路徑名
"""
with open(old_Path, 'rb') as pdfFile:
pdfReader = PyPDF2.PdfFileReader(pdfFile)
# 創(chuàng)建pdfWriter對(duì)象用于寫出PDF文件
pdfWriter = PyPDF2.PdfFileWriter()
# pdf對(duì)象加入到pdfWriter對(duì)象中
for pageNum in range(pdfReader.numPages):
pdfWriter.addPage(pdfReader.getPage(pageNum))
# 密碼設(shè)置為8888
pdfWriter.encrypt('8888')
with open(new_Path, 'wb') as resultPDF:
pdfWriter.write(resultPDF)
print('加密成功!')
如何破解加密pdf文件
1、生成四位數(shù)純數(shù)字密碼的方法
你可以根據(jù)需求,自己定義密碼的位數(shù),這里只定義4位純數(shù)字密碼
#你可以根據(jù)需求,自己定義密碼的位數(shù),這里只定義4位純數(shù)字密碼
for i in range(10000):
#生成四位數(shù)密碼
pwd=str(i).zfill(4)
print(pwd)
2、破解pdf函數(shù)代碼
引用pypdf2模塊,調(diào)用pdfReader.decrypt('密碼'),通過不停的遍歷我們生成的密碼。
破解密碼函數(shù) 如下:
def decrypt(old_Path, new_Path):
"""
:param old_Path: 待加密文件的路徑名
:param new_Path: 加密之后的文件路徑名
"""
with open(old_Path, 'rb') as pdfFile:
pdfReader = PyPDF2.PdfFileReader(pdfFile)
pdfWriter = PyPDF2.PdfFileWriter()
# 判斷文件是否加密
if pdfReader.isEncrypted:
# 判斷密碼是否正確
for i in range(10000):
#生成四位數(shù)密碼
pwd=str(i).zfill(4)
if pdfReader.decrypt(pwd):
for pageNum in range(pdfReader.numPages):
pdfWriter.addPage(pdfReader.getPage(pageNum))
with open(new_Path, 'wb') as resultFile:
pdfWriter.write(resultFile)
print('成功了!密碼是:'+pwd)
else:
print('密碼錯(cuò)了!哼~~~')
else:
print('沒有加密呀~~~')
開始破解
代碼已經(jīng)準(zhǔn)備好,下面,我們正式開始破解~~~
效果如下 ↓ ↓ ↓
幾秒之后,密碼破解成功。
emmm ,密碼居然是 1314
完整代碼
https://download.csdn.net/download/weixin_42350212/19777145
故事結(jié)尾
密碼居然是1314
讓我有點(diǎn)不知所措呢
迫不及待的打開 “520快樂.pdf”
啪啪啪
歡快的輸入破解出的密碼 1314
----The End----
到此這篇關(guān)于前女友發(fā)來加密的"520快樂.pdf",我用python破解開之后,卻發(fā)現(xiàn)...的文章就介紹到這了,更多相關(guān)python破解加密內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 詳解python中文編碼問題
- 用基于python的appium爬取b站直播消費(fèi)記錄
- 女友半夜加班發(fā)自拍 python男友用30行代碼發(fā)現(xiàn)驚天秘密
- 在前女友婚禮上用python把婚禮現(xiàn)場(chǎng)的WIFI名稱改成了