!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/at/   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:     index.cgi (3.75 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# List all at jobs and display a form for creating a new one
#
# F&AS : default parameters can be set 
#   ext_user : default user
#   ext_cmd  : default command

require './at-lib.pl';
use POSIX;
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
ReadParse();

# Check if at is installed
if (!&has_command("at")) {
    &ui_print_endpage(&text('index_noat', "<tt>at</tt>",
                    "../config.cgi?$module_name"));
    }

# Show list of existing jobs
@jobs = &list_atjobs();
@jobs = grep { &can_edit_user(\%access, $_->{'user'}) } @jobs;
if (@jobs) {
    print &ui_form_start("delete_jobs.cgi", "post");
    @jobs = sort { $a->{'id'} <=> $b->{'id'} } @jobs;
    @tds = ( "width=5", "nowrap" );
    @links = ( &select_all_link("d"), &select_invert_link("d") );
    print &ui_links_row(\@links);
    print &ui_columns_start([
        "",
        $text{'index_id'},
        $text{'index_user'},
        $text{'index_exec'},
        $text{'index_created'},
        $text{'index_cmd'} ], 100, 0, \@tds);
    foreach $j (@jobs) {
        local @cols;
        push(@cols, "<a href='edit_job.cgi?id=$j->{'id'}'>".
                "$j->{'id'}</a>");
        push(@cols, &html_escape($j->{'user'}));
        $date = localtime($j->{'date'});
        push(@cols, "<tt>$date</tt>");
        $created = localtime($j->{'created'});
        push(@cols, "<tt>$created</tt>");
        push(@cols, join("<br>", split(/\n/,
                &html_escape($j->{'realcmd'}))));
        print &ui_checked_columns_row(\@cols, \@tds, "d", $j->{'id'});
        }
    print &ui_columns_end();
    print &ui_links_row(\@links);
    print &ui_form_end([ [ "delete", $text{'index_delete'} ] ]);
    print &ui_hr();
    }


# Show form for creating a new At job
print &ui_form_start("create_job.cgi");
print &ui_table_start($text{'index_header'}, undef, 2);

# User to run as
$dir = "/";
if ($access{'mode'} == 1) {
    $usel = &ui_select("user", undef,
               [ split(/\s+/, $access{'users'}) ]);
    }
elsif ($access{'mode'} == 3) {
    $usel = "<tt>$remote_user</tt>";
    print &ui_hidden("user", $remote_user);
    @uinfo = getpwnam($remote_user);
    $dir = $uinfo[7];
    }
else {
    $usel = &ui_user_textbox("user", $in{'ext_user'});
    }
print &ui_table_row($text{'index_user'}, $usel);

# Run date
@now = localtime(time());
print &ui_table_row($text{'index_date'},
    &ui_textbox("day", $now[3], 2)."/".
    &ui_select("month", $now[4],
           [ map { [ $_, $text{"smonth_".($_+1)} ] } ( 0 .. 11 ) ])."/".
    &ui_textbox("year", $now[5]+1900, 4).
    &date_chooser_button("day", "month", "year"));

# Run time
print &ui_table_row($text{'index_time'},
    &ui_textbox("hour", undef, 2).":".&ui_textbox("min", "00", 2));

# Current date and time
($date, $time) = split(/\s+/, &make_date(time()));
print &ui_table_row($text{'index_cdate'}, $date);
print &ui_table_row($text{'index_ctime'}, $time);

# Run in directory
print &ui_table_row($text{'index_dir'},
            &ui_textbox("dir", $dir, 50));

# Commands to run
print &ui_table_row($text{'index_cmd'},
            &ui_textarea("cmd", $in{'ext_cmd'}, 5, 50));

# Send email on completion
print &ui_table_row($text{'index_mail'},
            &ui_yesno_radio("mail", 0));

print &ui_table_end();
print &ui_form_end([ [ undef, $text{'create'} ] ]);

if ($access{'allow'} && $config{'allow_file'}) {
    # Show form to manage allowed and denied users
    @allow = &list_allowed();
    @deny = &list_denied();
    print &ui_hr();
    print &ui_form_start("save_allow.cgi", "post");
    print &ui_table_start($text{'index_allow'}, undef, 2);
    print &ui_table_row($text{'index_amode'},
            &ui_radio("amode", 
            @allow ? 1 : @deny ? 2 : 0,
            [ [ 0, $text{'index_amode0'} ],
              [ 1, $text{'index_amode1'} ],
              [ 2, $text{'index_amode2'} ] ]));
    print &ui_table_row("",
            &ui_textarea("ausers", @allow ? join("\n", @allow) :
                      @deny ? join("\n", @deny) : undef,
                5, 50));
    print &ui_table_end();
    print &ui_form_end([ [ "save", $text{'save'} ] ]);
    }

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