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


Viewing file:     inbox_login_error.cgi (1.17 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# inbox_login_error.cgi
# Let user update IMAP/POP3 login credentials
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our (%text, %in);
our ($remote_user, $remote_pass);

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

my @folders = &list_folders_sorted();
my ($folder) = grep { $_->{'index'} == $in{'folder'} } @folders;

# Check if this is a POP3 or IMAP inbox with no login set
if ($folder->{'type'} == 2 || $folder->{'type'} == 4) {
    &ui_print_header(undef, &text('error'), undef,
             undef, undef, 1);
    print &ui_form_start("inbox_login.cgi", "post");
    print &ui_hidden("folder", $folder->{'index'}),"\n";
    print &ui_table_start(
          $folder->{'type'} == 2 ? $text{'mail_loginheader'}
                     : $text{'mail_loginheader2'}, undef, 2);
    print &ui_table_row(undef, &text('mail_logindesc',
                     "<tt>$folder->{'server'}</tt>"), 2);

    print &ui_table_row($text{'mail_loginuser'},
                &ui_textbox("user", $remote_user, 30));
    print &ui_table_row($text{'mail_loginpass'},
                &ui_password("pass", $remote_pass, 30));

    print &ui_table_end();
    print &ui_form_end([ [ "login", $text{'mail_login'} ] ]);
    }
else {
    error(text('mail_unknown'));
}


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