⚝
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 :
~
/
proc
/
self
/
root
/
usr
/
share
/
webmin
/
logrotate
/
View File Name :
save_sched.cgi
#!/usr/bin/perl # save_sched.cgi # Create, update or delete the rotation cron job require './logrotate-lib.pl'; &ReadParse(); &foreign_require("cron", "cron-lib.pl"); @jobs = &cron::list_cron_jobs(); if ($in{'idx'} ne "") { $oldjob = $job = $jobs[$in{'idx'}]; } else { $job = { 'user' => 'root', 'command' => &has_command($config{'logrotate'})." ". $config{'logrotate_conf'}, 'active' => 1 }; } &lock_file(&cron::cron_file($job)); &error_setup($text{'sched_err'}); &cron::parse_times_input($job, \%in) if ($in{'sched'}); if ($oldjob && $in{'sched'}) { # Just update &cron::change_cron_job($job); $action = "modify"; } elsif ($oldjob && !$in{'sched'}) { # Delete &cron::delete_cron_job($job); $action = "delete"; } elsif (!$oldjob && $in{'sched'}) { # Create new &cron::create_cron_job($job); $action = "create"; } &unlock_file(&cron::cron_file($job)); &webmin_log($action, "sched"); &redirect("");