!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.63 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:     fix_db.pl (1.96 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::Log q{warn};

Debconf::Db->load;

if (! @ARGV || $ARGV[0] ne 'end') {
    my $fix=0;
    my $ok;
    my $counter=0;
    do {
        $ok=1;
    
        my %templates=();
        my $ti=$Debconf::Db::templates->iterator;
        while (my $t=$ti->iterate) {
            $templates{$t}=Debconf::Template->get($t);
        }
    
        my %questions=();
        my $qi=Debconf::Question->iterator;
        while (my $q=$qi->iterate) {
            if (! defined $q->template) {
                warn "question \"".$q->name."\" has no template field; removing it.";
                $q->addowner("killme",""); # make sure it has one owner at least, so removal is triggered
                foreach my $owner (split(/, /, $q->owners)) {
                    $q->removeowner($owner);
                }
                $ok=0;
                $fix=1;
            }
            elsif (! exists $templates{$q->template->template}) {
                warn "question \"".$q->name."\" uses nonexistant template ".$q->template->template."; removing it.";
                foreach my $owner (split(/, /, $q->owners)) {
                    $q->removeowner($owner);
                }
                $ok=0;
                $fix=1;
            }
            else {
                $questions{$q->name}=$q;
            }
        }
        
        foreach my $t (keys %templates) {
            my @owners=$Debconf::Db::templates->owners($t);
            if (! @owners) {
                warn "template \"$t\" has no owners; removing it.";
                $Debconf::Db::templates->addowner($t, "killme","");
                $Debconf::Db::templates->removeowner($t, "killme");
                $fix=1;
            }
            foreach my $q (@owners) {
                if (! exists $questions{$q}) {
                    warn "template \"$t\" claims to be used by nonexistant question \"$q\"; removing that.";
                    $Debconf::Db::templates->removeowner($t, $q);
                    $ok=0;
                    $fix=1;
                }
            }
        }
        $counter++;
    } until ($ok || $counter > 20);

    if ($fix) {
        Debconf::Db->save;
        exec($0, "end");
        die "exec of self failed";
    }
}

foreach my $templatefile (glob("/var/lib/dpkg/info/*.templates")) {
    my ($package) = $templatefile =~ m:/var/lib/dpkg/info/(.*?).templates:;
        Debconf::Template->load($templatefile, $package);
}

Debconf::Db->save;

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