Give warning if default username 'admin' is still used

This commit is contained in:
Peter
2014-10-19 12:28:59 +02:00
parent 5a605d686c
commit 74b9776801

View File

@@ -333,6 +333,9 @@ def main
else
puts "#{info('[+]')} Identified the following #{wp_users.size} user/s:"
wp_users.output(margin_left: ' ' * 4)
if wp_users[0].login == "admin"
puts "#{warning('[!]')} Default first WordPress username 'admin' is still used"
end
end
else