!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/libexec/webmin/bind8/   drwxr-xr-x
Free 53.79 GB of 127.8 GB (42.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     index.cgi (16.2 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display a list of domains, views, and icons for global options.

require './bind8-lib.pl';
&ReadParse();

$need_create = !-r &make_chroot($config{'named_conf'}) ||
           $in{'create'};

# Check if bind is installed
if (!-x $config{'named_path'}) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
        &help_search_link("bind", "doc", "google"));
    print "<p>",&text('index_enamed', "<tt>$config{'named_path'}</tt>",
              "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";

    &foreign_require("software", "software-lib.pl");
    $lnk = &software::missing_install_link("bind", $text{'index_bind'},
            "../$module_name/", $text{'index_title'});
    print $lnk,"<p>\n" if ($lnk);

    &ui_print_footer("/", $text{"index"});
    exit;
    }

# Check if BIND is the right version.. Only BIND 8/9 offers the -f option
# Is there a better way to do this?
if ($out = &check_bind_8()) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
        &help_search_link("bind", "doc", "google"));
    print "<p>",&text('index_eversion', "<tt>$config{'named_path'}</tt>",
              "/dnsadmin/", "<tt>$config{'named_path'} -help</tt>",
              "<pre>$out</pre>"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }

# Try to get the version number, and save for later calls
$bind_version = &get_bind_version();
&open_tempfile(VERSION, ">$module_config_directory/version");
&print_tempfile(VERSION, "$bind_version\n");
&close_tempfile(VERSION);

# Get the list of zones
@allzones = &list_zone_names();
@zones = grep { $_->{'type'} ne 'view' &&
        &can_edit_zone($_) &&
        (!$access{'ro'} || $_->{'name'} ne '.') } @allzones;
@views = grep { $_->{'type'} eq 'view' } @allzones;
@hashint = grep { $_->{'type'} ne 'view' &&
          $_->{'name'} eq '.' } @allzones;

if (@zones == 1 && $access{'zones'} ne '*' && !$access{'defaults'} &&
    !$access{'views'} && $access{'apply'} != 1 && !$access{'master'} &&
    !$access{'slave'} && !$access{'forward'} && $access{'noconfig'}) {
    # Only one zone, so go direct to it
    $z = $zones[0];
    &redirect("edit_master.cgi?zone=$z->{'name'}".
          ($z->{'viewindex'} eq '' ? '' : '&view='.$z->{'viewindex'}));
    exit;
    }

$chroot = &get_chroot();
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
    &restart_links().'<br>'.
    &help_search_link("bind", "doc", "google"), undef, undef,
    &text($chroot eq "/" || !$chroot ? 'index_version' : 'index_chroot',
          $bind_version, "<tt>$chroot</tt>"));

# If the named.conf file does not exist, offer to create it
if ($need_create) {
    print &text('index_eempty',
            "<tt>".&make_chroot($config{'named_conf'})."</tt>"),"<p>\n";

    print &ui_form_start("dns_boot.cgi");
    print &ui_radio("real", 1,
        [ [ 0, $text{'index_local'}."<br>" ],
          [ 1, $text{'index_download'}."<br>" ],
          [ 2, $text{'index_webmin'}."<br>" ] ]);
    print &ui_form_end([ [ undef, $text{'index_create'} ] ]);

    &ui_print_footer("/", $text{"index"});
    exit;
    }

if ($access{'defaults'}) {
    # display global options
    print &ui_subheading($text{'index_opts'});
    @olinks = ("conf_servers.cgi", "conf_logging.cgi", "conf_acls.cgi",
           "conf_files.cgi", "conf_forwarding.cgi", "conf_net.cgi",
           "conf_misc.cgi", "conf_controls.cgi", "conf_keys.cgi",
           "conf_zonedef.cgi", "list_slaves.cgi",
           $bind_version >= 9 ? ( "conf_rndc.cgi" ) : ( ),
           &supports_dnssec_client() ? ( "conf_trusted.cgi" ) : ( ),
                   ((&supports_dnssec()) && (&have_dnssec_tools_support())) ? ( "conf_dnssectools.cgi" ) : ( ),
           &supports_dnssec() ? ( "conf_dnssec.cgi" ) : ( ),
           &supports_check_conf() ? ( "conf_ncheck.cgi" ) : ( ),
           "conf_manual.cgi" );
    @otitles = map { /(conf|list)_(\S+).cgi/; $text{$2."_title"} } @olinks;
    @oicons = map { /^(conf|list)_(\S+).cgi/; "images/$2.gif"; } @olinks;
    &icons_table(\@olinks, \@otitles, \@oicons, 6);
    print &ui_hr();
    }

