飞道的博客

前女友发来加密的 “520快乐.pdf“,我用python破解开之后,却发现。。。

481人阅读  评论(0)

大家好,我是Lex 喜欢欺负超人那个Lex

520收到前女友发来的加密PDF文件,说打开之后有惊喜,难道是要复合?

我用python破解开之后,却发现。。。

划重点:1、如何使用python给pdf设置密码。2、如何使用python破解加密的pdf 

python干货+剧情 满满。收藏收藏!!!

事情是这样的

520晚上,正跟队友 啪啪啪 组团开黑

突然,微信上前女友的头像跳动了起来

快一年了,难道是想要复合?

发来的竟是一个 " 520快乐.pdf " 的加密文件

想复合就直说嘛

干嘛还要搞的这么有情趣,让我破解

伴随着我队友刺耳的骂街声

我平静而果断的的退出了游戏

撸出了,我的python代码。。。

 

明确需求

1、根据对前女友的了解,密码为4位纯数字。(代码中可以自定义代码生成函数,生成各种组合的密码,进行破解)

2、520快乐.pdf  如下 ↓ ↓ ↓  加密了打不开

 

安装pdf工具模块

pip install PyPDF2


  
  1. PS D:\> pip install PyPDF2
  2. Looking in indexes: http://mirrors.aliyun.com/pypi/simple
  3. Collecting PyPDF2
  4. Downloading http://mirrors.aliyun.com/pypi/packages/b4/01/68fcc0d43daf4c6bdbc6b33cc3f77bda531c86b174cac56ef0ffdb96faab/PyPDF2-1.26.0.tar.gz (77 kB)
  5. |████████████████████████████████| 77 kB 919 kB/s
  6. Using legacy 'setup.py install' for PyPDF2, since package 'wheel' is not installed.
  7. Installing collected packages: PyPDF2
  8. Running setup.py install for PyPDF2 ... done
  9. Successfully installed PyPDF2-1.26.0
  10. PS D:\>

 

如何给pdf加密码?

要想破解加密的pdf文件,就要知道如何给pdf加密。可以通过PyPDF2模块,给pdf加密。

代码如下:


  
  1. import PyPDF2
  2. #加密PDF
  3. def encrypt(old_Path, new_Path):
  4. """
  5. :param old_Path: 待加密文件的路径名
  6. :param new_Path: 加密之后的文件路径名
  7. """
  8. with open(old_Path, 'rb') as pdfFile:
  9. pdfReader = PyPDF2.PdfFileReader(pdfFile)
  10. # 创建pdfWriter对象用于写出PDF文件
  11. pdfWriter = PyPDF2.PdfFileWriter()
  12. # pdf对象加入到pdfWriter对象中
  13. for pageNum in range(pdfReader.numPages):
  14. pdfWriter.addPage(pdfReader.getPage(pageNum))
  15. # 密码设置为8888
  16. pdfWriter.encrypt( '8888')
  17. with open(new_Path, 'wb') as resultPDF:
  18. pdfWriter.write(resultPDF)
  19. print( '加密成功!')

 

如何破解加密pdf文件

1、生成四位数纯数字密码的方法

你可以根据需求,自己定义密码的位数,这里只定义4位纯数字密码


  
  1. #你可以根据需求,自己定义密码的位数,这里只定义4位纯数字密码
  2. for i in range( 10000):
  3. #生成四位数密码
  4. pwd=str(i).zfill( 4)
  5. print(pwd)

2、破解pdf函数代码

引用pypdf2模块,调用pdfReader.decrypt('密码'),通过不停的遍历我们生成的密码。

破解密码函数 如下:


  
  1. def decrypt(old_Path, new_Path):
  2. """
  3. :param old_Path: 待加密文件的路径名
  4. :param new_Path: 加密之后的文件路径名
  5. """
  6. with open(old_Path, 'rb') as pdfFile:
  7. pdfReader = PyPDF2.PdfFileReader(pdfFile)
  8. pdfWriter = PyPDF2.PdfFileWriter()
  9. # 判断文件是否加密
  10. if pdfReader.isEncrypted:
  11. # 判断密码是否正确
  12. for i in range( 10000):
  13. #生成四位数密码
  14. pwd=str(i).zfill( 4)
  15. if pdfReader.decrypt(pwd):
  16. for pageNum in range(pdfReader.numPages):
  17. pdfWriter.addPage(pdfReader.getPage(pageNum))
  18. with open(new_Path, 'wb') as resultFile:
  19. pdfWriter.write(resultFile)
  20. print( '成功了!密码是:'+pwd)
  21. else:
  22. print( '密码错了!哼~~~')
  23. else:
  24. print( '没有加密呀~~~')

 

