Author: jmm-guest Date: 2005-09-24 09:36:26 +0000 (Sat, 24 Sep 2005) New Revision: 2148 Modified: data/CAN/list tsck/tsck.py Log: correct usermin/webmin fixed versions Modified: data/CAN/list ==================================================================--- data/CAN/list 2005-09-24 09:35:49 UTC (rev 2147) +++ data/CAN/list 2005-09-24 09:36:26 UTC (rev 2148) @@ -5,8 +5,8 @@ CAN-2005-3043 (SQL injection vulnerability in AddItem.asp in Mall23 eCommerce allows ...) NOT-FOR-US: Mall23 eCommerce CAN-2005-3042 (miniserv.pl in Webmin before 1.230 and Usermin before 1.160, when ...) - - webmin 1.220-1 (high; bug #329741) - - usermin 1.150-1 (high; bug #329742) + - webmin 1.230-1 (high; bug #329741) + - usermin 1.160-1 (high; bug #329742) NOTE: SNS Advisory 83, http://marc.theaimsgroup.com/?m=112733083203821 CAN-2005-3041 (Unspecified "drag-and-drop vulnerability" in Opera Web Browser before ...) NOT-FOR-US: Opera Modified: tsck/tsck.py ==================================================================--- tsck/tsck.py 2005-09-24 09:35:49 UTC (rev 2147) +++ tsck/tsck.py 2005-09-24 09:36:26 UTC (rev 2148) @@ -1,5 +1,14 @@ #!/usr/bin/python +import httplib +conn = httplib.HTTPConnection("spohr.debian.raw") +conn.request("GET", "/~joeyh/testing-security.html") +r1 = conn.getresponse() +print r1.status, r1.reason +data1 = r1.read() +print data1 +conn.close() + import os, re status = open("/var/lib/dpkg/status", "r")