Files
metasploit-gs/modules/exploits
Ruslaideemin 4e41e871bb mozilla_reduceright.rb - fix regex error.
[] is character class, and will match on 1, 6, 7, and |.
Where as (16|17) will match on either 16, or 17.

irb(main):053:0> y = /Firefox\/3\.6\.[16|17]/
=> /Firefox\/3\.6\.[16|17]/
irb(main):054:0> x = "Firefox/3.6.13"
=> "Firefox/3.6.13"
irb(main):055:0> x =~ y
=> 0
irb(main):056:0> y = /Firefox\/3\.6\.(16|17)/
=> /Firefox\/3\.6\.(16|17)/
irb(main):057:0> x =~ y
=> nil
2013-06-11 11:52:27 +10:00
..
2013-01-04 00:48:10 +01:00
2013-01-04 00:48:10 +01:00
2013-05-20 16:21:03 -05:00
2013-01-04 00:48:10 +01:00
2013-01-04 00:48:10 +01:00
2013-01-04 00:48:10 +01:00
2013-03-04 10:54:33 -06:00
2013-01-04 00:48:10 +01:00
2013-05-16 19:03:47 +02:00