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


Viewing file:     conf_trusted.cgi (2.14 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a form for setting up DNSSEC verification and trusted keys
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
# Globals
our (%access, %text, $bind_version);
our $dnssec_dlv_zone;

require './bind8-lib.pl';
&ReadParse();
$access{'defaults'} || &error($text{'trusted_ecannot'});
&supports_dnssec_client() || &error($text{'trusted_esupport'});
&ui_print_header(undef, $text{'trusted_title'}, "",
         undef, undef, undef, undef, &restart_links());
my $conf = &get_config();
my $options = &find("options", $conf);
my $mems = $options->{'members'};
my $tkeys = &find("trusted-keys", $conf);
$tkeys ||= { 'members' => [ ] };

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

if (&compare_version_numbers($bind_version, '<', '9.16.0')) {
    # DNSSEC enabled?
    print &choice_input($text{'trusted_dnssec'}, 'dnssec-enable', $mems,
                $text{'yes'}, 'yes', $text{'no'}, 'no',
                $text{'default'}, undef);
    }
if (&supports_dnssec_client() == 2) {
    print &choice_input($text{'trusted_validation'},
                'dnssec-validation', $mems,
                $text{'trusted_auto'}, 'auto',
                $text{'yes'}, 'yes', $text{'no'}, 'no',
                $text{'default'}, undef);
    }

# Trusted keys
if (@{$tkeys->{'members'}}) {
    my @ktable = ( );
    my $i = 0;
    foreach my $k (@{$tkeys->{'members'}}, { 'values' => [ ] }) {
        my @v = @{$k->{'values'}};
        my @wrapped = ( );
        while(length($v[3]) > 30) {
            push(@wrapped, substr($v[3], 0, 30));
            $v[3] = substr($v[3], 30);
            }
        push(@wrapped, $v[3]);
        push(@ktable, [
            &ui_opt_textbox("zone_$i", $k->{'name'}, 20,
                    $text{'trusted_none'}),
            &ui_textbox("flags_$i", $v[0], 6),
            &ui_textbox("proto_$i", $v[1], 6),
            &ui_textbox("alg_$i", $v[2], 6),
            &ui_textarea("key_$i", join("\n", @wrapped), 4, 32) ]);
        $i++;
        }
    print &ui_table_row($text{'trusted_keys'},
        &ui_columns_table([
            $text{'trusted_zone'}, $text{'trusted_flags'},
            $text{'trusted_proto'}, $text{'trusted_alg'},
            $text{'trusted_key'} ],
            undef, \@ktable), 3);
    }

print &ui_table_end();
print &ui_form_end([ [ undef, $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.0036 ]--