mirror of
https://github.com/alecmuffett/real-world-onion-sites.git
synced 2024-10-01 01:06:18 -04:00
18 lines
297 B
Bash
Executable File
18 lines
297 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\b!; s!\s+!\n!go; s!</?TD>!\n!goi; s!<BR>!\n!goi; print' |
|
|
egrep '\.onion$' |
|
|
sort -u |
|
|
rev |
|
|
sort |
|
|
rev >$tf
|
|
|
|
test -s $tf && cp $tf $log
|
|
rm $tf
|
|
|
|
exit 0
|