ID photo of Ciro Santilli taken in 2013 right eyeCiro Santilli OurBigBook logoOurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
cia-2010-covert-communication-websites/justdropped.sh
#!/usr/bin/env bash
set -u
dir=tmp/justdropped
mkdir -p "$dir"
d=2006-01-01
if [ -d "$dir" ]; then
  last="$(ls -crt "$dir" | tail -n1)"
  if [ -n "$last" ]; then
    d="${last%-*}"
  fi
fi
while [ "$d" != 2025-01-01 ]; do
  for tld in biz com info net org us
  do
    outfile="$dir/$d-$tld.html"
    code="$(curl "https://justdropped.com/drops/$(date  -d "$d" '+%m%d%y')${tld}.html" -o "$outfile" -w "%{http_code}")"
    stat=$?
    if [ "$stat" -eq 0 ] && [ "$code" -eq 200 ]; then
      :
    else
      rm -f "$outfile"
      echo "$outfile" >> err.txt
    fi
  done
  d=$(date -I -d "$d + 1 day")
done