!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/share/webmin/usermin/   drwxr-xr-x
Free 29.07 GB of 117.98 GB (24.64%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     backup_config.pl (2.17 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

do 'usermin-lib.pl';

# backup_config_files()
# Returns files and directories that can be backed up
sub backup_config_files
{
&get_usermin_miniserv_config(\%miniserv);
local @rv = ( "$config{'usermin_dir'}/config",
          "$config{'usermin_dir'}/miniserv.conf",
          "$config{'usermin_dir'}/webmin.cats",
          "$config{'usermin_dir'}/webmin.catnames",
          "$config{'usermin_dir'}/usermin.mods",
          $miniserv{'keyfile'},
          $miniserv{'certfile'},
          $miniserv{'ca'},
          "$config{'usermin_dir'}/webmin.acl",
          $miniserv{'userfile'},
          "$config{'usermin_dir'}/user.acl",
        );
foreach my $m (&list_modules()) {
    push(@rv, "$config{'usermin_dir'}/$m->{'dir'}/config");
    push(@rv, "$config{'usermin_dir'}/$m->{'dir'}/uconfig");
    }
return @rv;
}

# pre_backup(&files)
# Called before the files are actually read
sub pre_backup
{
return undef;
}

# post_backup(&files)
# Called after the files are actually read
sub post_backup
{
return undef;
}

# pre_restore(&files)
# Called before the files are restored from a backup
sub pre_restore
{
# Get current configs, for later merging
&get_usermin_miniserv_config(\%oldminiserv);
&read_file("$config{'usermin_dir'}/config", \%oldconfig);
return undef;
}

# post_restore(&files)
# Called after the files are restored from a backup
sub post_restore
{
# Merge in local settings that cannot be copied
local %miniserv;
&get_usermin_miniserv_config(\%miniserv);
foreach my $k (keys %oldminiserv) {
    my $copy = 0;
    foreach my $keep ("root", "mimetypes", "logfile", "pidfile",
              "env_WEBMIN_CONFIG", "env_WEBMIN_VAR", "logout",
              "passwd_.*") {
        $copy = 1 if ($k =~ /^$keep$/);
        }
    $miniserv{$k} = $oldminiserv{$k} if ($copy);
    }
&put_usermin_miniserv_config(\%miniserv);

local %gconfig;
&read_file("$config{'usermin_dir'}/config", \%gconfig);
foreach my $k (keys %oldconfig) {
    my $copy = 0;
    foreach my $nocopy ("os_type", "os_version",
                "real_os_type", "real_os_version",
                "find_pid_command", "ld_env", "passwd_.*") {
        $copy = 1 if ($k =~ /^$keep$/);
        }
    $config{$k} = $oldconfig{$k} if ($copy);
    }
&write_file("$config{'usermin_dir'}/config", \%gconfig);

&flush_modules_cache();
&restart_usermin_miniserv();
return undef;
}

1;


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0069 ]--