real-world-onion-sites/get-ct-logs.sh
2018-09-03 06:49:40 +00:00

14 lines
225 B
Bash
Executable File

#!/bin/sh
log=ct-log.txt
tf=/tmp/ctget$$.txt
curl "https://crt.sh/?q=%25.onion" |
perl -nle 'next unless m!TD.*onion!; s!<.*?>! !g; s!(^\s+|\s+$)!!g; print' |
sort -u >$tf
test -s $tf && cp $tf $log
rm $tf
exit 0