Want to send someone some mildly sensitive documents but don't have a secure channel? crapcrypt
to the rescue!
- takes a directory full of PDFs
- puts a watermark on them
- generates a random password
- uploads the password to OTS
- creates a password-protected archive of the files
- outputs the OTS link and the file
Now you can email the OTS link and the file to your recipient. I recommend you send the OTS link first and confirm receipt via another channel (eg. telephone call) before sending the password-protected archive.
The watermark will help you determine who leaked your documents, in case that happens some day.
If your filenames are sensitive, don't use ZIP.
All this said, this isn't supposed to be exhaustively secure. I built it because inexperienced people with whom I deal, usually don't know what GPG is. So here's a thing which puts my mind at rest for a short while. If you want to send me something secure, use something actually secure instead.
Install dependencies with your favourite package manager.
brew install coreutils unzip openssl curl jq imagemagick pdftk-java
Optionally:
brew cask install rar
note: coreutils is for
realpath
- copy
example.config.sh
toconfig.sh
and put some sensible values in there - put your PDFs (and any other documents) in
./files
- run
./pack.sh -w 'Dodgy Client Inc.'
- you should have a file in
./output
-h
display help-w
specify the PDF watermark text-o number
specify the opacity of the watermark (0.0 - 1.0, default: 0.25)-f number
adjust font size of the watermark (default: 144)-r
create a RAR instead of a ZIP-p password
set the password (default: generate randomly)-u
upload the password to onetimesecret.com (requires OTS_KEY and OTS_TTL)'
- should probably ask for password with a prompt
- will only watermark PDF files
- will only watermark those in the root
- probably breaks with subdirectories in the root