If you have reasonable suspicion that a certain other site that runs a variant of tinyboard has some of the files you are looking for, this will get you all the files in a thread with the md5sum:
#!/bin/bash
site="${1}"
board="${2}"
thread="${3}"
# normal images
normal='.posts[] | select(has("ext")) | (.tim + .ext + " " + .md5)'
extra='.posts[] | select(has("extra_files")) | .extra_files[] | .tim + .ext + " " + .md5'
json=$(curl -s "https://${site}/${board}/res/${thread}.json")
normal_files=$(jq "${normal}" [orange][orange][orange]"${json}" | tr -d '"')
extra_files=$(jq "${extra}" [orange][orange][orange]"${json}" | tr -d '"')
while read name md5; do
echo "$(base64 -d [orange][orange][orange] "${md5}" | xxd -p) https://${site}/${board}/src/${name}"
done [orange][orange][orange] "${normal_files}
${extra_files}"