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

/home/mnnews/public_html/login/phpmyadmin/templates/columns_definitions/   drwxr-xr-x
Free 4.5 GB of 27.03 GB (16.65%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     column_definitions_form.phtml (7.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<form method="post"
      action="<?php echo $action; ?>"
      class="<?php echo ($action == 'tbl_create.php' ? 'create_table' : 'append_fields'); ?>_form ajax lock-page">
    <?php echo PMA_URL_getHiddenInputs($form_params); ?>
    <input type="hidden"
           name="primary_indexes"
           value="<?php if (! empty($_REQUEST['primary_indexes'])) {
                      
// happens when an index has been set on a column,
                      // and a column is added to the table creation dialog
                      //
                      // this contains a JSON-encoded string
                      
echo htmlspecialchars($_REQUEST['primary_indexes']);
                    } else echo
'[]'; ?>">
    <input type="hidden"
           name="unique_indexes"
           value="<?php if (! empty($_REQUEST['unique_indexes'])) {
                      echo
htmlspecialchars($_REQUEST['unique_indexes']);
                    } else echo
'[]'; ?>">
    <input type="hidden"
           name="indexes"
           value="<?php if (! empty($_REQUEST['indexes'])) {
                      echo
htmlspecialchars($_REQUEST['indexes']);
                    } else echo
'[]'; ?>">
    <input type="hidden"
           name="fulltext_indexes"
           value="<?php if (! empty($_REQUEST['fulltext_indexes'])) {
                      echo
htmlspecialchars($_REQUEST['fulltext_indexes']);
                    } else echo
'[]'; ?>">
    <input type="hidden"
           name="spatial_indexes"
           value="<?php if (! empty($_REQUEST['spatial_indexes'])) {
                      echo
htmlspecialchars($_REQUEST['spatial_indexes']);
                    } else echo
'[]'; ?>">

    <?php if ($action == 'tbl_create.php'): ?>
        <div id="table_name_col_no_outer">
            <table id="table_name_col_no">
                <tr class="vmiddle floatleft">
                    <td><?php echo __('Table name'); ?>:&nbsp;
                    <input type="text"
                           name="table"
                           size="40"
                           maxlength="64"
                           value="<?php echo (isset($_REQUEST['table']) ? htmlspecialchars($_REQUEST['table']) : ''); ?>"
                           class="textfield" autofocus required />
                    </td>
                    <td>
                        Add
                        <input type="number"
                               id="added_fields"
                               name="added_fields"
                               size="2"
                               value="1"
                               min="1"
                               onfocus="this.select()" />
                        column(s)
                        <input type="button"
                               name="submit_num_fields"
                               value="<?php echo __('Go'); ?>" />
                    </td>
                </tr>
            </table>
        </div>
    <?php endif; ?>
    <?php if (is_array($content_cells)): ?>
        <?php echo PMATemplate::get(
            
'columns_definitions/table_fields_definitions'
        
)->render(array(
            
'is_backup' => $is_backup,
            
'fields_meta' => $fields_meta,
            
'mimework' => $mimework,
            
'content_cells' => $content_cells
        
)); ?>
    <?php endif; ?>
    <?php if ($action == 'tbl_create.php'): ?>
        <table>
            <tr class="vtop">
                <th>
                    <?php echo __('Table comments:'); ?>
                </th>
                <td width="25">&nbsp;</td>
                <th>
                    <?php echo __('Collation:'); ?>
                </th>
                <td width="25">&nbsp;</td>
                <th>
                    <?php echo __('Storage Engine:'); ?>
                    <?php echo PMA_Util::showMySQLDocu('Storage_engines'); ?>
                </th>
                <td width="25">&nbsp;</td>
                <th>
                    <?php echo __('Connection:'); ?>
                    <?php echo PMA_Util::showMySQLDocu('federated-create-connection'); ?>
                </th>
            </tr>
            <tr>
                <td>
                    <input type="text"
                           name="comment"
                           size="40"
                           maxlength="60"
                           value="<?php echo (isset($_REQUEST['comment']) ? htmlspecialchars($_REQUEST['comment']): ''); ?>"
                           class="textfield" />
                </td>
                <td width="25">&nbsp;</td>
                <td>
                    <?php echo PMA_generateCharsetDropdownBox(
                        
PMA_CSDROPDOWN_COLLATION,
                        
'tbl_collation',
                        
null,
                        isset(
$_REQUEST['tbl_collation']) ? $_REQUEST['tbl_collation'] : null,
                        
false
                    
); ?>
                </td>
                <td width="25">&nbsp;</td>
                <td>
                    <?php echo PMA_StorageEngine::getHtmlSelect(
                        
'tbl_storage_engine',
                        
null,
                        (isset(
$_REQUEST['tbl_storage_engine']) ? $_REQUEST['tbl_storage_engine'] : null)
                    );
?>
                </td>
                <td width="25">&nbsp;</td>
                <td>
                    <input type="text"
                           name="connection"
                           size="40"
                           value="<?php echo (isset($_REQUEST['connection']) ? htmlspecialchars($_REQUEST['connection']) : ''); ?>"
                           placeholder="scheme://user_name[:password]@host_name[:port_num]/db_name/tbl_name"
                           class="textfield"
                           required="required" />
                </td>
            </tr>
            <?php if (PMA_Partition::havePartitioning()): ?>
                <tr class="vtop">
                    <th>
                        <?php echo __('PARTITION definition:'); ?>
                        &nbsp;
                        <?php echo PMA_Util::showMySQLDocu('Partitioning'); ?>
                    </th>
                </tr>
                <tr>
                    <td>
                        <textarea name="partition_definition"
                                  id="partitiondefinition"
                                  cols="<?php echo $GLOBALS['cfg']['TextareaCols']; ?>"
                                  rows="<?php echo $GLOBALS['cfg']['TextareaRows']; ?>"
                                  dir="<?php echo $GLOBALS['text_dir']; ?>">

                            <?php echo (isset($_REQUEST['partition_definition']) ? htmlspecialchars($_REQUEST['partition_definition']) : ''); ?>

                        </textarea>
                    </td>
                </tr>
            <?php endif; ?>
        </table>
        <br />
    <?php endif; ?>
    <fieldset class="tblFooters">
        <input type="button"
               class="preview_sql"
               value="<?php echo __('Preview SQL') ?>" />
        <input type="submit"
               name="do_save_data"
               value="<?php echo __('Save'); ?>" />
    </fieldset>
    <div id="properties_message">
    </div>
</form>

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