First public release

This commit is contained in:
Inndy
2020-05-20 00:11:26 +08:00
commit 7fc247b152
28 changed files with 1762 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#!/bin/bash
if [ ! -x "$(which certutil 2>&-)" ]
then
echo "[-] Install libnss3-tools first"
fi
for f in ~/.mozilla/firefox/*.default*/cert9.db
do
echo --------------------------------------------------------------------------------
echo $f
certutil -d "${f%/*}" -A -i ca.crt -n 'Inndys NHI Smartcard Client' -t C
certutil -d "${f%/*}" -L
done