mirror of
https://github.com/alecmuffett/real-world-onion-sites.git
synced 2024-10-01 01:06:18 -04:00
commit: fix nits, update mcclatchy https
This commit is contained in:
parent
e5f95b51e0
commit
f8cf2591c6
@ -558,7 +558,7 @@ Connectivity was last checked at: **2018-07-10T07:34:56Z**
|
||||
|
||||
* http://zafull3et6muayeh.onion/
|
||||
* 2018-07-10T07:33:40Z :thumbsup:
|
||||
* http://www.mcclatchydc.com/customer-service/contact-us/ :no_entry_sign: Not HTTPS
|
||||
* https://www.mcclatchydc.com/customer-service/contact-us/
|
||||
|
||||
## Meduza
|
||||
|
||||
|
@ -5,13 +5,20 @@ while read category onion_address proof_url title ; do
|
||||
echo oops: bad category $category for $onion_address
|
||||
exit 1
|
||||
fi
|
||||
existing=`echo directory/*/$onion_address` # bueller?
|
||||
test -d "$existing" && continue
|
||||
where="directory/$category/$onion_address"
|
||||
mkdir -p $where || exit 1
|
||||
echo $title > $where/title
|
||||
echo http://$onion_address/ > $where/urls
|
||||
echo $proof_url > $where/proof
|
||||
|
||||
for existing in `echo directory/*/$onion_address` ; do
|
||||
if [ -d "$existing" ] ; then
|
||||
echo onion exists at $existing for $title
|
||||
continue
|
||||
fi
|
||||
done
|
||||
|
||||
dir="directory/$category/$onion_address"
|
||||
mkdir -p $dir || exit 1
|
||||
|
||||
echo $title >$dir/title
|
||||
echo $proof_url >$dir/proof
|
||||
echo http://$onion_address/ >$dir/urls # add more by hand, later
|
||||
done <<EOF
|
||||
securedrop-for-organisations lzpczap7l3zxu7zv.onion https://www.icij.org/securedrop ICIJ / International Consortium of Investigative Journalists
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user