HEX
Server: Apache/2.4.18 (Ubuntu)
System: Linux phubuntu06.apexhosting.com 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User: master06 (1000)
PHP: 7.0.33-0ubuntu0.16.04.16
Disabled: 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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Upload Files
File: //usr/share/webmin/authentic-theme/extensions/file-manager/compress.cgi
#!/usr/bin/perl

#
# Authentic Theme (https://github.com/authentic-theme/authentic-theme)
# Copyright Ilia Rostovtsev <programming@rostovtsev.io>
# Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE)
#
use strict;

use File::Basename;

our (%in, %text, $cwd, $path);

require(dirname(__FILE__) . '/file-manager-lib.pm');

if (!$in{'arch'}) {
    redirect_local('list.cgi?path=' . urlize($path) . '&module=' . $in{'module'});
}

my %errors;
my $command;
my $extension;

my @entries_list = get_entries_list();
my $delete       = $in{'arcmove'} ? 1 : 0;
my $encrypt      = $in{'arcencr'} ? 1 : 0;
my $password     = $in{'arcencr_val'};
my $key_id       = quotemeta($in{'arkkey'});

if ($in{'method'} eq 'tar') {
    my $list = transname();
    open my $fh, ">", $list or die $!;
    print $fh "$_\n" for @entries_list;
    close $fh;

    my $file  = "$cwd/$in{'arch'}.tar.gz";
    my $fileq = quotemeta($file);
    $command = "tar czf " . $fileq . " -C " . quotemeta($cwd) . " -T " . $list;
    system($command);

    if ($encrypt && $key_id) {
        my %webminconfig = foreign_config("webmin");
        my $gpgpath      = quotemeta($webminconfig{'gpg'} || "gpg");
        my $gpg          = "$gpgpath --encrypt --always-trust --recipient $key_id $fileq";

        if (!has_command($gpgpath)) {
            $errors{ $text{'theme_xhred_global_error'} } = text('theme_xhred_global_no_such_command', $gpgpath);
        }

        if (system($gpg) != 0) {
            $errors{ html_escape($file) } = "$text{'filemanager_archive_gpg_error'}: $?";
        }
        unlink_file($file);
    }
} elsif ($in{'method'} eq 'zip') {
    my $pparam;
    if ($encrypt && $password) {
        $pparam = (" -P " . quotemeta($password) . " ");
    }
    $command = "cd " . quotemeta($cwd) . " && zip $pparam -r " . quotemeta("$cwd/$in{'arch'}.zip");
    foreach my $name (@entries_list) {
        $command .= " " . quotemeta($name);

        if (!-e ($cwd . '/' . $name)) {
            $errors{ urlize(html_escape($name)) } = lc($text{'theme_xhred_global_no_target'});
        }
    }
    system($command);
}

if ($delete) {
    if (!%errors) {
        foreach my $name (@entries_list) {
            unlink_file("$cwd/$name");
        }
    } else {
        $errors{ $text{'theme_xhred_filemanager_archive_move_to'} } = $text{'filemanager_archive_move_to_archive_failed'};
    }

}

redirect_local(
           'list.cgi?path=' . urlize($path) . '&module=' . $in{'module'} . '&error=' . get_errors(\%errors) . extra_query());