!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/jabber/   drwxr-xr-x
Free 49.58 GB of 127.8 GB (38.8%)
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.11 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# Display jabber configuration option categories

require './jabber-lib.pl';

# Check if config file exists
if (!-r $config{'jabber_config'}) {
    &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
        &help_search_link("jabber", "man", "doc", "google"));
    print &text('index_econfig', "<tt>$config{'jabber_config'}</tt>",
            "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }

# Check if base directory exists
if (!-d $config{'jabber_dir'}) {
    &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
        &help_search_link("jabber", "man", "doc", "google"));
    print &text('index_edir', "<tt>$config{'jabber_dir'}</tt>",
            "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }

# Check the version of jabberd
$jabberd = $config{'jabber_daemon'} ? $config{'jabber_daemon'}
                    : "$config{'jabber_dir'}/bin/jabberd";
if (!-x $jabberd) {
    &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
        &help_search_link("jabber", "man", "doc", "google"));
    print &text('index_ejabberd', "<tt>$jabberd</tt>",
            "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }
$ver = &get_jabberd_version(\$out);
if (!$ver) {
    &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
        &help_search_link("jabber", "man", "doc", "google"));
    print &text('index_eversion', "<pre>$out</pre>", "1.4",
            "<tt>$jabberd -v</tt>"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }
elsif ($ver >= 2) {
    &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
        &help_search_link("jabber", "man", "doc", "google"));
    print &text('index_eversion2', "<pre>$out</pre>", "2.0",
            "<tt>$jabberd -v</tt>"),"<p>\n";
    &ui_print_footer("/", $text{"index"});
    exit;
    }

&ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1, undef,
    &help_search_link("jabber", "man", "doc", "google"),
    undef, undef, &text('index_version', $ver));

# Check if the needed Perl module are installed
push(@needs, "XML::Parser") if (!$got_xml_parser);
push(@needs, "XML::Generator") if (!$got_xml_generator);
if (@needs) {
    $needs = &urlize(join(" ", @needs));
    print &text(@needs == 2 ? 'index_emodules' : 'index_emodule', @needs,
        "/cpan/download.cgi?source=3&cpan=$needs&mode=2&return=/$module_name/&returndesc=".&urlize($text{'index_return'})),"<p>\n";
    print "$text{'index_expat'}<p>\n";
    print &ui_hr();
    &ui_print_footer("/", $text{"index"});
    exit;
    }

# Show config category icons
$conf = &get_jabber_config();
if (!ref($conf)) {
    print &text('index_eparse', "<tt>XML::Parser</tt>", $conf),"<p>\n";
    print &ui_hr();
    &ui_print_footer("/", $text{"index"});
    exit;
    }
@cats = ( "general", "messages", "modules", "karma", "ips", "filter", "admin", "file" );
@links = map { "edit_${_}.cgi" } @cats;
@titles = map { $text{"${_}_title"} } @cats;
@icons = map { "images/${_}.gif" } @cats;
&icons_table(\@links, \@titles, \@icons);

# Show warning about config file
open(CONFIG, $config{'jabber_config'});
while(<CONFIG>) {
    if (/\s+<!--/) {
        $has_comment++;
        last;
        }
    }
close(CONFIG);
print "<b>",&text('index_comments',
      "<tt>$config{'jabber_config'}</tt>"),"</b><p>\n" if ($has_comment);

# Check if jabber is running and show the correct buttons
print &ui_hr();
print "<table width=100%>\n";
if (&check_pid_file(&jabber_pid_file())) {
    # Running .. offer to restart and stop
    print "<form action=restart.cgi><tr>\n";
    print "<td><input type=submit value=\"$text{'index_restart'}\"></td>\n";
    print "<td>$text{'index_restartmsg'}</td>\n";
    print "</tr></form>\n";

    print "<form action=stop.cgi><tr>\n";
    print "<td><input type=submit value=\"$text{'index_stop'}\"></td>\n";
    print "<td>$text{'index_stopmsg'}</td>\n";
    print "</tr></form>\n";
    }
else {
    # Not running .. offer to start
    print "<form action=start.cgi><tr>\n";
    print "<td><input type=submit value=\"$text{'index_start'}\"></td>\n";
    print "<td>$text{'index_startmsg'}</td>\n";
    print "</tr></form>\n";
    }
print "</table>\n";
close(PID);

&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.0062 ]--