!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/libexec/webmin/mailboxes/   drwxr-xr-x
Free 3.83 GB of 27.03 GB (14.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     search_form.cgi (1.86 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# search_form.cgi
# Display a form for searching a mailbox

require './mailboxes-lib.pl';
&ReadParse();
&can_user($in{'user'}) || &error($text{'mail_ecannot'});

@folders = &list_user_folders_sorted($in{'user'});
($folder) = grep { $_->{'index'} == $in{'folder'} } @folders;
&ui_print_header(undef, $text{'sform_title'}, "", undef, 0, 0, undef,
    &folder_link($in{'user'}, $folder));

# Start of form
print &ui_form_start("mail_search.cgi");
print &ui_hidden("user", $in{'user'});
print &ui_hidden("dom", $in{'dom'});
print &ui_hidden("ofolder", $in{'folder'});
print &ui_table_start($text{'sform_header'}, "width=100%", 2);

# And/or mode
print &ui_table_row($text{'sform_andmode'},
        &ui_radio("and", 1, [ [ 1, $text{'sform_and'} ],
                      [ 0, $text{'sform_or'} ] ]));

# Criteria table
$ctable = &ui_columns_start([ ], 50, 1);
for($i=0; $i<=4; $i++) {
    local @cols;
    push(@cols, $text{'sform_where'});
    push(@cols, &ui_select("field_$i", undef,
            [ [ undef, "&nbsp;" ],
              map { [ $_, $_ eq 'all' ? $text{'sform_allmsg'}
                          : $text{"sform_".$_} ] }
                  ( 'from', 'subject', 'to', 'cc', 'date',
                'body', 'headers', 'all', 'size') ]));

    push(@cols, &ui_select("neg_$i", 0,
            [ [ 0, $text{'sform_neg0'} ],
              [ 1, $text{'sform_neg1'} ] ]));

    push(@cols, $text{'sform_text'});
    push(@cols, &ui_textbox("what_$i", undef, 30));
    $ctable .= &ui_columns_row(\@cols, [ map { "nowrap" } @cols ]);
    }
$ctable .= &ui_columns_end();
print &ui_table_row(" ", $ctable);

# Folder to search
print &ui_table_row($text{'sform_folder2'},
    &folder_select(\@folders, $folder, "folder",
               [ [ -1, $text{'sform_all'} ] ]));

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

&ui_print_footer("list_mail.cgi?folder=$in{'folder'}&user=".
          &urlize($in{'user'})."&dom=$in{'dom'}", $text{'mail_return'},
         &user_list_link(), $text{'index_return'});


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0032 ]--