Advertisement
Guest User

Cicada 3301 4chan /x/ check-script

a guest
Jan 4th, 2014
812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. while [ 1 ] ;
  2. do
  3.         curl -s http://boards.4chan.org/x/catalog | grep -o -P '"imgurl":".{0,13}' | sed 's:.*"::;s:$:.jpg:' | while read -r img; do [ -e $img ] || (wget -q "http://i.4cdn.org/x/src/$img"; [ -e $img ] || touch $img; outguess -r $img $img.txt; [ -s $img.txt ] || rm $img.txt; [ -e $img.txt ] && (gpg --verify $img.txt || rm $img.txt ) ) ;  done ;
  4. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement