diff --git a/configure.ac b/configure.ac index 9c45d59..af313e3 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_PREREQ(2.50) AC_CONFIG_AUX_DIR(autotools) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(pwntcha, 0.0) +AM_INIT_AUTOMAKE(pwntcha, 0.1) AM_CONFIG_HEADER(config.h) AC_PROG_CC diff --git a/extras/NOTES b/extras/NOTES index 146bb21..53db58e 100644 --- a/extras/NOTES +++ b/extras/NOTES @@ -11,3 +11,9 @@ is NOT under the WTFPL, it is GPL. Usage: php4 usercp_confirm.php > font_phpbb.png +getphpbbcaptcha.py +------------------ + Download a phpBB captcha from www.phpbb.com and output it to stdout. + + Usage: getphpbbcaptcha.py > captcha.png + diff --git a/extras/getphpbbcaptcha.py b/extras/getphpbbcaptcha.py new file mode 100755 index 0000000..092fb81 --- /dev/null +++ b/extras/getphpbbcaptcha.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python + +import urllib2, re, sys + +user_agent = "Mozilla/5.0" +url = "http://www.phpbb.com/phpBB/" + +r = urllib2.Request(url + "profile.php?mode=register&agreed=true") +r.add_header('User-Agent', user_agent) +f = urllib2.build_opener().open(r) +info = f.info() +if info.has_key('set-cookie'): + cookies = info['set-cookie'].split(";") +cookiestr = "" +for c in cookies: + m = re.compile(".*(phpbb[^=]*=[^ ]*).*").match(c) + if m: + cookiestr += m.group(1) + "; " +while True: + l = f.readline() + if not l: + break + m = re.compile(".*\"(profile[^\"]*confirm[^\"]*)\".*").match(l) + if m: + pic = m.group(1).replace("&", "&") +r = urllib2.Request(url + pic) +r.add_header('User-Agent', user_agent) +r.add_header('Referer', url + "profile.php?mode=register&agreed=true") +r.add_header('Cookie', cookiestr) +r.add_header('Accept', "image/png,*/*;q=0.5") +f = urllib2.build_opener().open(r) +while True: + l = f.readline() + if not l: + break + sys.stdout.write(l) +f.close() + diff --git a/testsuite/phpbb/phpbb00.png b/testsuite/phpbb/phpbb00.png new file mode 100644 index 0000000..e1e923b Binary files /dev/null and b/testsuite/phpbb/phpbb00.png differ diff --git a/testsuite/phpbb/phpbb01.png b/testsuite/phpbb/phpbb01.png new file mode 100644 index 0000000..9cbc994 Binary files /dev/null and b/testsuite/phpbb/phpbb01.png differ diff --git a/testsuite/phpbb/phpbb02.png b/testsuite/phpbb/phpbb02.png new file mode 100644 index 0000000..ed09eeb Binary files /dev/null and b/testsuite/phpbb/phpbb02.png differ diff --git a/testsuite/phpbb/phpbb03.png b/testsuite/phpbb/phpbb03.png new file mode 100644 index 0000000..3de52dd Binary files /dev/null and b/testsuite/phpbb/phpbb03.png differ diff --git a/testsuite/phpbb/phpbb04.png b/testsuite/phpbb/phpbb04.png new file mode 100644 index 0000000..30703ed Binary files /dev/null and b/testsuite/phpbb/phpbb04.png differ diff --git a/testsuite/phpbb/phpbb05.png b/testsuite/phpbb/phpbb05.png new file mode 100644 index 0000000..d8e2d45 Binary files /dev/null and b/testsuite/phpbb/phpbb05.png differ diff --git a/testsuite/phpbb/phpbb06.png b/testsuite/phpbb/phpbb06.png new file mode 100644 index 0000000..a4d6d05 Binary files /dev/null and b/testsuite/phpbb/phpbb06.png differ diff --git a/testsuite/phpbb/phpbb07.png b/testsuite/phpbb/phpbb07.png new file mode 100644 index 0000000..11ce2d5 Binary files /dev/null and b/testsuite/phpbb/phpbb07.png differ diff --git a/testsuite/phpbb/phpbb08.png b/testsuite/phpbb/phpbb08.png new file mode 100644 index 0000000..5763b8d Binary files /dev/null and b/testsuite/phpbb/phpbb08.png differ diff --git a/testsuite/phpbb/phpbb09.png b/testsuite/phpbb/phpbb09.png new file mode 100644 index 0000000..0804759 Binary files /dev/null and b/testsuite/phpbb/phpbb09.png differ diff --git a/testsuite/phpbb/phpbb10.png b/testsuite/phpbb/phpbb10.png new file mode 100644 index 0000000..a0d3e12 Binary files /dev/null and b/testsuite/phpbb/phpbb10.png differ diff --git a/testsuite/phpbb/phpbb11.png b/testsuite/phpbb/phpbb11.png new file mode 100644 index 0000000..6914b09 Binary files /dev/null and b/testsuite/phpbb/phpbb11.png differ diff --git a/testsuite/phpbb/phpbb12.png b/testsuite/phpbb/phpbb12.png new file mode 100644 index 0000000..b66e874 Binary files /dev/null and b/testsuite/phpbb/phpbb12.png differ diff --git a/testsuite/phpbb/phpbb13.png b/testsuite/phpbb/phpbb13.png new file mode 100644 index 0000000..4c9cb28 Binary files /dev/null and b/testsuite/phpbb/phpbb13.png differ diff --git a/testsuite/phpbb/phpbb14.png b/testsuite/phpbb/phpbb14.png new file mode 100644 index 0000000..0f98734 Binary files /dev/null and b/testsuite/phpbb/phpbb14.png differ diff --git a/testsuite/phpbb/phpbb15.png b/testsuite/phpbb/phpbb15.png new file mode 100644 index 0000000..13e5fc2 Binary files /dev/null and b/testsuite/phpbb/phpbb15.png differ diff --git a/testsuite/phpbb/phpbb16.png b/testsuite/phpbb/phpbb16.png new file mode 100644 index 0000000..b5df815 Binary files /dev/null and b/testsuite/phpbb/phpbb16.png differ diff --git a/testsuite/phpbb/phpbb17.png b/testsuite/phpbb/phpbb17.png new file mode 100644 index 0000000..e23b676 Binary files /dev/null and b/testsuite/phpbb/phpbb17.png differ diff --git a/testsuite/phpbb/phpbb18.png b/testsuite/phpbb/phpbb18.png new file mode 100644 index 0000000..7fadb38 Binary files /dev/null and b/testsuite/phpbb/phpbb18.png differ diff --git a/testsuite/phpbb/phpbb19.png b/testsuite/phpbb/phpbb19.png new file mode 100644 index 0000000..b75cab8 Binary files /dev/null and b/testsuite/phpbb/phpbb19.png differ diff --git a/testsuite/phpbb/phpbb20.png b/testsuite/phpbb/phpbb20.png new file mode 100644 index 0000000..3dad612 Binary files /dev/null and b/testsuite/phpbb/phpbb20.png differ diff --git a/testsuite/phpbb/phpbb21.png b/testsuite/phpbb/phpbb21.png new file mode 100644 index 0000000..24197a6 Binary files /dev/null and b/testsuite/phpbb/phpbb21.png differ diff --git a/testsuite/phpbb/phpbb22.png b/testsuite/phpbb/phpbb22.png new file mode 100644 index 0000000..49949ff Binary files /dev/null and b/testsuite/phpbb/phpbb22.png differ diff --git a/testsuite/phpbb/phpbb23.png b/testsuite/phpbb/phpbb23.png new file mode 100644 index 0000000..b9b177d Binary files /dev/null and b/testsuite/phpbb/phpbb23.png differ diff --git a/testsuite/phpbb/phpbb24.png b/testsuite/phpbb/phpbb24.png new file mode 100644 index 0000000..d7683e6 Binary files /dev/null and b/testsuite/phpbb/phpbb24.png differ diff --git a/testsuite/phpbb/phpbb25.png b/testsuite/phpbb/phpbb25.png new file mode 100644 index 0000000..6bfb35a Binary files /dev/null and b/testsuite/phpbb/phpbb25.png differ diff --git a/testsuite/phpbb/phpbb26.png b/testsuite/phpbb/phpbb26.png new file mode 100644 index 0000000..caf5958 Binary files /dev/null and b/testsuite/phpbb/phpbb26.png differ diff --git a/testsuite/phpbb/phpbb27.png b/testsuite/phpbb/phpbb27.png new file mode 100644 index 0000000..c87c5c1 Binary files /dev/null and b/testsuite/phpbb/phpbb27.png differ diff --git a/testsuite/phpbb/phpbb28.png b/testsuite/phpbb/phpbb28.png new file mode 100644 index 0000000..2040575 Binary files /dev/null and b/testsuite/phpbb/phpbb28.png differ diff --git a/testsuite/phpbb/phpbb29.png b/testsuite/phpbb/phpbb29.png new file mode 100644 index 0000000..4f6730f Binary files /dev/null and b/testsuite/phpbb/phpbb29.png differ diff --git a/testsuite/phpbb/phpbb30.png b/testsuite/phpbb/phpbb30.png new file mode 100644 index 0000000..16899ca Binary files /dev/null and b/testsuite/phpbb/phpbb30.png differ diff --git a/testsuite/phpbb/phpbb31.png b/testsuite/phpbb/phpbb31.png new file mode 100644 index 0000000..712005c Binary files /dev/null and b/testsuite/phpbb/phpbb31.png differ diff --git a/testsuite/phpbb/phpbb32.png b/testsuite/phpbb/phpbb32.png new file mode 100644 index 0000000..36c9eac Binary files /dev/null and b/testsuite/phpbb/phpbb32.png differ diff --git a/testsuite/phpbb/phpbb33.png b/testsuite/phpbb/phpbb33.png new file mode 100644 index 0000000..1125e5a Binary files /dev/null and b/testsuite/phpbb/phpbb33.png differ diff --git a/testsuite/phpbb/phpbb34.png b/testsuite/phpbb/phpbb34.png new file mode 100644 index 0000000..f5b3894 Binary files /dev/null and b/testsuite/phpbb/phpbb34.png differ diff --git a/testsuite/phpbb/phpbb35.png b/testsuite/phpbb/phpbb35.png new file mode 100644 index 0000000..50b3622 Binary files /dev/null and b/testsuite/phpbb/phpbb35.png differ diff --git a/testsuite/phpbb/phpbb36.png b/testsuite/phpbb/phpbb36.png new file mode 100644 index 0000000..c0ed79d Binary files /dev/null and b/testsuite/phpbb/phpbb36.png differ diff --git a/testsuite/phpbb/phpbb37.png b/testsuite/phpbb/phpbb37.png new file mode 100644 index 0000000..a926926 Binary files /dev/null and b/testsuite/phpbb/phpbb37.png differ diff --git a/testsuite/phpbb/phpbb38.png b/testsuite/phpbb/phpbb38.png new file mode 100644 index 0000000..6f85e2c Binary files /dev/null and b/testsuite/phpbb/phpbb38.png differ diff --git a/testsuite/phpbb/phpbb39.png b/testsuite/phpbb/phpbb39.png new file mode 100644 index 0000000..c8aee80 Binary files /dev/null and b/testsuite/phpbb/phpbb39.png differ diff --git a/testsuite/phpbb/phpbb40.png b/testsuite/phpbb/phpbb40.png new file mode 100644 index 0000000..84c22b4 Binary files /dev/null and b/testsuite/phpbb/phpbb40.png differ diff --git a/testsuite/phpbb/phpbb41.png b/testsuite/phpbb/phpbb41.png new file mode 100644 index 0000000..9388422 Binary files /dev/null and b/testsuite/phpbb/phpbb41.png differ diff --git a/testsuite/phpbb/phpbb42.png b/testsuite/phpbb/phpbb42.png new file mode 100644 index 0000000..6214ec2 Binary files /dev/null and b/testsuite/phpbb/phpbb42.png differ diff --git a/testsuite/phpbb/phpbb43.png b/testsuite/phpbb/phpbb43.png new file mode 100644 index 0000000..e0fa027 Binary files /dev/null and b/testsuite/phpbb/phpbb43.png differ diff --git a/testsuite/phpbb/phpbb44.png b/testsuite/phpbb/phpbb44.png new file mode 100644 index 0000000..fa45d6b Binary files /dev/null and b/testsuite/phpbb/phpbb44.png differ diff --git a/testsuite/phpbb/phpbb45.png b/testsuite/phpbb/phpbb45.png new file mode 100644 index 0000000..b142057 Binary files /dev/null and b/testsuite/phpbb/phpbb45.png differ diff --git a/testsuite/phpbb/phpbb46.png b/testsuite/phpbb/phpbb46.png new file mode 100644 index 0000000..44ef219 Binary files /dev/null and b/testsuite/phpbb/phpbb46.png differ diff --git a/testsuite/phpbb/phpbb47.png b/testsuite/phpbb/phpbb47.png new file mode 100644 index 0000000..c6cf255 Binary files /dev/null and b/testsuite/phpbb/phpbb47.png differ diff --git a/testsuite/phpbb/phpbb48.png b/testsuite/phpbb/phpbb48.png new file mode 100644 index 0000000..07d874d Binary files /dev/null and b/testsuite/phpbb/phpbb48.png differ diff --git a/testsuite/phpbb/phpbb49.png b/testsuite/phpbb/phpbb49.png new file mode 100644 index 0000000..b09fb14 Binary files /dev/null and b/testsuite/phpbb/phpbb49.png differ diff --git a/testsuite/phpbb/phpbb50.png b/testsuite/phpbb/phpbb50.png new file mode 100644 index 0000000..4dc3d23 Binary files /dev/null and b/testsuite/phpbb/phpbb50.png differ diff --git a/testsuite/phpbb/phpbb51.png b/testsuite/phpbb/phpbb51.png new file mode 100644 index 0000000..4a54670 Binary files /dev/null and b/testsuite/phpbb/phpbb51.png differ diff --git a/testsuite/phpbb/phpbb52.png b/testsuite/phpbb/phpbb52.png new file mode 100644 index 0000000..60b1e5d Binary files /dev/null and b/testsuite/phpbb/phpbb52.png differ diff --git a/testsuite/phpbb/phpbb53.png b/testsuite/phpbb/phpbb53.png new file mode 100644 index 0000000..db4ae5c Binary files /dev/null and b/testsuite/phpbb/phpbb53.png differ diff --git a/testsuite/phpbb/phpbb54.png b/testsuite/phpbb/phpbb54.png new file mode 100644 index 0000000..3738f95 Binary files /dev/null and b/testsuite/phpbb/phpbb54.png differ diff --git a/testsuite/phpbb/phpbb55.png b/testsuite/phpbb/phpbb55.png new file mode 100644 index 0000000..3263c33 Binary files /dev/null and b/testsuite/phpbb/phpbb55.png differ diff --git a/testsuite/phpbb/phpbb56.png b/testsuite/phpbb/phpbb56.png new file mode 100644 index 0000000..b1562df Binary files /dev/null and b/testsuite/phpbb/phpbb56.png differ diff --git a/testsuite/phpbb/phpbb57.png b/testsuite/phpbb/phpbb57.png new file mode 100644 index 0000000..87a7f87 Binary files /dev/null and b/testsuite/phpbb/phpbb57.png differ diff --git a/testsuite/phpbb/phpbb58.png b/testsuite/phpbb/phpbb58.png new file mode 100644 index 0000000..29cf990 Binary files /dev/null and b/testsuite/phpbb/phpbb58.png differ diff --git a/testsuite/phpbb/phpbb59.png b/testsuite/phpbb/phpbb59.png new file mode 100644 index 0000000..755ca14 Binary files /dev/null and b/testsuite/phpbb/phpbb59.png differ diff --git a/testsuite/phpbb/phpbb60.png b/testsuite/phpbb/phpbb60.png new file mode 100644 index 0000000..bbf4f5d Binary files /dev/null and b/testsuite/phpbb/phpbb60.png differ diff --git a/testsuite/phpbb/phpbb61.png b/testsuite/phpbb/phpbb61.png new file mode 100644 index 0000000..7a598ad Binary files /dev/null and b/testsuite/phpbb/phpbb61.png differ diff --git a/testsuite/phpbb/phpbb62.png b/testsuite/phpbb/phpbb62.png new file mode 100644 index 0000000..b45a372 Binary files /dev/null and b/testsuite/phpbb/phpbb62.png differ diff --git a/testsuite/phpbb/phpbb63.png b/testsuite/phpbb/phpbb63.png new file mode 100644 index 0000000..fbcdf80 Binary files /dev/null and b/testsuite/phpbb/phpbb63.png differ diff --git a/testsuite/phpbb/phpbb64.png b/testsuite/phpbb/phpbb64.png new file mode 100644 index 0000000..8ce7732 Binary files /dev/null and b/testsuite/phpbb/phpbb64.png differ diff --git a/testsuite/phpbb/phpbb65.png b/testsuite/phpbb/phpbb65.png new file mode 100644 index 0000000..8cee23d Binary files /dev/null and b/testsuite/phpbb/phpbb65.png differ diff --git a/testsuite/phpbb/phpbb66.png b/testsuite/phpbb/phpbb66.png new file mode 100644 index 0000000..8594ef7 Binary files /dev/null and b/testsuite/phpbb/phpbb66.png differ diff --git a/testsuite/phpbb/phpbb67.png b/testsuite/phpbb/phpbb67.png new file mode 100644 index 0000000..7541367 Binary files /dev/null and b/testsuite/phpbb/phpbb67.png differ diff --git a/testsuite/phpbb/phpbb68.png b/testsuite/phpbb/phpbb68.png new file mode 100644 index 0000000..11b61d5 Binary files /dev/null and b/testsuite/phpbb/phpbb68.png differ diff --git a/testsuite/phpbb/phpbb69.png b/testsuite/phpbb/phpbb69.png new file mode 100644 index 0000000..31007b3 Binary files /dev/null and b/testsuite/phpbb/phpbb69.png differ diff --git a/testsuite/phpbb/phpbb70.png b/testsuite/phpbb/phpbb70.png new file mode 100644 index 0000000..582b91d Binary files /dev/null and b/testsuite/phpbb/phpbb70.png differ diff --git a/testsuite/phpbb/phpbb71.png b/testsuite/phpbb/phpbb71.png new file mode 100644 index 0000000..7e5e6fc Binary files /dev/null and b/testsuite/phpbb/phpbb71.png differ diff --git a/testsuite/phpbb/phpbb72.png b/testsuite/phpbb/phpbb72.png new file mode 100644 index 0000000..42de521 Binary files /dev/null and b/testsuite/phpbb/phpbb72.png differ diff --git a/testsuite/phpbb/phpbb73.png b/testsuite/phpbb/phpbb73.png new file mode 100644 index 0000000..b172297 Binary files /dev/null and b/testsuite/phpbb/phpbb73.png differ diff --git a/testsuite/phpbb/phpbb74.png b/testsuite/phpbb/phpbb74.png new file mode 100644 index 0000000..9030c22 Binary files /dev/null and b/testsuite/phpbb/phpbb74.png differ diff --git a/testsuite/phpbb/phpbb75.png b/testsuite/phpbb/phpbb75.png new file mode 100644 index 0000000..27136af Binary files /dev/null and b/testsuite/phpbb/phpbb75.png differ diff --git a/testsuite/phpbb/phpbb76.png b/testsuite/phpbb/phpbb76.png new file mode 100644 index 0000000..10a3498 Binary files /dev/null and b/testsuite/phpbb/phpbb76.png differ diff --git a/testsuite/phpbb/phpbb77.png b/testsuite/phpbb/phpbb77.png new file mode 100644 index 0000000..34f7862 Binary files /dev/null and b/testsuite/phpbb/phpbb77.png differ diff --git a/testsuite/phpbb/phpbb78.png b/testsuite/phpbb/phpbb78.png new file mode 100644 index 0000000..ca99441 Binary files /dev/null and b/testsuite/phpbb/phpbb78.png differ diff --git a/testsuite/phpbb/phpbb79.png b/testsuite/phpbb/phpbb79.png new file mode 100644 index 0000000..10c3200 Binary files /dev/null and b/testsuite/phpbb/phpbb79.png differ diff --git a/testsuite/phpbb/phpbb80.png b/testsuite/phpbb/phpbb80.png new file mode 100644 index 0000000..2a3fce9 Binary files /dev/null and b/testsuite/phpbb/phpbb80.png differ diff --git a/testsuite/phpbb/phpbb81.png b/testsuite/phpbb/phpbb81.png new file mode 100644 index 0000000..b66e8a7 Binary files /dev/null and b/testsuite/phpbb/phpbb81.png differ diff --git a/testsuite/phpbb/phpbb82.png b/testsuite/phpbb/phpbb82.png new file mode 100644 index 0000000..a0a9c3f Binary files /dev/null and b/testsuite/phpbb/phpbb82.png differ diff --git a/testsuite/phpbb/phpbb83.png b/testsuite/phpbb/phpbb83.png new file mode 100644 index 0000000..0336e40 Binary files /dev/null and b/testsuite/phpbb/phpbb83.png differ diff --git a/testsuite/phpbb/phpbb84.png b/testsuite/phpbb/phpbb84.png new file mode 100644 index 0000000..3457b6a Binary files /dev/null and b/testsuite/phpbb/phpbb84.png differ diff --git a/testsuite/phpbb/phpbb85.png b/testsuite/phpbb/phpbb85.png new file mode 100644 index 0000000..ca478d1 Binary files /dev/null and b/testsuite/phpbb/phpbb85.png differ diff --git a/testsuite/phpbb/phpbb86.png b/testsuite/phpbb/phpbb86.png new file mode 100644 index 0000000..2caec06 Binary files /dev/null and b/testsuite/phpbb/phpbb86.png differ diff --git a/testsuite/phpbb/phpbb87.png b/testsuite/phpbb/phpbb87.png new file mode 100644 index 0000000..9ab6b1d Binary files /dev/null and b/testsuite/phpbb/phpbb87.png differ diff --git a/testsuite/phpbb/phpbb88.png b/testsuite/phpbb/phpbb88.png new file mode 100644 index 0000000..00cf72e Binary files /dev/null and b/testsuite/phpbb/phpbb88.png differ diff --git a/testsuite/phpbb/phpbb89.png b/testsuite/phpbb/phpbb89.png new file mode 100644 index 0000000..2355721 Binary files /dev/null and b/testsuite/phpbb/phpbb89.png differ diff --git a/testsuite/phpbb/phpbb90.png b/testsuite/phpbb/phpbb90.png new file mode 100644 index 0000000..205f4a3 Binary files /dev/null and b/testsuite/phpbb/phpbb90.png differ diff --git a/testsuite/phpbb/phpbb91.png b/testsuite/phpbb/phpbb91.png new file mode 100644 index 0000000..78d9aa3 Binary files /dev/null and b/testsuite/phpbb/phpbb91.png differ diff --git a/testsuite/phpbb/phpbb92.png b/testsuite/phpbb/phpbb92.png new file mode 100644 index 0000000..f5336d6 Binary files /dev/null and b/testsuite/phpbb/phpbb92.png differ diff --git a/testsuite/phpbb/phpbb93.png b/testsuite/phpbb/phpbb93.png new file mode 100644 index 0000000..2e6710f Binary files /dev/null and b/testsuite/phpbb/phpbb93.png differ diff --git a/testsuite/phpbb/phpbb94.png b/testsuite/phpbb/phpbb94.png new file mode 100644 index 0000000..5304d13 Binary files /dev/null and b/testsuite/phpbb/phpbb94.png differ diff --git a/testsuite/phpbb/phpbb95.png b/testsuite/phpbb/phpbb95.png new file mode 100644 index 0000000..88a2db4 Binary files /dev/null and b/testsuite/phpbb/phpbb95.png differ diff --git a/testsuite/phpbb/phpbb96.png b/testsuite/phpbb/phpbb96.png new file mode 100644 index 0000000..0101ffd Binary files /dev/null and b/testsuite/phpbb/phpbb96.png differ diff --git a/testsuite/phpbb/phpbb97.png b/testsuite/phpbb/phpbb97.png new file mode 100644 index 0000000..e12ff67 Binary files /dev/null and b/testsuite/phpbb/phpbb97.png differ diff --git a/testsuite/phpbb/phpbb98.png b/testsuite/phpbb/phpbb98.png new file mode 100644 index 0000000..7df4cfd Binary files /dev/null and b/testsuite/phpbb/phpbb98.png differ diff --git a/testsuite/phpbb/phpbb99.png b/testsuite/phpbb/phpbb99.png new file mode 100644 index 0000000..4bfb3a8 Binary files /dev/null and b/testsuite/phpbb/phpbb99.png differ diff --git a/testsuite/slashdot/slashdot00.jpeg b/testsuite/slashdot/slashdot00.jpeg new file mode 100644 index 0000000..f2e6143 Binary files /dev/null and b/testsuite/slashdot/slashdot00.jpeg differ diff --git a/testsuite/slashdot/slashdot01.jpeg b/testsuite/slashdot/slashdot01.jpeg new file mode 100644 index 0000000..bdb5f1e Binary files /dev/null and b/testsuite/slashdot/slashdot01.jpeg differ diff --git a/testsuite/slashdot/slashdot02.jpeg b/testsuite/slashdot/slashdot02.jpeg new file mode 100644 index 0000000..51dbd89 Binary files /dev/null and b/testsuite/slashdot/slashdot02.jpeg differ diff --git a/testsuite/slashdot/slashdot03.jpeg b/testsuite/slashdot/slashdot03.jpeg new file mode 100644 index 0000000..3b965ab Binary files /dev/null and b/testsuite/slashdot/slashdot03.jpeg differ diff --git a/testsuite/slashdot/slashdot04.jpeg b/testsuite/slashdot/slashdot04.jpeg new file mode 100644 index 0000000..0c9ca71 Binary files /dev/null and b/testsuite/slashdot/slashdot04.jpeg differ diff --git a/testsuite/slashdot/slashdot05.jpeg b/testsuite/slashdot/slashdot05.jpeg new file mode 100644 index 0000000..d2d19fa Binary files /dev/null and b/testsuite/slashdot/slashdot05.jpeg differ diff --git a/testsuite/slashdot/slashdot06.jpeg b/testsuite/slashdot/slashdot06.jpeg new file mode 100644 index 0000000..e30b395 Binary files /dev/null and b/testsuite/slashdot/slashdot06.jpeg differ diff --git a/testsuite/slashdot/slashdot07.jpeg b/testsuite/slashdot/slashdot07.jpeg new file mode 100644 index 0000000..f061f7e Binary files /dev/null and b/testsuite/slashdot/slashdot07.jpeg differ diff --git a/testsuite/slashdot/slashdot08.jpeg b/testsuite/slashdot/slashdot08.jpeg new file mode 100644 index 0000000..bf4d68a Binary files /dev/null and b/testsuite/slashdot/slashdot08.jpeg differ diff --git a/testsuite/slashdot/slashdot09.jpeg b/testsuite/slashdot/slashdot09.jpeg new file mode 100644 index 0000000..8519c30 Binary files /dev/null and b/testsuite/slashdot/slashdot09.jpeg differ diff --git a/testsuite/slashdot/slashdot10.jpeg b/testsuite/slashdot/slashdot10.jpeg new file mode 100644 index 0000000..30283aa Binary files /dev/null and b/testsuite/slashdot/slashdot10.jpeg differ diff --git a/testsuite/slashdot/slashdot11.jpeg b/testsuite/slashdot/slashdot11.jpeg new file mode 100644 index 0000000..718c579 Binary files /dev/null and b/testsuite/slashdot/slashdot11.jpeg differ diff --git a/testsuite/slashdot/slashdot12.jpeg b/testsuite/slashdot/slashdot12.jpeg new file mode 100644 index 0000000..9fd3bc9 Binary files /dev/null and b/testsuite/slashdot/slashdot12.jpeg differ diff --git a/testsuite/slashdot/slashdot13.jpeg b/testsuite/slashdot/slashdot13.jpeg new file mode 100644 index 0000000..d3bf306 Binary files /dev/null and b/testsuite/slashdot/slashdot13.jpeg differ diff --git a/testsuite/slashdot/slashdot14.jpeg b/testsuite/slashdot/slashdot14.jpeg new file mode 100644 index 0000000..44bfdc8 Binary files /dev/null and b/testsuite/slashdot/slashdot14.jpeg differ diff --git a/testsuite/slashdot/slashdot15.jpeg b/testsuite/slashdot/slashdot15.jpeg new file mode 100644 index 0000000..29ce926 Binary files /dev/null and b/testsuite/slashdot/slashdot15.jpeg differ diff --git a/testsuite/slashdot/slashdot16.jpeg b/testsuite/slashdot/slashdot16.jpeg new file mode 100644 index 0000000..caa5e1d Binary files /dev/null and b/testsuite/slashdot/slashdot16.jpeg differ diff --git a/testsuite/slashdot/slashdot17.jpeg b/testsuite/slashdot/slashdot17.jpeg new file mode 100644 index 0000000..bc5b23b Binary files /dev/null and b/testsuite/slashdot/slashdot17.jpeg differ diff --git a/testsuite/slashdot/slashdot18.jpeg b/testsuite/slashdot/slashdot18.jpeg new file mode 100644 index 0000000..e78c51f Binary files /dev/null and b/testsuite/slashdot/slashdot18.jpeg differ diff --git a/testsuite/slashdot/slashdot19.jpeg b/testsuite/slashdot/slashdot19.jpeg new file mode 100644 index 0000000..9e7c9a2 Binary files /dev/null and b/testsuite/slashdot/slashdot19.jpeg differ diff --git a/testsuite/slashdot/slashdot20.jpeg b/testsuite/slashdot/slashdot20.jpeg new file mode 100644 index 0000000..c25e730 Binary files /dev/null and b/testsuite/slashdot/slashdot20.jpeg differ diff --git a/testsuite/slashdot/slashdot21.jpeg b/testsuite/slashdot/slashdot21.jpeg new file mode 100644 index 0000000..7f64fcf Binary files /dev/null and b/testsuite/slashdot/slashdot21.jpeg differ diff --git a/testsuite/slashdot/slashdot22.jpeg b/testsuite/slashdot/slashdot22.jpeg new file mode 100644 index 0000000..029681f Binary files /dev/null and b/testsuite/slashdot/slashdot22.jpeg differ diff --git a/testsuite/slashdot/slashdot23.jpeg b/testsuite/slashdot/slashdot23.jpeg new file mode 100644 index 0000000..46a61c4 Binary files /dev/null and b/testsuite/slashdot/slashdot23.jpeg differ diff --git a/testsuite/slashdot/slashdot24.jpeg b/testsuite/slashdot/slashdot24.jpeg new file mode 100644 index 0000000..b2c8a81 Binary files /dev/null and b/testsuite/slashdot/slashdot24.jpeg differ diff --git a/testsuite/slashdot/slashdot25.jpeg b/testsuite/slashdot/slashdot25.jpeg new file mode 100644 index 0000000..aac1d4f Binary files /dev/null and b/testsuite/slashdot/slashdot25.jpeg differ diff --git a/testsuite/slashdot/slashdot26.jpeg b/testsuite/slashdot/slashdot26.jpeg new file mode 100644 index 0000000..f75466d Binary files /dev/null and b/testsuite/slashdot/slashdot26.jpeg differ diff --git a/testsuite/slashdot/slashdot27.jpeg b/testsuite/slashdot/slashdot27.jpeg new file mode 100644 index 0000000..5f065b8 Binary files /dev/null and b/testsuite/slashdot/slashdot27.jpeg differ diff --git a/testsuite/slashdot/slashdot28.jpeg b/testsuite/slashdot/slashdot28.jpeg new file mode 100644 index 0000000..b81591c Binary files /dev/null and b/testsuite/slashdot/slashdot28.jpeg differ diff --git a/testsuite/slashdot/slashdot29.jpeg b/testsuite/slashdot/slashdot29.jpeg new file mode 100644 index 0000000..6db8adc Binary files /dev/null and b/testsuite/slashdot/slashdot29.jpeg differ diff --git a/testsuite/slashdot/slashdot30.jpeg b/testsuite/slashdot/slashdot30.jpeg new file mode 100644 index 0000000..ed7f97a Binary files /dev/null and b/testsuite/slashdot/slashdot30.jpeg differ diff --git a/testsuite/slashdot/slashdot31.jpeg b/testsuite/slashdot/slashdot31.jpeg new file mode 100644 index 0000000..65d9cde Binary files /dev/null and b/testsuite/slashdot/slashdot31.jpeg differ diff --git a/testsuite/slashdot/slashdot32.jpeg b/testsuite/slashdot/slashdot32.jpeg new file mode 100644 index 0000000..10181fc Binary files /dev/null and b/testsuite/slashdot/slashdot32.jpeg differ diff --git a/testsuite/slashdot/slashdot33.jpeg b/testsuite/slashdot/slashdot33.jpeg new file mode 100644 index 0000000..bdfa630 Binary files /dev/null and b/testsuite/slashdot/slashdot33.jpeg differ diff --git a/testsuite/slashdot/slashdot34.jpeg b/testsuite/slashdot/slashdot34.jpeg new file mode 100644 index 0000000..9e3fd50 Binary files /dev/null and b/testsuite/slashdot/slashdot34.jpeg differ diff --git a/testsuite/slashdot/slashdot35.jpeg b/testsuite/slashdot/slashdot35.jpeg new file mode 100644 index 0000000..ae71a94 Binary files /dev/null and b/testsuite/slashdot/slashdot35.jpeg differ diff --git a/testsuite/slashdot/slashdot36.jpeg b/testsuite/slashdot/slashdot36.jpeg new file mode 100644 index 0000000..d5951d3 Binary files /dev/null and b/testsuite/slashdot/slashdot36.jpeg differ diff --git a/testsuite/slashdot/slashdot37.jpeg b/testsuite/slashdot/slashdot37.jpeg new file mode 100644 index 0000000..33f5949 Binary files /dev/null and b/testsuite/slashdot/slashdot37.jpeg differ diff --git a/testsuite/slashdot/slashdot38.jpeg b/testsuite/slashdot/slashdot38.jpeg new file mode 100644 index 0000000..bf4d68a Binary files /dev/null and b/testsuite/slashdot/slashdot38.jpeg differ diff --git a/testsuite/slashdot/slashdot39.jpeg b/testsuite/slashdot/slashdot39.jpeg new file mode 100644 index 0000000..6235dc7 Binary files /dev/null and b/testsuite/slashdot/slashdot39.jpeg differ diff --git a/testsuite/slashdot/slashdot40.jpeg b/testsuite/slashdot/slashdot40.jpeg new file mode 100644 index 0000000..c3ed647 Binary files /dev/null and b/testsuite/slashdot/slashdot40.jpeg differ diff --git a/testsuite/slashdot/slashdot41.jpeg b/testsuite/slashdot/slashdot41.jpeg new file mode 100644 index 0000000..569ea30 Binary files /dev/null and b/testsuite/slashdot/slashdot41.jpeg differ diff --git a/testsuite/slashdot/slashdot42.jpeg b/testsuite/slashdot/slashdot42.jpeg new file mode 100644 index 0000000..5fe2b4b Binary files /dev/null and b/testsuite/slashdot/slashdot42.jpeg differ diff --git a/testsuite/slashdot/slashdot43.jpeg b/testsuite/slashdot/slashdot43.jpeg new file mode 100644 index 0000000..32f61e8 Binary files /dev/null and b/testsuite/slashdot/slashdot43.jpeg differ diff --git a/testsuite/slashdot/slashdot44.jpeg b/testsuite/slashdot/slashdot44.jpeg new file mode 100644 index 0000000..e15503d Binary files /dev/null and b/testsuite/slashdot/slashdot44.jpeg differ diff --git a/testsuite/slashdot/slashdot45.jpeg b/testsuite/slashdot/slashdot45.jpeg new file mode 100644 index 0000000..b818a90 Binary files /dev/null and b/testsuite/slashdot/slashdot45.jpeg differ diff --git a/testsuite/slashdot/slashdot46.jpeg b/testsuite/slashdot/slashdot46.jpeg new file mode 100644 index 0000000..0d65023 Binary files /dev/null and b/testsuite/slashdot/slashdot46.jpeg differ diff --git a/testsuite/slashdot/slashdot47.jpeg b/testsuite/slashdot/slashdot47.jpeg new file mode 100644 index 0000000..212de16 Binary files /dev/null and b/testsuite/slashdot/slashdot47.jpeg differ diff --git a/testsuite/slashdot/slashdot48.jpeg b/testsuite/slashdot/slashdot48.jpeg new file mode 100644 index 0000000..b6342e9 Binary files /dev/null and b/testsuite/slashdot/slashdot48.jpeg differ diff --git a/testsuite/slashdot/slashdot49.jpeg b/testsuite/slashdot/slashdot49.jpeg new file mode 100644 index 0000000..b2f5ac9 Binary files /dev/null and b/testsuite/slashdot/slashdot49.jpeg differ diff --git a/testsuite/slashdot/slashdot50.jpeg b/testsuite/slashdot/slashdot50.jpeg new file mode 100644 index 0000000..63e8b4d Binary files /dev/null and b/testsuite/slashdot/slashdot50.jpeg differ diff --git a/testsuite/slashdot/slashdot51.jpeg b/testsuite/slashdot/slashdot51.jpeg new file mode 100644 index 0000000..d59716c Binary files /dev/null and b/testsuite/slashdot/slashdot51.jpeg differ diff --git a/testsuite/slashdot/slashdot52.jpeg b/testsuite/slashdot/slashdot52.jpeg new file mode 100644 index 0000000..8453e8c Binary files /dev/null and b/testsuite/slashdot/slashdot52.jpeg differ diff --git a/testsuite/slashdot/slashdot53.jpeg b/testsuite/slashdot/slashdot53.jpeg new file mode 100644 index 0000000..ec867a7 Binary files /dev/null and b/testsuite/slashdot/slashdot53.jpeg differ diff --git a/testsuite/slashdot/slashdot54.jpeg b/testsuite/slashdot/slashdot54.jpeg new file mode 100644 index 0000000..440052a Binary files /dev/null and b/testsuite/slashdot/slashdot54.jpeg differ diff --git a/testsuite/slashdot/slashdot55.jpeg b/testsuite/slashdot/slashdot55.jpeg new file mode 100644 index 0000000..1bf515e Binary files /dev/null and b/testsuite/slashdot/slashdot55.jpeg differ diff --git a/testsuite/slashdot/slashdot56.jpeg b/testsuite/slashdot/slashdot56.jpeg new file mode 100644 index 0000000..fdd5e9f Binary files /dev/null and b/testsuite/slashdot/slashdot56.jpeg differ diff --git a/testsuite/slashdot/slashdot57.jpeg b/testsuite/slashdot/slashdot57.jpeg new file mode 100644 index 0000000..6f7156d Binary files /dev/null and b/testsuite/slashdot/slashdot57.jpeg differ diff --git a/testsuite/slashdot/slashdot58.jpeg b/testsuite/slashdot/slashdot58.jpeg new file mode 100644 index 0000000..d4296d5 Binary files /dev/null and b/testsuite/slashdot/slashdot58.jpeg differ diff --git a/testsuite/slashdot/slashdot59.jpeg b/testsuite/slashdot/slashdot59.jpeg new file mode 100644 index 0000000..e2beb94 Binary files /dev/null and b/testsuite/slashdot/slashdot59.jpeg differ diff --git a/testsuite/slashdot/slashdot60.jpeg b/testsuite/slashdot/slashdot60.jpeg new file mode 100644 index 0000000..d8fdd39 Binary files /dev/null and b/testsuite/slashdot/slashdot60.jpeg differ diff --git a/testsuite/slashdot/slashdot61.jpeg b/testsuite/slashdot/slashdot61.jpeg new file mode 100644 index 0000000..4a8ddf2 Binary files /dev/null and b/testsuite/slashdot/slashdot61.jpeg differ diff --git a/testsuite/slashdot/slashdot62.jpeg b/testsuite/slashdot/slashdot62.jpeg new file mode 100644 index 0000000..eec774b Binary files /dev/null and b/testsuite/slashdot/slashdot62.jpeg differ diff --git a/testsuite/slashdot/slashdot63.jpeg b/testsuite/slashdot/slashdot63.jpeg new file mode 100644 index 0000000..3dfc2b6 Binary files /dev/null and b/testsuite/slashdot/slashdot63.jpeg differ diff --git a/testsuite/slashdot/slashdot64.jpeg b/testsuite/slashdot/slashdot64.jpeg new file mode 100644 index 0000000..831accc Binary files /dev/null and b/testsuite/slashdot/slashdot64.jpeg differ diff --git a/testsuite/slashdot/slashdot65.jpeg b/testsuite/slashdot/slashdot65.jpeg new file mode 100644 index 0000000..61751f3 Binary files /dev/null and b/testsuite/slashdot/slashdot65.jpeg differ diff --git a/testsuite/slashdot/slashdot66.jpeg b/testsuite/slashdot/slashdot66.jpeg new file mode 100644 index 0000000..0ef5382 Binary files /dev/null and b/testsuite/slashdot/slashdot66.jpeg differ diff --git a/testsuite/slashdot/slashdot67.jpeg b/testsuite/slashdot/slashdot67.jpeg new file mode 100644 index 0000000..5f76dde Binary files /dev/null and b/testsuite/slashdot/slashdot67.jpeg differ diff --git a/testsuite/slashdot/slashdot68.jpeg b/testsuite/slashdot/slashdot68.jpeg new file mode 100644 index 0000000..417fe4c Binary files /dev/null and b/testsuite/slashdot/slashdot68.jpeg differ diff --git a/testsuite/slashdot/slashdot69.jpeg b/testsuite/slashdot/slashdot69.jpeg new file mode 100644 index 0000000..65e123b Binary files /dev/null and b/testsuite/slashdot/slashdot69.jpeg differ diff --git a/testsuite/slashdot/slashdot70.jpeg b/testsuite/slashdot/slashdot70.jpeg new file mode 100644 index 0000000..e96aa07 Binary files /dev/null and b/testsuite/slashdot/slashdot70.jpeg differ diff --git a/testsuite/slashdot/slashdot71.jpeg b/testsuite/slashdot/slashdot71.jpeg new file mode 100644 index 0000000..760674b Binary files /dev/null and b/testsuite/slashdot/slashdot71.jpeg differ diff --git a/testsuite/slashdot/slashdot72.jpeg b/testsuite/slashdot/slashdot72.jpeg new file mode 100644 index 0000000..992e49c Binary files /dev/null and b/testsuite/slashdot/slashdot72.jpeg differ diff --git a/testsuite/slashdot/slashdot73.jpeg b/testsuite/slashdot/slashdot73.jpeg new file mode 100644 index 0000000..5a70825 Binary files /dev/null and b/testsuite/slashdot/slashdot73.jpeg differ diff --git a/testsuite/slashdot/slashdot74.jpeg b/testsuite/slashdot/slashdot74.jpeg new file mode 100644 index 0000000..70f298b Binary files /dev/null and b/testsuite/slashdot/slashdot74.jpeg differ diff --git a/testsuite/slashdot/slashdot75.jpeg b/testsuite/slashdot/slashdot75.jpeg new file mode 100644 index 0000000..fa8a0ee Binary files /dev/null and b/testsuite/slashdot/slashdot75.jpeg differ diff --git a/testsuite/slashdot/slashdot76.jpeg b/testsuite/slashdot/slashdot76.jpeg new file mode 100644 index 0000000..8dd90aa Binary files /dev/null and b/testsuite/slashdot/slashdot76.jpeg differ diff --git a/testsuite/slashdot/slashdot77.jpeg b/testsuite/slashdot/slashdot77.jpeg new file mode 100644 index 0000000..9e0313e Binary files /dev/null and b/testsuite/slashdot/slashdot77.jpeg differ diff --git a/testsuite/slashdot/slashdot78.jpeg b/testsuite/slashdot/slashdot78.jpeg new file mode 100644 index 0000000..b97ed28 Binary files /dev/null and b/testsuite/slashdot/slashdot78.jpeg differ diff --git a/testsuite/slashdot/slashdot79.jpeg b/testsuite/slashdot/slashdot79.jpeg new file mode 100644 index 0000000..520008c Binary files /dev/null and b/testsuite/slashdot/slashdot79.jpeg differ diff --git a/testsuite/slashdot/slashdot80.jpeg b/testsuite/slashdot/slashdot80.jpeg new file mode 100644 index 0000000..85d8b0b Binary files /dev/null and b/testsuite/slashdot/slashdot80.jpeg differ diff --git a/testsuite/slashdot/slashdot81.jpeg b/testsuite/slashdot/slashdot81.jpeg new file mode 100644 index 0000000..6af51fd Binary files /dev/null and b/testsuite/slashdot/slashdot81.jpeg differ diff --git a/testsuite/slashdot/slashdot82.jpeg b/testsuite/slashdot/slashdot82.jpeg new file mode 100644 index 0000000..fe6acff Binary files /dev/null and b/testsuite/slashdot/slashdot82.jpeg differ diff --git a/testsuite/slashdot/slashdot83.jpeg b/testsuite/slashdot/slashdot83.jpeg new file mode 100644 index 0000000..6c7766b Binary files /dev/null and b/testsuite/slashdot/slashdot83.jpeg differ diff --git a/testsuite/slashdot/slashdot84.jpeg b/testsuite/slashdot/slashdot84.jpeg new file mode 100644 index 0000000..08b3144 Binary files /dev/null and b/testsuite/slashdot/slashdot84.jpeg differ diff --git a/testsuite/slashdot/slashdot85.jpeg b/testsuite/slashdot/slashdot85.jpeg new file mode 100644 index 0000000..22a3449 Binary files /dev/null and b/testsuite/slashdot/slashdot85.jpeg differ diff --git a/testsuite/slashdot/slashdot86.jpeg b/testsuite/slashdot/slashdot86.jpeg new file mode 100644 index 0000000..af6e869 Binary files /dev/null and b/testsuite/slashdot/slashdot86.jpeg differ diff --git a/testsuite/slashdot/slashdot87.jpeg b/testsuite/slashdot/slashdot87.jpeg new file mode 100644 index 0000000..5ee9edd Binary files /dev/null and b/testsuite/slashdot/slashdot87.jpeg differ diff --git a/testsuite/slashdot/slashdot88.jpeg b/testsuite/slashdot/slashdot88.jpeg new file mode 100644 index 0000000..ceaabec Binary files /dev/null and b/testsuite/slashdot/slashdot88.jpeg differ diff --git a/testsuite/slashdot/slashdot89.jpeg b/testsuite/slashdot/slashdot89.jpeg new file mode 100644 index 0000000..2a2785e Binary files /dev/null and b/testsuite/slashdot/slashdot89.jpeg differ diff --git a/testsuite/slashdot/slashdot90.jpeg b/testsuite/slashdot/slashdot90.jpeg new file mode 100644 index 0000000..bff3686 Binary files /dev/null and b/testsuite/slashdot/slashdot90.jpeg differ diff --git a/testsuite/slashdot/slashdot91.jpeg b/testsuite/slashdot/slashdot91.jpeg new file mode 100644 index 0000000..3f3c71e Binary files /dev/null and b/testsuite/slashdot/slashdot91.jpeg differ diff --git a/testsuite/slashdot/slashdot92.jpeg b/testsuite/slashdot/slashdot92.jpeg new file mode 100644 index 0000000..f2f5cfd Binary files /dev/null and b/testsuite/slashdot/slashdot92.jpeg differ diff --git a/testsuite/slashdot/slashdot93.jpeg b/testsuite/slashdot/slashdot93.jpeg new file mode 100644 index 0000000..a626df0 Binary files /dev/null and b/testsuite/slashdot/slashdot93.jpeg differ diff --git a/testsuite/slashdot/slashdot94.jpeg b/testsuite/slashdot/slashdot94.jpeg new file mode 100644 index 0000000..33e4cd3 Binary files /dev/null and b/testsuite/slashdot/slashdot94.jpeg differ diff --git a/testsuite/slashdot/slashdot95.jpeg b/testsuite/slashdot/slashdot95.jpeg new file mode 100644 index 0000000..e68957c Binary files /dev/null and b/testsuite/slashdot/slashdot95.jpeg differ diff --git a/testsuite/slashdot/slashdot96.jpeg b/testsuite/slashdot/slashdot96.jpeg new file mode 100644 index 0000000..f80c77f Binary files /dev/null and b/testsuite/slashdot/slashdot96.jpeg differ diff --git a/testsuite/slashdot/slashdot97.jpeg b/testsuite/slashdot/slashdot97.jpeg new file mode 100644 index 0000000..1d8b275 Binary files /dev/null and b/testsuite/slashdot/slashdot97.jpeg differ diff --git a/testsuite/slashdot/slashdot98.jpeg b/testsuite/slashdot/slashdot98.jpeg new file mode 100644 index 0000000..2561672 Binary files /dev/null and b/testsuite/slashdot/slashdot98.jpeg differ diff --git a/testsuite/slashdot/slashdot99.jpeg b/testsuite/slashdot/slashdot99.jpeg new file mode 100644 index 0000000..94e80d7 Binary files /dev/null and b/testsuite/slashdot/slashdot99.jpeg differ