!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/debconf/   drwxr-xr-x
Free 11.64 GB of 97.11 GB (11.98%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     transition_db.pl (2.35 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
use strict;
use Debconf::Db;
use Debconf::Question;
use Debconf::Template;

my $dir = shift || '/var/lib/debconf';

Debconf::Db->load;

our %questions;
our %templates;

foreach my $thing (qw(templates debconf)) {
    if (-e "$dir/$thing.db") {
        eval qq{require "$dir/$thing.db"};
        print STDERR $@ if $@;
    }
    else {
        print STDERR "Skipping $dir/$thing.db: DNE\n";
    }
}

foreach my $t (keys %templates) {
    $templates{$t}->{_name}=$t;
}

my $skipped=0;

foreach my $item (keys %questions) {
    my @owners=grep { $_ ne '' } keys %{$questions{$item}->{owners}};
    delete $questions{$item}, next unless @owners;

    next unless defined $questions{$item}->{template}->{_name};

    my $tname=$questions{$item}->{template}->{_name};
    $skipped++, next unless defined $tname;
    my $type=$templates{$tname}->{type};
    my $question=Debconf::Question->new($item, pop(@owners), $type);
    $question->addowner($_, '') foreach @owners;
}

my %seen_templates;
foreach my $item (keys %questions) {
    my $question=Debconf::Question->get($item);
    my $tname=$questions{$item}->{template}->{_name};
    $skipped++, next unless defined $tname;
    my $template=Debconf::Template->get($tname);
    unless (defined $template) {
        $template=Debconf::Template->new($tname, $item, $templates{$tname}->{type});
    }
    unless ($seen_templates{$template}) {
        $template->clearall;
        foreach my $field (keys %{$templates{$tname}}) {
            next if $field=~/^_name/; # except this one we added above.
            $template->$field($templates{$tname}->{$field});
        }
    }
    

    if (exists $questions{$item}->{flag_isdefault}) {
        if ($questions{$item}->{flag_isdefault} eq 'false') {
                $question->flag('seen', 'true');
        }
        delete $questions{$item}->{flag_isdefault};
    }
    foreach my $flag (grep /^flag_/, keys %{$questions{$item}}) {
        if ($questions{$item}->{$flag} eq 'true') {
            $flag=~s/^flag_//;
            $question->flag($flag, 'true');
        }
    }
    foreach my $var (keys %{$questions{$item}->{variables}}) {
        $question->variable($var,
            $questions{$item}->{variables}->{$var});
    }
    if (exists $questions{$item}->{value} 
        and defined $questions{$item}->{value}) {
        $question->value($questions{$item}->{value});
    }

    $question->template($questions{$item}->{template}->{_name});
}

Debconf::Db->save;

if ($skipped) {
    print STDERR "While upgrading the debconf database, $skipped corrupt items were skipped.\n";
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.009 ]--