开始破解

代码已经准备好,下面,我们正式开始破解~~~

效果如下 ↓ ↓ ↓

几秒之后,密码破解成功。

emmm ,密码居然是 1314

 

完整代码


  
  1. from os import error
  2. import PyPDF2
  3. #加密PDF
  4. def encrypt(old_Path, new_Path):
  5. """
  6. :param old_Path: 待加密文件的路径名
  7. :param new_Path: 加密之后的文件路径名
  8. """
  9. with open(old_Path, 'rb') as pdfFile:
  10. pdfReader = PyPDF2.PdfFileReader(pdfFile)
  11. # 创建pdfWriter对象用于写出PDF文件
  12. pdfWriter = PyPDF2.PdfFileWriter()
  13. # pdf对象加入到pdfWriter对象中
  14. for pageNum in range(pdfReader.numPages):
  15. pdfWriter.addPage(pdfReader.getPage(pageNum))
  16. # 密码设置为8888
  17. pdfWriter.encrypt( '8888')
  18. with open(new_Path, 'wb') as resultPDF:
  19. pdfWriter.write(resultPDF)
  20. print( '加密成功!,')
  21. def decrypt(old_Path):
  22. """
  23. :param old_Path: 待加密文件的路径名
  24. :param new_Path: 加密之后的文件路径名
  25. """
  26. with open(old_Path, 'rb') as pdfFile:
  27. pdfReader = PyPDF2.PdfFileReader(pdfFile)
  28. # 判断文件是否加密
  29. if pdfReader.isEncrypted:
  30. # 判断密码是否正确
  31. for i in range( 10000):
  32. #生成四位数密码
  33. pwd=str(i).zfill( 4).replace( ' ', '')
  34. print(pwd)
  35. try:
  36. pdfReader.decrypt(pwd)
  37. except:
  38. print( '密码不对,哼~~~')
  39. else:
  40. print( '成功了!密码是:'+pwd)
  41. break
  42. else:
  43. print( "没有密码哦~")
  44. if __name__ == '__main__':
  45. #给pdf加密
  46. #encrypt('E:/520快乐.pdf','E:/520快乐2.pdf')
  47. #给pdf解密,我们尝试 4位数的密码
  48. decrypt( 'E:/520快乐.pdf')

 

故事结尾

密码居然是1314

让我有点不知所措呢

迫不及待的打开 “520快乐.pdf”

啪啪啪

欢快的输入破解出的密码 1314

 

----The End----

 

推荐阅读

python实战

【python实战】昨晚,我用python帮隔壁小姐姐P证件照 自拍,然后发现...

【python实战】女友半夜加班发自拍 python男友用30行代码发现惊天秘密

【python实战】python你TM太皮了——区区30行代码就能记录键盘的一举一动

python实战】女神相册密码忘记了,我只用Python写了20行代码~~~

渗透测试

【渗透案例】上班摸鱼误入陌生网址——结果被XSS劫持了

【渗透测试】密码暴力破解工具——九头蛇(hydra)使用详解及实战

【渗透学习】Web安全渗透详细教程+学习线路+详细笔记【全网最全+建议收藏】

【渗透案例】如何用ssh工具连接前台小姐姐的“小米手机”——雷总看了直呼内行!!!

【渗透测试】密码暴力破解工具——九头蛇(hydra)使用详解及实战

pygame系列文章

一起来学pygame吧 游戏开发30例(二)——塔防游戏

一起来学pygame吧 游戏开发30例(三)——射击外星人小游戏

一起来学pygame吧 游戏开发30例(四)——俄罗斯方块小游戏

一起来学pygame吧 游戏开发30例(五)——消消乐 小游戏

一起来学pygame吧 游戏开发30例(六)——高山滑雪 小游戏

 

CSDN官方学习推荐 ↓ ↓ ↓

CSDN出的Python全栈知识图谱,太强了,推荐给大家!


转载:https://blog.csdn.net/weixin_42350212/article/details/117031929
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场