# Work out what creation links we have
@crlinks = ( );
if ($access{'master'} && !$access{'ro'}) {
    push(@crlinks,
         "<a href=\"master_form.cgi\">$text{'index_addmaster'}</a>");
    }
if ($access{'slave'} && !$access{'ro'}) {
    push(@crlinks,
         "<a href=\"slave_form.cgi\">$text{'index_addslave'}</a>");
    push(@crlinks,
         "<a href=\"stub_form.cgi\">$text{'index_addstub'}</a>");
    }
if ($access{'forward'} && !$access{'ro'}) {
    push(@crlinks,
         "<a href=\"forward_form.cgi\">$text{'index_addfwd'}</a>");
    }
if ($access{'delegation'} && !$access{'ro'} && &version_atleast(9, 2, 1)) {
    push(@crlinks,
         "<a href=\"delegation_form.cgi\">$text{'index_adddele'}</a>");
    }
if ($access{'master'} && !$access{'ro'} &&
    scalar(@hashint) < (@views ? scalar(@views) : 1)) {
    push(@crlinks,
         "<a href=\"hint_form.cgi\">$text{'index_addhint'}</a>");
    }
if (@crlinks) {
    push(@crlinks,
         "<a href=\"mass_form.cgi\">$text{'index_addmass'}</a>");
    }

if (@zones > $config{'max_zones'}) {
    # Too many zones, show search form
    print &ui_subheading($text{'index_zones'});
    print "$text{'index_toomany'}<p>\n";
    print &ui_form_start("find_zones.cgi");
    print "<b>$text{'index_find'}</b>\n";
    print &ui_textbox("search", undef, 20);
    print &ui_form_end([ [ undef, $text{'index_search'} ] ]);
    print &ui_links_row(\@crlinks);
    }
