%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/webmin/at/ |
Upload File : |
# freebsd-lib.pl use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; no warnings "redefine"; our (%config); sub list_atjobs { my @rv; opendir(my $DIR, $config{'at_dir'}) || return (); while(my $f = readdir($DIR)) { my $p = "$config{'at_dir'}/$f"; if ($f =~ /^c(\S{5})(\S+)$/) { my @st = stat($p); my $job = { 'id' => hex($1), 'date' => hex($2) * 60, 'user' => scalar(getpwuid($st[4])), 'created' => $st[9] }; open(my $FILE, "<".$p); while(<$FILE>) { $job->{'cmd'} .= $_; } close($FILE); $job->{'realcmd'} = $job->{'cmd'}; $job->{'realcmd'} =~ s/^[\000-\177]+cd\s+(\S+)\s+\|\|\s+{\n.*\n.*\n.*\n//; push(@rv, $job); } } closedir($DIR); return @rv; } # create_atjob(user, time, commands, directory, send-mail) sub create_atjob { my @tm = localtime($_[1]); my $date = sprintf "%2.2d:%2.2d %d.%d.%d", $tm[2], $tm[1], $tm[3], $tm[4]+1, $tm[5]+1900; my $mailflag = $_[4] ? "-m" : ""; my $cmd = "cd ".quotemeta($_[3])." ; at $mailflag $date"; my @uinfo = getpwnam($_[0]); if ($uinfo[2] != $<) { # Only SU if we are not already the user $cmd = &command_as_user($_[0], 0, $cmd); } no strict "subs"; &open_execute_command(AT, "$cmd >/dev/null 2>&1", 0); print AT $_[2]; close(AT); use strict "subs"; &additional_log('exec', undef, "su \"$_[0]\" -c \"cd $_[3] ; at $date\""); } # delete_atjob(id) sub delete_atjob { &system_logged("atrm ".quotemeta($_[0])." >/dev/null 2>&1"); }