Cant handle space characters either

bug/bundler_fix
Meatballs 2014-02-08 19:16:42 +00:00
parent a42e97395b
commit 92f779ed1b
No known key found for this signature in database
GPG Key ID: 5380EAF01F2F8B38
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Metasploit3 < Msf::Encoder
return buf return buf
end end
if state.badchars.include? '-' if (state.badchars.include? '-') || (state.badchars.include? ' ')
return buf return buf
end end