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


Viewing file:     edit_advanced.cgi (2.1 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display the advanced options form

require './usermin-lib.pl';
&ui_print_header(undef, $text{'advanced_title'}, "");
&get_usermin_miniserv_config(\%miniserv);
&get_usermin_config(\%uconfig);

print &ui_form_start("change_advanced.cgi", "post");
print &ui_table_start($text{'advanced_header'}, undef, 2);

# Global temp directory
print &ui_table_row($text{'advanced_temp'},
            &ui_opt_textbox("tempdir", $uconfig{'tempdir'},
                    30, $text{'advanced_tempdef'}));

# Per-module temp directories
@mods = sort { $a->{'desc'} cmp $b->{'desc'} } &list_modules();
$ttable = &ui_columns_start([ $text{'advanced_tmod'},
                  $text{'advanced_tdir'} ]);
$i = 0;
foreach $d (&webmin::get_tempdirs(\%uconfig), [ ]) {
    $ttable .= &ui_columns_row([
        &ui_select("tmod_$i", $d->[0],
            [ [ "", " " ],
              map { [ $_->{'dir'}, $_->{'desc'} ] } @mods ]),
        &ui_textbox("tdir_$i", $d->[1], 30)
        ]);
    $i++;
    }
$ttable .= &ui_columns_end();
print &ui_table_row($text{'advanced_tempmods'}, $ttable);

# Pass passwords to CGI programs
print &ui_table_row($text{'advanced_pass_desc'},
            &ui_yesno_radio("pass", int($miniserv{'pass_password'})).
                &ui_help($text{'advanced_pass_help'}));

@preloads = &webmin::get_preloads(\%miniserv);
if (!@preloads && (!$miniserv{'premodules'} ||
           $miniserv{'premodules'} eq 'WebminCore')) {
    # New-style preload possible or enabled
    print &ui_table_row($text{'advanced_preload'},
            &ui_yesno_radio("preload",
                    $miniserv{'premodules'} eq 'WebminCore'));
    }
elsif ($preloads[0]->[0] eq "main" && $preloads[0]->[1] eq "web-lib-funcs.pl") {
    # Old-style preloads enabled
    print &ui_table_row($text{'advanced_preload'},
                &ui_yesno_radio("preload", 1));
    }

# Umask for created files
print &ui_table_row($text{'advanced_umask'},
        &ui_opt_textbox("umask", $uconfig{'umask'}, 5, $text{'default'}));

# Sort config file's keys alphabetically
print &ui_table_row($text{'advanced_sortconfigs'},
        &ui_yesno_radio("sortconfigs", $uconfig{'sortconfigs'}));

print &ui_table_end();
print &ui_form_end([ [ "save", $text{'save'} ] ]);

&ui_print_footer("", $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 ]--