⚝
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
/
proftpd
/
View File Name :
save_dserv.cgi
#!/usr/bin/perl # save_dserv.cgi # Save directory section options require './proftpd-lib.pl'; &ReadParse(); if ($in{'global'}) { $conf = &get_config(); $conf = &get_or_create_global($conf); } else { ($conf, $v) = &get_virtual_config($in{'virt'}); } if ($in{'anon'}) { $anon = &find_directive_struct("Anonymous", $conf); $conf = $anon->{'members'}; } $d = $conf->[$in{'idx'}]; &error_setup($text{'dserv_err'}); if ($in{'delete'}) { # Delete the directory &lock_file($d->{'file'}); &before_changing(); $lref = &read_file_lines($d->{'file'}); splice(@$lref, $d->{'line'}, $d->{'eline'} - $d->{'line'} + 1); &flush_file_lines(); &after_changing(); &unlock_file($d->{'file'}); &webmin_log("dir", "delete", "$v->{'value'}:$d->{'words'}->[0]"); if ($in{'global'}) { &redirect(""); } elsif ($in{'anon'}) { &redirect("anon_index.cgi?virt=$in{'virt'}"); } else { &redirect("virt_index.cgi?virt=$in{'virt'}"); } } else { # Update the directory $in{'dir'} =~ /^\S+$/ || &error($text{'dserv_edir'}); &lock_file($d->{'file'}); &before_changing(); $lref = &read_file_lines($d->{'file'}); $lref->[$d->{'line'}] = "
"; &flush_file_lines(); &after_changing(); &unlock_file($d->{'file'}); &webmin_log("dir", "save", "$v->{'value'}:$d->{'words'}->[0]"); &redirect("dir_index.cgi?virt=$in{'virt'}&idx=$in{'idx'}&anon=$in{'anon'}&global=$in{'global'}"); }