Add pdf-parser for digging in PDFs

This commit is contained in:
Eric Gustafson 2015-05-10 22:23:21 -07:00
parent afbc40f331
commit 5da09d3e5d

8
pdf-parser/install Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash -e
wget http://didierstevens.com/files/software/pdf-parser_V0_6_3.zip
unzip pdf-parser_V0_6_3.zip
mkdir -p bin
mv pdf-parser.py bin/pdf-parser
chmod 755 bin/pdf-parser
END