| Server IP : 104.21.25.180 / Your IP : 104.23.197.122 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/mysql/ |
Upload File : |
#!/usr/bin/perl
# Delete several selected host permissions
require './mysql-lib.pl';
&ReadParse();
$access{'perms'} || &error($text{'perms_edb'});
&error_setup($text{'hosts_derr'});
@d = split(/\0/, $in{'d'});
@d || &error($trext{'hosts_enone'});
if (!$in{'confirm'}) {
# Ask first
&ui_print_header(undef, $text{'hosts_dtitle'}, "");
print &ui_confirmation_form("delete_hosts.cgi",
&text('hosts_drusure', scalar(@d)),
[ map { [ "d", $_ ] } @d ],
[ [ "confirm", $text{'hosts_dok'} ] ],
);
&ui_print_footer('list_hosts.cgi', $text{'hosts_return'},
"", $text{'index_return'});
}
else {
# Delete the users
foreach $hdu (@d) {
($host, $db) = split(/ /, $hdu);
$access{'perms'} == 1 || &can_edit_db($db) ||
&error($text{'perms_edb'});
&execute_sql_logged($master_db,
"delete from host where host = '$host' ".
"and db = '$db'");
}
&execute_sql_logged($master_db, 'flush privileges');
# Log it
&webmin_log("delete", "hosts", scalar(@d));
&redirect("list_hosts.cgi");
}