"._("Weak Password Detection")." |
\n";
echo "| "._("Type")." | "._("Name")." | "._("Secret")." | "._("Message")." |
";
$weak = weakpasswords_get_users();
if(sizeof($weak) > 0) {
foreach ($weak as $details) {
echo '| '.$details['deviceortrunk'].' | '.$details['name'].' | '.$details['secret'].' | '.$details['message']." |
";
}
} else {
echo "| "._("No weak secrets detected on this system.")." |
";
}
// implementation of module hook
// object was initialized in config.php
echo $module_hook->hookHtml;
?>