1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #!/bin/bash
- TZ=UTC
- export TZ
- DIRSERVERS=""
- DIRSERVERS="$DIRSERVERS 86.59.21.38:80"
- DIRSERVERS="$DIRSERVERS 128.31.0.34:9031"
- DIRSERVERS="$DIRSERVERS 128.31.0.34:9032"
- DIRSERVERS="$DIRSERVERS 194.109.206.212:80"
- DATEDIR=$(date "+%Y/%m/%d")
- TIME=$(date "+%Y%m%d-%H%M%S")
- . fetch-all-functions
- statuses=""
- for dirserver in $DIRSERVERS; do
- authorities=$(wget -q -O - http://$dirserver/tor/status/all | egrep '^fingerprint ' | awk '{print $2}')
- if [ "$authorities" == "" ]; then
- echo "Did not get a list of authorities from $dirserver, going to next" 2>&1
- continue
- fi
- dir="status/$DATEDIR"
- [ -d "$dir" ] || mkdir -p "$dir"
- authprefix="$dir/$TIME-"
- for fp in $authorities; do
- wget -q -O "$authprefix$fp" http://$dirserver/tor/status/fp/"$fp"
- bzip2 "$authprefix$fp"
- statuses="$statuses $authprefix$fp.bz2"
- done
- if [ "$statuses" == "" ]; then
- echo "Did not get any statuses from $dirserver, going to next" 2>&1
- continue
- else
- break
- fi
- done
- if [ "$statuses" = "" ]; then
- echo "No statuses available" 2>&1
- exit 1
- fi
- digests=$( for i in ` bzcat $statuses | awk '$1 == "r" {printf "%s=\n", $4}' | sort -u `; do
- echo $i | \
- base64-decode | \
- perl -e 'undef $/; $a=<>; print unpack("H\*", $a),"\n";';
- done )
- for digest in $digests; do
- fetch_digest "$digest" "server-descriptor"
- done
|