⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
dovecot
/
View File Name :
save_net.cgi
#!/usr/bin/perl # Update networking options require './dovecot-lib.pl'; &ReadParse(); &error_setup($text{'net_err'}); $conf = &get_config(); &lock_dovecot_files($conf); &save_directive($conf, "protocols", join(" ", split(/\0/, $in{'protocols'}))); $sslopt = &find("ssl_disable", $conf, 2) ? "ssl_disable" : "ssl"; &save_directive($conf, $sslopt, $in{$sslopt} eq '' ? undef : $in{$sslopt}); @listens = &find("imap_listen", $conf, 2) ? ("imap_listen", "pop3_listen", "imaps_listen", "pop3s_listen") : ("listen", "ssl_listen"); foreach $l (@listens) { if ($in{$l."_mode"} == 0) { $listen = undef; } elsif ($in{$l."_mode"} == 1) { $listen = "[::]"; } elsif ($in{$l."_mode"} == 2) { $listen = "*"; } elsif ($in{$l."_mode"} == 3) { &check_ipaddress($in{$l}) || &error($text{'net_e'.$l}); $listen = $in{$l}; } &save_directive($conf, $l, $listen); } &flush_file_lines(); &unlock_dovecot_files($conf); &webmin_log("net"); &redirect("");