Files
metasploit-gs/modules/exploits/multi
William Vu d920bb4615 Fix bad regex on length of "Metasploit" string
It won't match a char because it's a newline. While sticking "m" on the
end of the regex would work, there is zero reason we can't hardcode the
length, since the string is fixed.

irb(main):001:0> "\nhi" =~ /.hi/
=> nil
irb(main):002:0> "\nhi" =~ /.hi/m
=> 0
irb(main):003:0>
2020-04-14 14:01:17 -05:00
..
2017-07-24 06:26:21 -07:00
2018-05-25 02:59:08 -05:00
2017-07-24 06:26:21 -07:00
2020-03-30 12:49:58 +07:00
2017-11-09 03:00:24 +11:00
2017-07-24 06:26:21 -07:00
2017-07-24 06:26:21 -07:00
2017-07-24 06:26:21 -07:00
2019-10-02 13:35:25 +02:00
2017-07-24 06:26:21 -07:00
2018-02-27 04:30:09 -06:00