!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/libraries/classes/Plugins/Transformations/Output/   drwxr-xr-x
Free 83.25 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Text_Plain_Binarytoip.php (2.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Handles the binary to IPv4/IPv6 transformation for text plain
 */

declare(strict_types=1);

namespace 
PhpMyAdmin\Plugins\Transformations\Output;

use 
PhpMyAdmin\Plugins\TransformationsPlugin;
use 
PhpMyAdmin\Utils\FormatConverter;
use 
stdClass;
use function 
stripos;

/**
 * Handles the binary to IPv4/IPv6 transformation for text plain
 */
// @codingStandardsIgnoreLine
class Text_Plain_Binarytoip extends TransformationsPlugin
{
    
/**
     * Gets the transformation description of the plugin
     *
     * @return string
     */
    
public static function getInfo()
    {
        return 
__(
            
'Converts an Internet network address stored as a binary string'
            
' into a string in Internet standard (IPv4/IPv6) format.'
        
);
    }

    
/**
     * Does the actual work of each specific transformations plugin.
     *
     * @param string        $buffer  text to be transformed. a binary string containing
     *                               an IP address, as returned from MySQL's INET6_ATON
     *                               function
     * @param array         $options transformation options
     * @param stdClass|null $meta    meta information
     *
     * @return string IP address
     */
    
public function applyTransformation($buffer, array $options = [], ?stdClass $meta null)
    {
        
$isBinary false;
        if (
$meta !== null && stripos($meta->flags'binary') !== false) {
            
$isBinary true;
        }

        return 
FormatConverter::binaryToIp($buffer$isBinary);
    }

    
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */

    /**
     * Gets the transformation name of the plugin
     *
     * @return string
     */
    
public static function getName()
    {
        return 
'Binary To IPv4/IPv6';
    }

    
/**
     * Gets the plugin`s MIME type
     *
     * @return string
     */
    
public static function getMIMEType()
    {
        return 
'Text';
    }

    
/**
     * Gets the plugin`s MIME subtype
     *
     * @return string
     */
    
public static function getMIMESubtype()
    {
        return 
'Plain';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0038 ]--