!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/syslog/   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 (4.71 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# Display syslog rules

require './syslog-lib.pl';
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
    &help_search_link("syslog", "man", "doc"));

if ($config{'m4_conf'}) {
    # Does the config file need to be passed through m4?
    if (&needs_m4()) {
        # syslog.conf has m4 directives .. ask the user if he wants
        # to filter the file
        print "<p>",&text('index_m4msg',
                  "<tt>$config{'syslog_conf'}</tt>"),"\n";
        print "<center><form action=m4.cgi>\n";
        print "<input type=submit value='$text{'index_m4'}'>\n";
        print "</form></center>\n";
        &ui_print_footer("/", $text{'index'});
        exit;
        }
    }

if (!-r $config{'syslog_conf'}) {
    # Not installed (maybe using syslog-ng)
    &ui_print_endpage(&text('index_econf', "<tt>$config{'syslog_conf'}</tt>", "../config.cgi?$module_name"));
    }

# Display syslog rules
@links = ( );
if ($access{'syslog'}) {
    $conf = &get_config();
    push(@links, "<a href='edit_log.cgi?new=1'>$text{'index_add'}</a>")
        if (!$access{'noedit'});
    }
print &ui_links_row(\@links);
print &ui_columns_start([
    $text{'index_to'},
    $config{'tags'} ? ( $text{'index_tag'} ) : ( ),
    $text{'index_active'},
    $text{'index_rule'}, "" ], 100);
if ($access{'syslog'}) {
    foreach $c (@$conf) {
        next if ($c->{'tag'});
        next if (!&can_edit_log($c));
        local @cols;
        local $name;
        if ($c->{'file'}) {
            $name = &text('index_file',
                "<tt>".&html_escape($c->{'file'})."</tt>");
            }
        elsif ($c->{'pipe'} && $config{'pipe'} == 1) {
            $name = &text('index_pipe',
                "<tt>".&html_escape($c->{'pipe'})."</tt>");
            }
        elsif ($c->{'pipe'} && $config{'pipe'} == 2) {
            $name = &text('index_pipe2',
                "<tt>".&html_escape($c->{'pipe'})."</tt>");
            }
        elsif ($c->{'host'}) {
            $name = &text('index_host',
                "<tt>".&html_escape($c->{'host'})."</tt>");
            }
        elsif ($c->{'socket'}) {
            $name = &text('index_socket',
                "<tt>".&html_escape($c->{'socket'})."</tt>");
            }
        elsif ($c->{'all'}) {
            $name = $text{'index_all'};
            }
        else {
            $name = &text('index_users',
                "<tt>".join(" ", map { &html_escape($_) }
                         @{$c->{'users'}})."</tt>");
            }
        if ($access{'noedit'}) {
            push(@cols, $name);
            }
        else {
            push(@cols, "<a href='edit_log.cgi?".
                    "idx=$c->{'index'}'>$name</a>");
            }
        if ($config{'tags'}) {
            push(@cols, $c->{'section'}->{'tag'} eq '*' ?
                      $text{'all'} : $c->{'section'}->{'tag'});
            }
        push(@cols, $c->{'active'} ? $text{'yes'} :
                "<font color=#ff0000>$text{'no'}</font>");
        push(@cols, join("&nbsp;;&nbsp;",
               map { &html_escape($_) } @{$c->{'sel'}}));
        if ($c->{'file'} && -f $c->{'file'}) {
            push(@cols, "<a href='save_log.cgi?idx=$c->{'index'}&".
                  "view=1'>$text{'index_view'}</a>\n");
            }
        else {
            push(@cols, "");
            }
        print &ui_columns_row(\@cols);
        }
    }

# Display logs from other modules
if ($config{'others'} && $access{'others'}) {
    @others = &get_other_module_logs();
    }
if (@others) {
    $cols = $config{'tags'} ? 5 : 4;
    foreach $o (@others) {
        next if (!&can_edit_log($o));
        local @cols;
        if ($o->{'file'}) {
            push(@cols, &text('index_file',$o->{'file'}));
            }
        else {
            push(@cols, &text('index_cmd',$o->{'cmd'}));
            }
        if ($config{'tags'}) {
            push(@cols, "");
            }
        push(@cols, $o->{'active'} ? $text{'yes'} :
                    "<font color=#ff0000>$text{'no'}</font>");
        push(@cols, $o->{'desc'});
        push(@cols, "<a href='save_log.cgi?oidx=$o->{'mindex'}".
               "&omod=$o->{'mod'}&view=1'>$text{'index_view'}</a>");
        print &ui_columns_row(\@cols);
        }
    }

# Display extra log files
foreach $e (&extra_log_files()) {
    next if (!&can_edit_log($e));
    local @cols;
    push(@cols, &text('index_file', $e->{'file'}));
    if ($config{'tags'}) {
        push(@cols, "");
        }
    push(@cols, $text{'yes'});
    push(@cols, $e->{'desc'});
    push(@cols, "<a href='save_log.cgi?extra=$e->{'file'}&view=1'>".
            "$text{'index_view'}</a>");
    print &ui_columns_row(\@cols);
    }

print &ui_columns_end();
print &ui_links_row(\@links);
print "<p>\n";

if ($access{'any'}) {
    # Can view any log (under allowed dirs)
    print &ui_form_start("save_log.cgi");
    print &ui_hidden("view", 1),"\n";
    print "<b>$text{'index_viewfile'}</b>\n",
          &ui_textbox("file", undef, 50),"\n",
          &file_chooser_button("file", 0, 1),"\n",
          &ui_submit($text{'index_viewok'}),"\n";
    print &ui_form_end();
    }

# Buttons to restart/start syslogd
if (!$access{'noedit'}) {
    print &ui_hr();
    $pid = &get_syslog_pid();
    print &ui_buttons_start();
    if ($pid) {
        print &ui_buttons_row("restart.cgi",
                      $text{'index_restart'},
                      $text{'index_restartmsg'});
        }
    else {
        print &ui_buttons_row("start.cgi",
                      $text{'index_start'},
                      &text('index_startmsg',
                        "<tt>$config{'syslogd'}</tt>"));
        }
    print &ui_buttons_end();
    }

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


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