⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
sendmail
/
View File Name :
delete_mailers.cgi
#!/usr/bin/perl # Delete several mailers require './sendmail-lib.pl'; require './mailers-lib.pl'; &ReadParse(); &error_setup($text{'mdelete_err'}); $conf = &get_sendmailcf(); $vfile = &mailers_file($conf); ($vdbm, $vdbmtype) = &mailers_dbm($conf); # Find and validate @d = split(/\0/, $in{'d'}); @d || &error($text{'adelete_enone'}); @virts = &list_mailers($vfile); foreach $d (@d) { ($virt) = grep { $_->{'domain'} eq $d } @virts; if ($virt) { push(@delvirts, $virt); } } # Delete the aliases &lock_file($vfile); foreach $virt (@delvirts) { &delete_mailer($virt, $vfile, $vdbm, $vdbmtype); } &unlock_file($vfile); &webmin_log("delete", "mailers", scalar(@delvirts)); &redirect("list_mailers.cgi");