mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-18 23:43:59 +00:00
8 lines
181 B
Text
8 lines
181 B
Text
|
#!/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
|