Add hyphens and digits to group regex

unstable
Jonathan Claudius 2014-04-22 21:34:08 -04:00
parent 01d843f78f
commit 4d9ece2f9a
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class Metasploit3 < Msf::Auxiliary
match = res.body.match(group_name_regex)
group_string = match[1]
groups = group_string.scan(/'(\w+)'/).flatten.to_set
groups = group_string.scan(/'([\w\-0-9]+)'/).flatten.to_set
end
return groups