diff --git a/msfvenom b/msfvenom index 7232976ce1..622445c7ad 100755 --- a/msfvenom +++ b/msfvenom @@ -128,7 +128,7 @@ def parse_args if args args.each do |x| k,v = x.split('=', 2) - datastore[k] = v.to_s + datastore[k.upcase] = v.to_s end end @@ -299,7 +299,6 @@ if opts[:payload] end end - # Normalize the options opts[:platform] = Msf::Module::PlatformList.transform(opts[:platform]) if opts[:platform] opts[:badchars] = Rex::Text.hex_to_raw(opts[:badchars]) if opts[:badchars]