!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/webalizer/   drwxr-xr-x
Free 50.94 GB of 127.8 GB (39.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     save_log.cgi (5.15 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_log.cgi
# Save, create or delete options for a log file

require './webalizer-lib.pl';
&foreign_require("cron", "cron-lib.pl");
&ReadParse();
&error_setup($text{'save_err'});
$access{'view'} && &error($text{'edit_ecannot'});
!$in{'new'} || $access{'add'} || &error($text{'edit_ecannot'});
&can_edit_log($in{'file'}) || &error($text{'edit_efilecannot'});

# Find the cron job
if (!$in{'new'} && !$in{'view'} && !$in{'run'}) {
    @jobs = &cron::list_cron_jobs();
    foreach $j (@jobs) {
        $job = $j if ($j->{'command'} eq "$cron_cmd $in{'file'}");
        }
    }

if ($in{'view'}) {
    # Re-direct to the view page
    &redirect("view_log.cgi/".&urlize(&urlize($in{'file'}))."/index.html");
    }
elsif ($in{'global'}) {
    # Re-direct to the options page
    &redirect("edit_global.cgi?file=".&urlize($in{'file'})."&type=$in{'type'}&custom=$in{'custom'}");
    }
elsif ($in{'run'}) {
    # Force report generation and show the output
    &ui_print_unbuffered_header(undef, $text{'gen_title'}, "");

    $lconf = &get_log_config($in{'file'});
    print "<b>",&text('gen_header', "<tt>$in{'file'}</tt>"),"</b><br>\n";
    print "<pre>";
    $rv = &generate_report($in{'file'}, STDOUT, 1);
    print "</pre>\n";
    if ($rv && -r "$lconf->{'dir'}/index.html") {
        print "<b>$text{'gen_done'}</b><p>\n";
        print "<a href='view_log.cgi/",&urlize(urlize($in{'file'})),
              "/index.html'>$text{'gen_view'}</a><p>\n";
        }
    elsif ($rv) {
        print "<b>$text{'gen_nothing'}</b><p>\n";
        }
    else {
        print "<b>$text{'gen_failed'}</b><p>\n";
        }

    &webmin_log("generate", "log", $in{'file'});
    &ui_print_footer("edit_log.cgi?file=".&urlize($in{'file'}).
            "&type=$in{'type'}&custom=$in{'custom'}", $text{'edit_return'},
        "", $text{'index_return'});
    exit;
    }
elsif ($in{'delete'}) {
    # Delete this custom log file from the configuration
    &lock_file($custom_logs_file);
    @custom = &read_custom_logs();
    @custom = grep { $_->{'file'} ne $in{'file'} } @custom;
    if ($job) {
        &lock_file($job->{'file'});
        &foreign_call("cron", "delete_cron_job", $job);
        &unlock_file($job->{'file'});
        }
    &write_custom_logs(@custom);
    &unlock_file($custom_logs_file);
    local $cfile = &log_config_name($in{'file'});
    &unlink_logged($cfile);
    &webmin_log("delete", "log", $in{'file'});
    }
else {
    # Validate and store inputs
    if ($in{'new'}) {
        -r $in{'file'} && !-d $in{'file'} ||
            &error($text{'save_efile'});
        }
    -d $in{'dir'} || &error($text{'save_edir'});
    $in{'cmode'} != 2 || -r $in{'cfile'} || &error($text{'save_ecfile'});
    if ($access{'user'} eq '*') {
        # Set the user to whatever was entered
        defined(getpwnam($in{'user'})) || &error($text{'save_euser'});
        $lconf->{'user'} = $in{'user'};
        }
    elsif (!$in{'new'} && $lconf->{'dir'}) {
        # This is not a new log, so the user cannot be changed
        }
    elsif ($access{'user'} eq '') {
        # This is a new log, or one that has not been saved for
        # the first time yet. Use the webmin user as the user
        defined(getpwnam($remote_user)) ||
            &error(&text('save_ewuser', $remote_user));
        $lconf->{'user'} = $remote_user;
        }
    else {
        # This is a new log, or one that has not been saved for
        # the first time yet. Use the user set in the ACL
        $lconf->{'user'} = $access{'user'};
        }
    $lconf->{'dir'} = $in{'dir'};
    $lconf->{'sched'} = $in{'sched'};
    $lconf->{'type'} = $in{'type'};
    $lconf->{'over'} = $in{'over'};
    $lconf->{'clear'} = $in{'clear'};
    &cron::parse_times_input($lconf, \%in);

    # Create or delete the cron job
    local $oldjob = $job;
    if ($lconf->{'sched'}) {
        # Create cron job and script
        $job->{'user'} = 'root';
        $job->{'active'} = 1;
        $job->{'command'} = "$cron_cmd $in{'file'}";
        &lconf_to_cron($lconf, $job);
        &lock_file($cron_cmd);
        &cron::create_wrapper($cron_cmd, $module_name, "webalizer.pl");
        &unlock_file($cron_cmd);
        }
    &lock_file(&cron::cron_file($job)) if ($job);
    if ($lconf->{'sched'} && !$oldjob) {
        # Create the cron job
        &foreign_call("cron", "create_cron_job", $job); 
        }
    elsif ($lconf->{'sched'} && $oldjob) {
        # Update the cron job
        &foreign_call("cron", "change_cron_job", $job); 
        }
    elsif (!$lconf->{'sched'} && $oldjob) {
        # Delete the cron job
        &foreign_call("cron", "delete_cron_job", $job);
        }
    &unlock_file(&cron::cron_file($job)) if ($job);

    if ($in{'new'}) {
        # Add a new custom log file to the configuration
        &lock_file($custom_logs_file);
        @custom = &read_custom_logs();
        push(@custom, { 'file' => $in{'file'}, 'type' => $in{'type'} });
        &write_custom_logs(@custom);
        &unlock_file($custom_logs_file);
        }

    # Create or link the custom webalizer.conf file
    local $cfile = &config_file_name($in{'file'});
    if ($in{'cmode'} == 0) {
        # None at all
        &unlink_logged($cfile);
        }
    elsif ($in{'cmode'} == 1) {
        # File under /etc/webmin/webalizer
        if (-l $cfile) {
            &unlink_logged($cfile);
            }
        if (!-r $cfile) {
            # Need to copy into place
            &copy_source_dest($config{'webalizer_conf'}, $cfile);
            }
        }
    elsif ($in{'cmode'} == 2) {
        # Symbolic link to somewhere
        &unlink_logged($cfile);
        symlink($in{'cfile'}, $cfile);
        }

    # Update the log file's options
    local $cfile = &log_config_name($in{'file'});
    &lock_file($cfile);
    &save_log_config($in{'file'}, $lconf);
    &unlock_file($cfile);
    &webmin_log($in{'new'} ? "create" : "modify", "log", $in{'file'});
    }
&redirect("");


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