ntop
true
yes
Change
NTOP Admin Password
password
Enter the password for the NTOP Web GUI. Minimum 5 characters.
password
NTOP Admin Password AGAIN
passwordagain
password
if($_POST['password'] == $_POST['passwordagain']) {
system("/usr/local/bin/ntop --set-admin-password=" . $_POST['password']);
system("killall ntop 2>/dev/null");
system("/usr/local/etc/rc.d/ntop.sh");
} else {
echo "Passwords do not match!";
exit;
}
mwexec("/usr/bin/killall ntop");
system("rm /usr/local/etc/rc.d/ntop.sh");
$fout = fopen("/usr/local/etc/rc.d/ntop.sh","w");
fwrite($fout, "#!/bin/sh\n\n");
fwrite($fout, "/usr/local/bin/ntop -u root -d --ipv4 -M\n\n");
fclose($fout);
system("chmod 555 /usr/local/etc/rc.d/ntop.sh");