Server IP : 195.201.23.43 / Your IP : 3.17.156.160 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/usermin/ |
Upload File : |
#!/usr/bin/perl # change_ui.cgi # Change colour scheme require './usermin-lib.pl'; $access{'ui'} || &error($text{'acl_ecannot'}); &error_setup($text{'ui_err'}); &ReadParse(); $in{'feedback_def'} || $in{'feedback'} =~ /\S/ || &error($text{'ui_efeedback'}); $in{'feedbackmail_def'} || &to_ipaddress($in{'feedbackmail'}) || &to_ip6address($in{'feedbackmail'}) || &error($text{'ui_efeedbackmail'}); $in{'feedbackhost_def'} || $in{'feedbackhost'} =~ /^\S+$/ || &error($text{'ui_efeedbackhost'}); &lock_file($usermin_config); &get_usermin_config(\%uconfig); for($i=0; $i<@webmin::cs_names; $i++) { $cd = $webmin::cs_codes[$i]; if ($in{"${cd}_def"}) { delete($uconfig{$cd}); } elsif ($in{"${cd}"} !~ /^[0-9a-fA-F]{6}$/) { &error(&text('ui_ergb', $webmin::cs_names[$i] . $in{"${cd}_rgb"})); } else { $uconfig{$cd} = $in{"${cd}"}; } } $uconfig{'texttitles'} = $in{'texttitles'}; $uconfig{'sysinfo'} = $in{'sysinfo'}; $uconfig{'feedback'} = $in{'feedback_def'} ? undef : $in{'feedback'}; $uconfig{'feedbackmail'} = $in{'feedbackmail_def'} ? undef :$in{'feedbackmail'}; $uconfig{'feedbackhost'} = $in{'feedbackhost_def'} ? undef :$in{'feedbackhost'}; $uconfig{'gotoone'} = $in{'gotoone'}; $uconfig{'gotomodule'} = $in{'gotomodule'}; $uconfig{'nohostname'} = $in{'nohostname'}; $uconfig{'showlogin'} = $in{'showlogin'}; $uconfig{'hostnamemode'} = $in{'hostnamemode'}; $uconfig{'hostnamedisplay'} = $in{'hostnamedisplay'}; $uconfig{'notabs'} = $in{'notabs'}; &write_file($usermin_config, \%uconfig); &unlock_file($usermin_config); &webmin_log('ui', undef, undef, \%in); &redirect("");Private