任何人都可以建议我任何简单的 linux 命令来在命令行上打开 pdf 文件(仅限文本)。如果我们能够将密码作为参数传递给命令,那将不胜感激。
我正在尝试构建一个迭代所有可能的 4 个字符密码的脚本,以破解受密码保护的 pdf 文件的密码。
在此先感谢 Harsha
pdftotext 是 xpdf 包的一部分。它将输出到一个文本文件。如果未指定输出文件,您将得到一个同名但扩展名为“.txt”的文件。
pdftotext -layout file.pdf [output.txt]
您可以将密码传递给它。
man pdftotext |grep -i password
-opw password
Specify the owner password for the PDF file. Providing this will bypass all security restrictions.
-upw password
Specify the user password for the PDF file.