ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:27.57 GB of 70.42 GB (39.16%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ home/ yalagina/ map/ site/ sql_control/ - drwxr-sr-x

Directory:
Viewing file:     transformation_wrapper.php (3.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 *
 * @package phpMyAdmin
 */

/**
 *
 */
define('IS_TRANSFORMATION_WRAPPER'true);

/**
 * Gets a core script and starts output buffering work
 */
require_once './libraries/common.inc.php';
require_once 
'./libraries/transformations.lib.php'// Transformations
$cfgRelation PMA_getRelationsParam();

/**
 * Ensures db and table are valid, else moves to the "parent" script
 */
require_once './libraries/db_table_exists.lib.php';


/**
 * Get the list of the fields of the current table
 */
PMA_DBI_select_db($db);
$table_def PMA_DBI_query('SHOW FIELDS FROM ' PMA_backquote($table), nullPMA_DBI_QUERY_STORE);
if (isset(
$where_clause)) {
    
$result      PMA_DBI_query('SELECT * FROM ' PMA_backquote($table) . ' WHERE ' $where_clause ';'nullPMA_DBI_QUERY_STORE);
    
$row         PMA_DBI_fetch_assoc($result);
} else {
    
$result      PMA_DBI_query('SELECT * FROM ' PMA_backquote($table) . ' LIMIT 1;'nullPMA_DBI_QUERY_STORE);
    
$row         PMA_DBI_fetch_assoc($result);
}

// No row returned
if (!$row) {
    exit;
// end if (no record returned)

$default_ct 'application/octet-stream';

if (
$cfgRelation['commwork'] && $cfgRelation['mimework']) {
    
$mime_map PMA_getMime($db$table);
    
$mime_options PMA_transformation_getOptions((isset($mime_map[$transform_key]['transformation_options']) ? $mime_map[$transform_key]['transformation_options'] : ''));

    foreach (
$mime_options AS $key => $option) {
        if (
substr($option010) == '; charset=') {
            
$mime_options['charset'] = $option;
        }
    }
}

// For re-usability, moved http-headers and stylesheets
// to a seperate file. It can now be included by libraries/header.inc.php,
// querywindow.php.

require_once './libraries/header_http.inc.php';
// [MIME]
if (isset($ct) && !empty($ct)) {
    
$content_type 'Content-Type: ' $ct;
} else {
    
$content_type 'Content-Type: ' . (isset($mime_map[$transform_key]['mimetype']) ? str_replace('_''/'$mime_map[$transform_key]['mimetype']) : $default_ct) . (isset($mime_options['charset']) ? $mime_options['charset'] : '');
}
header($content_type);

if (isset(
$cn) && !empty($cn)) {
    
header('Content-Disposition: attachment; filename=' PMA_sanitize_filename($cn));
}

if (!isset(
$resize)) {
    echo 
$row[$transform_key];
} else {
    
// if image_*__inline.inc.php finds that we can resize,
    // it sets $resize to jpeg or png

    
$srcImage imagecreatefromstring($row[$transform_key]);
    
$srcWidth ImageSX($srcImage);
    
$srcHeight ImageSY($srcImage);

    
// Check to see if the width > height or if width < height
    // if so adjust accordingly to make sure the image
    // stays smaller then the $newWidth and $newHeight

    
$ratioWidth $srcWidth/$newWidth;
    
$ratioHeight $srcHeight/$newHeight;

    if (
$ratioWidth $ratioHeight){
        
$destWidth $srcWidth/$ratioHeight;
        
$destHeight $newHeight;
    } else {
        
$destWidth $newWidth;
        
$destHeight $srcHeight/$ratioWidth;
    }

    if (
$resize) {
        
$destImage ImageCreateTrueColor($destWidth$destHeight);
    }

//    ImageCopyResized($destImage, $srcImage, 0, 0, 0, 0, $destWidth, $destHeight, $srcWidth, $srcHeight);
// better quality but slower:
    
ImageCopyResampled($destImage$srcImage0000$destWidth$destHeight$srcWidth$srcHeight);

    if (
$resize == 'jpeg') {
        
ImageJPEG($destImage''75);
    }
    if (
$resize == 'png') {
        
ImagePNG($destImage);
    }
    
ImageDestroy($srcImage);
    
ImageDestroy($destImage);
}
?>
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.5833 seconds