elsif (@zones && (!@views || !$config{'by_view'})) {
    # Show all zones
    print &ui_subheading($text{'index_zones'});

    if (&have_dnssec_tools_support()) {
        # Parse the rollrec file to determine zone status
        &lock_file($config{"dnssectools_rollrec"});
        rollrec_lock();
        rollrec_read($config{"dnssectools_rollrec"});
    }

    foreach $z (@zones) {
        $v = $z->{'name'};
        $t = $z->{'type'};
        next if (!$t);
        $t = "delegation" if ($t eq "delegation-only");
        local $zn = $v eq "." ? "<i>$text{'index_root'}</i>"
                      : &ip6int_to_net(&arpa_to_ip($v));
        if ($z->{'view'}) {
            local $vw = $z->{'viewindex'};
            push(@zlinks, "edit_$t.cgi?zone=$z->{'name'}".
                      "&view=$vw");
            push(@ztitles, $zn." ".
                   &text('index_view', "<tt>$z->{'view'}</tt>"));
            push(@zdels, &can_edit_zone($z, $vw) ?
                $z->{'name'}." ".$z->{'viewindex'} : undef);
            }
        else {
            push(@zlinks, "edit_$t.cgi?zone=$z->{'name'}");
            push(@ztitles, $zn);
            push(@zdels, &can_edit_zone($z) ?
                $z->{'name'} : undef);
            }
        push(@zsort, $t eq 'hint' ? undef : $ztitles[$#ztitles]);
        push(@zicons, "images/$t.gif");
        push(@ztypes, $text{"index_$t"});

        if (&have_dnssec_tools_support()) {
            my $rrr = rollrec_fullrec($v);
            if ($rrr) {
                if($rrr->{'kskphase'} > 0) {
                    if($rrr->{'kskphase'} == 6) {
                        push(@zstatus, $text{"dt_status_waitfords"});
                    } else {        
                        push(@zstatus, $text{"dt_status_inKSKroll"});
                    }
                } elsif($rrr->{'zskphase'} > 0) {
                    push(@zstatus, $text{"dt_status_inZSKroll"});
                } else {    
                    push(@zstatus, $text{"dt_status_signed"});
                }
            } else {
                push(@zstatus, $text{"dt_status_unsigned"});
            }
        }

        $zhash{$zn} = $z;
        $ztitlehash{$zn} = $ztitles[$#ztitles];
        $zlinkhash{$zn} = $zlinks[$#zlinks];
        $ztypeshash{$zn} = $ztypes[$#ztypes];
        $zdelhash{$zn} = $zdels[$#zdels];
        if (&have_dnssec_tools_support()) {
            $zstatushash{$zn} = $zstatus[$#zstatus];
        }
        $len++;
        }

    if (&have_dnssec_tools_support()) {
        rollrec_close();
        rollrec_unlock();
        &unlock_file($config{"dnssectools_rollrec"});
    }

    # sort list of zones
    @zorder = sort { &compare_zones($zsort[$a], $zsort[$b]) } (0 .. $len-1);
    @zlinks = map { $zlinks[$_] } @zorder;
    @ztitles = map { $ztitles[$_] } @zorder;
    @zicons = map { $zicons[$_] } @zorder;
    @ztypes = map { $ztypes[$_] } @zorder;
    @zdels = map { $zdels[$_] } @zorder;
    @zstatus = map { $zstatus[$_] } @zorder;

    print &ui_form_start("mass_delete.cgi", "post");
    @links = ( &select_all_link("d", 0),
           &select_invert_link("d", 0),
           @crlinks );
    print &ui_links_row(\@links);

    if ($config{'show_list'} == 1) {
        # display as list
        $mid = int((@zlinks+1)/2);
        @grid = ( );
        if (&have_dnssec_tools_support()) {
            push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ],
                          [ @ztitles[0 .. $mid-1] ],
                          [ @ztypes[0 .. $mid-1] ],
                          [ @zdels[0 .. $mid-1] ],
                          [ @zstatus[0 .. $mid-1] ]));
            }
        else {
            push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ],
                             [ @ztitles[0 .. $mid-1] ],
                             [ @ztypes[0 .. $mid-1] ],
                         [ @zdels[0 .. $mid-1] ]));
            }
        if ($mid < @zlinks) {
            if (&have_dnssec_tools_support()) {
            push(@grid, &zones_table([ @zlinks[$mid .. $#zlinks] ],
                         [ @ztitles[$mid .. $#ztitles] ],
                         [ @ztypes[$mid .. $#ztypes] ],
                         [ @zdels[$mid .. $#ztypes] ],
                         [ @zstatus[$mid .. $#ztypes] ]));
            } else {
            push(@grid, &zones_table([ @zlinks[$mid .. $#zlinks] ],
                         [ @ztitles[$mid .. $#ztitles] ],
                         [ @ztypes[$mid .. $#ztypes] ],
                         [ @zdels[$mid .. $#ztypes] ]));
            }
            }
        print &ui_grid_table(\@grid, 2, 100,
                     [ "width=50%", "width=50%" ]);
        }
    elsif ($config{'show_list'} == 2) {
        # Show as collapsible tree, broken down by domain parts
        %heiropen = map { $_, 1 } &get_heiropen();
        $heiropen{""} = 1;
        foreach $z (grep { $_->{'type'} } @zones) {
            local $v = $z->{'name'};
            local @p = split(/\./, &ip6int_to_net(&arpa_to_ip($v)));
            for($i=1; $i<=@p; $i++) {
                local $ch = join(".", @p[$i-1 .. $#p]);
                local $par = $i == @p ?
                    "" : join(".", @p[$i .. $#p]);
                @{$ztree{$par}} = &unique(@{$ztree{$par}}, $ch);
                }
            }
        print "<table>\n";
        &recursive_tree("");
        print "</table>\n";
        }
    else {
        # display as icons
        @befores = map { $_ ? &ui_checkbox("d", $_, "", 0) : "" }
                   @zdels;
        &icons_table(\@zlinks, \@ztitles, \@zicons, 5, undef, 
                 undef, undef, \@befores);
        }
    print &ui_links_row(\@links);
    print &ui_form_end([
        $access{'delete'} ?
              ( [ "delete", $text{'index_massdelete'} ] ) : ( ),
        [ "update", $text{'index_massupdate'}, undef, 0,
          "onClick='form.action=\"mass_update_form.cgi\"'" ],
        [ "create", $text{'index_masscreate'}, undef, 0,
          "onClick='form.action=\"mass_rcreate_form.cgi\"'" ],
        [ "rdelete", $text{'index_massrdelete'}, undef, 0,
          "onClick='form.action=\"mass_rdelete_form.cgi\"'" ] ]);
    }
elsif (@zones) {

    if (&have_dnssec_tools_support()) {
        # Parse the rollrec file to determine zone status
        &lock_file($config{"dnssectools_rollrec"});
        rollrec_lock();
        rollrec_read($config{"dnssectools_rollrec"});
    }

    # Show zones under views
    print &ui_subheading($text{'index_zones'});
    foreach $vw (@views) {
        local (@zorder, @zlinks, @ztitles, @zicons, @ztypes, @zsort, @zdels, @zstatus, $len);
        local @zv = grep { $_->{'view'} eq $vw->{'name'} } @zones;
        next if (!@zv);
        print "<b>",&text('index_inview',
                  "<tt>$vw->{'name'}</tt>"),"</b><br>\n";
        foreach $z (@zv) {
            $v = $z->{'name'};
            $t = $z->{'type'};
            local $zn = $v eq "." ? "<i>$text{'index_root'}</i>"
                          : &ip6int_to_net(&arpa_to_ip($v));
            push(@zlinks, "edit_$t.cgi?zone=$z->{'name'}".
                      "&view=$z->{'viewindex'}");
            push(@ztitles, $zn);
            push(@zsort, $t eq 'hint' ? undef : $ztitles[$#ztitles]);
            push(@zicons, "images/$t.gif");
            push(@ztypes, $text{"index_$t"});
            push(@zdels, $z->{'index'}." ".$z->{'viewindex'});
            if (&have_dnssec_tools_support()) {
                my $rrr = rollrec_fullrec($v);
                if ($rrr) {
                    if($rrr->{'kskphase'} > 0) {
                        if($rrr->{'kskphase'} == 6) {
                            push(@zstatus, $text{"dt_status_waitfords"});
                        } else {
                            push(@zstatus, $text{"dt_status_inKSKroll"});
                        }
                    } elsif($rrr->{'zskphase'} > 0) {
                        push(@zstatus, $text{"dt_status_inZSKroll"});
                    } else {
                        push(@zstatus, $text{"dt_status_signed"});
                    }
                } else {
                    push(@zstatus, $text{"dt_status_unsigned"});
                }
            }
            $len++;
            }

        # sort list of zones
        @zorder = sort { &compare_zones($zsort[$a], $zsort[$b]) }
                   (0 .. $len-1);
        @zlinks = map { $zlinks[$_] } @zorder;
        @ztitles = map { $ztitles[$_] } @zorder;
        @zicons = map { $zicons[$_] } @zorder;
        @ztypes = map { $ztypes[$_] } @zorder;
        @zdels = map { $zdels[$_] } @zorder;
        @zstatus = map { $zstatus[$_] } @zorder;

        print &ui_form_start("mass_delete.cgi", "post");
        print &ui_links_row(\@crlinks);
        if ($config{'show_list'}) {
            # display as list
            $mid = int((@zlinks+1)/2);
            @grid = ( );
            if (&have_dnssec_tools_support()) {
            push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ],
                         [ @ztitles[0 .. $mid-1] ],
                         [ @ztypes[0 .. $mid-1] ],
                         [ @zdels[0 .. $mid-1] ],
                         [ @zstatus[0 .. $mid-1] ]));
            } else {
            push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ],
                         [ @ztitles[0 .. $mid-1] ],
                         [ @ztypes[0 .. $mid-1] ],
                         [ @zdels[0 .. $mid-1] ]));
            }
            if ($mid < @zlinks) {
                push(@grid, &zones_table(
                         [ @zlinks[$mid .. $#zlinks] ],
                         [ @ztitles[$mid .. $#ztitles] ],
                         [ @ztypes[$mid .. $#ztypes] ],
                         [ @zdels[$mid .. $#zdels] ],
                         [ @zstatus[$mid .. $#zstatus] ]));
                }
            print &ui_grid_table(\@grid, 2, 100,
                         [ "width=50%", "width=50%" ]);
            }
        else {
            # display as icons
            @befores = map { $_ ? &ui_checkbox("d", $_, "", 0) : "" }
                       @zdels;
            &icons_table(\@zlinks, \@ztitles, \@zicons, 5, undef,
                     undef, undef, \@befores);
            }
        print &ui_links_row(\@crlinks);
        print &ui_form_end([
            $access{'delete'} ?
              ( [ "delete", $text{'index_massdelete'} ] ) : ( ),
            [ "update", $text{'index_massupdate'}, undef, 0,
              "onClick='form.action=\"mass_update_form.cgi\"'" ],
            [ "create", $text{'index_masscreate'}, undef, 0,
              "onClick='form.action=\"mass_rcreate_form.cgi\"'" ],
            [ "rdelete", $text{'index_massrdelete'}, undef, 0,
              "onClick='form.action=\"mass_rdelete_form.cgi\"'" ]]);
        }
    if (&have_dnssec_tools_support()) {
        rollrec_close();
        rollrec_unlock();
        &unlock_file($config{"dnssectools_rollrec"});
    }
    }
else {
    print "<b>$text{'index_none'}</b><p>\n";
    print &ui_links_row(\@crlinks);
    }

if ($access{'views'} && $bind_version >= 9) {
    # Display list of views
    print &ui_hr();
    print &ui_subheading($text{'index_views'});

    # Show a warning if any zones are not in a view
    @notinview = grep { $_->{'viewindex'} eq '' } @zones;
    if (@notinview && @views) {
        print "<b>",&text('index_viewwarn',
          join(" , ", map { "<tt>".&ip6int_to_net(
                      &arpa_to_ip($_->{'name'}))."</tt>" }
                @notinview)),"</b><p>\n";
        print "<b>$text{'index_viewwarn2'}</b><p>\n";
        }

    @views = grep { &can_edit_view($_) } @views;
    foreach $v (@views) {
        push(@vlinks, "edit_view.cgi?index=$v->{'index'}");
        push(@vtitles, $v->{'name'});
        push(@vicons, "images/view.gif");
        }
    @links = ( );
    push(@links, "<a href=\"view_form.cgi\">$text{'index_addview'}</a>")
        if (!$access{'ro'} && $access{'views'} != 2);
    if (@views) {
        print &ui_links_row(\@links);
        &icons_table(\@vlinks, \@vtitles, \@vicons, 5);
        }
    else {
        print "<b>$text{'index_vnone'}</b><p>\n";
        }
    print &ui_links_row(\@links);
    }

&ui_print_footer("/", $text{"index"});

sub dump_config
{
local($c);
foreach $c (@{$_[0]}) {
    print "$_[1]$c->{'name'} ",
        join(',', @{$c->{'values'}});
    if ($c->{'type'}) {
        print " {\n";
        &dump_config($c->{'members'}, "$_[1]\t");
        print "$_[1]}\n";
        }
    else { print "\n"; }
    }
}

sub compare_zones
{
local @sp0 = split(/\./, lc($_[0]));
local @sp1 = split(/\./, lc($_[1]));
for($i=0; $i<@sp0 || $i<@sp1; $i++) {
    if ($sp0[$i] =~ /^\d+$/ && $sp1[$i] =~ /^\d+$/) {
        return -1 if ($sp0[$i] < $sp1[$i]);
        return 1 if ($sp0[$i] > $sp1[$i]);
        }
    else {
        local $c = $sp0[$i] cmp $sp1[$i];
        return $c if ($c);
        }
    }
return 0;
}

sub recursive_tree
{
local ($name, $depth) = @_;
print "<tr> <td>", "&nbsp;&nbsp;" x $depth;
if ($_[0] ne "") {
    print "<a name=\"$name\"></a>\n";
    $name =~ /^([^\.]+)/;
    if (!$ztree{$name}) {
        # Has no children
        print "<img border=0 src=images/smallicon.gif>&nbsp; $1</td>\n",
        }
    else {
        # Has children
        local $act = $heiropen{$name} ? "close" : "open";
        print "<a href=\"$act.cgi?what=",&urlize($name),"\">";
        print "<img border=0 src=images/$act.gif></a>&nbsp; $1</td>\n",
        }
    }
else {
    # Is the root
    print "<img src=images/close.gif> <i>$text{'index_all'}</i></td>\n";
    }
if ($zhash{$name}) {
    local $cb = $zdelhash{$name} ?
        &ui_checkbox("d", $zdelhash{$name}, "", 0)." " : "";
    if (&have_dnssec_tools_support()) {
    print "<td>$cb<a href='$zlinkhash{$name}'>$ztitlehash{$name} ($ztypeshash{$name}) ($zstatushash{$name})</a></td> </tr>\n";
    } else {
    print "<td>$cb<a href='$zlinkhash{$name}'>$ztitlehash{$name} ($ztypeshash{$name})</a></td> </tr>\n";
    }
    }
else {
    print "<td><br></td> </tr>\n";
    }
if ($heiropen{$name}) {
    foreach $sz (@{$ztree{$name}}) {
        &recursive_tree($sz, $depth+1);
        }
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0067 ]--