MOON
Server: Apache
System: Linux cl1170g 4.19.62-mod-std-ipv6-64-rescue #828825 SMP Tue Jul 30 13:54:49 UTC 2019 x86_64
User: wh0f20bb (1057)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //proc/thread-self/root/root/webmin-1.881/proftpd/create_ftpaccess.cgi
#!/usr/bin/perl
# create_ftpaccess.cgi
# Creates a new .ftpaccess file for some directory

require './proftpd-lib.pl';
&ReadParse();
$conf = &get_config();

if (-d $in{'file'}) {
	# user entered a directory.. create a file in that directory
	$file = "$in{'file'}/.ftpaccess";
	}
else { $file = $in{'file'}; }

# create the file (if needed), and add to the known list
&lock_file($file);
if (!(-r $file)) {
	&open_lock_tempfile(FTPACCESS, ">$file") || &error($!);
	&close_tempfile(FTPACCESS);
	chmod(0755, $file);
	}
$site{'ftpaccess'} = join(' ', &unique(@ftpaccess_files, $file));
&write_file("$module_config_directory/site", \%site);
&unlock_file($file);
&webmin_log("ftpaccess", "create", $file);

# redirect to editing index
&redirect("ftpaccess_index.cgi?file=".&urlize($file));