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


Viewing file:     list_pack.cgi (2.26 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# list_pack.cgi
# List all the files in some package

require './cluster-software-lib.pl';
&ReadParse();
&ui_print_header(undef, $text{'list_title'}, "");

@servers = &list_servers();
($s) = grep { $_->{'id'} == $in{'server'} } @servers;
&remote_foreign_require($s->{'host'}, "software", "software-lib.pl");

print &ui_subheading(&text('list_files', "<tt>$in{'package'}</tt>",
           $s->{'desc'} ? $s->{'desc'} : $s->{'host'}));
print "<table border width=100%>\n";
print "<tr $tb> <td><b>$text{'list_path'}</b></td> ",
      "<td><b>$text{'list_owner'}</b></td> ",
      "<td><b>$text{'list_group'}</b></td> ",
      "<td><b>$text{'list_type'}</b></td> ",
      "<td><b>$text{'list_size'}</b></td> ",
      "<td><b>$text{'list_status'}</b></td> </tr>\n";
$n = &remote_foreign_call($s->{'host'}, "software",
              "check_files", $in{'package'});
$files = &remote_eval($s->{'host'}, "software", "\\%files");
for($i=0; $i<$n; $i++) {
    $sz = $files->{$i,'size'};
    $ty = $files->{$i,'type'};
    print "<tr $cb>\n";
    if ($ty == 3 || $ty == 4) {
        print "<td valign=top>$files->{$i,'path'} -> ",
              "$files->{$i,'link'}</td>\n";
        print "<td><br></td> <td><br></td>\n";
        }
    else {
        print "<td valign=top><table width=100% cellpadding=0 ",
              "cellspacing=0><tr><td>",
              "$files->{$i,'path'}</td> <td align=right>\n";
        if ($ty == 0 || $ty == 5) {
            print "<a href='view.cgi",$files->{$i,'path'},
                  "'>$text{'list_view'}</a>";
            }
        print "</td></tr>","</table></td>\n";
        print "<td valign=top>$files->{$i,'user'}</td>\n";
        print "<td valign=top>$files->{$i,'group'}</td>\n";
        }
    print "<td valign=top>$software::type_map[$ty]</td>\n";
    if ($ty != 0) { $sz = "<br>"; }
    elsif ($sz > 1000000) { $sz = sprintf "%d MB", $sz/1000000; }
    elsif ($sz > 1000) { $sz = sprintf "%d kB", $sz/1000; }
    else { $sz .= " B"; }
    print "<td valign=top>$sz</td>\n";
    $err = $files->{$i,'error'};
    if ($err) {
        $err =~ s/</&lt;/g;
        $err =~ s/>/&gt;/g;
        $err =~ s/\n/<br>/g;
        print "<td valign=top><font color=#ff0000>$err</font></td>\n";
        }
    else { print "<td valign=top>$text{'list_ok'}</td>\n"; }
    print "</tr>\n";
    }
print "</table><p>\n";

&remote_finished();
&ui_print_footer("edit_pack.cgi?package=".&urlize($in{'package'})."&search=".&urlize($in{'search'}), $text{'edit_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 ]--