Adding a case for Linux and friends for finger enumeration.

git-svn-id: file:///home/svn/framework3/trunk@9354 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Tod Beardsley 2010-05-24 21:44:17 +00:00
parent afd52bd798
commit f37d61922b
1 changed files with 7 additions and 0 deletions

View File

@ -156,6 +156,13 @@ class Metasploit3 < Msf::Auxiliary
@users[$1] ||= {}
next
end
# Debian GNU/Linux
if(line =~ /^\s*Username:\s*([^\s]+)\s+/i)
@users[$1] ||= {}
next
end
end
end
end