!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simplesamlphp/lib/Auth/OpenID/   drwxrwxr-x
Free 13.82 GB of 61.93 GB (22.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     KVForm.php (2.47 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * OpenID protocol key-value/comma-newline format parsing and
 * serialization
 *
 * PHP versions 4 and 5
 *
 * LICENSE: See the COPYING file included in this distribution.
 *
 * @access private
 * @package OpenID
 * @author JanRain, Inc. <openid@janrain.com>
 * @copyright 2005-2008 Janrain, Inc.
 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
 */

/**
 * Container for key-value/comma-newline OpenID format and parsing
 */
class Auth_OpenID_KVForm {
    
/**
     * Convert an OpenID colon/newline separated string into an
     * associative array
     *
     * @static
     * @access private
     */
    
static function toArray($kvs$strict=false)
    {
        
$lines explode("\n"$kvs);

        
$last array_pop($lines);
        if (
$last !== '') {
            
array_push($lines$last);
            if (
$strict) {
                return 
false;
            }
        }

        
$values = array();

        for (
$lineno 0$lineno count($lines); $lineno++) {
            
$line $lines[$lineno];
            
$kv explode(':'$line2);
            if (
count($kv) != 2) {
                if (
$strict) {
                    return 
false;
                }
                continue;
            }

            
$key $kv[0];
            
$tkey trim($key);
            if (
$tkey != $key) {
                if (
$strict) {
                    return 
false;
                }
            }

            
$value $kv[1];
            
$tval trim($value);
            if (
$tval != $value) {
                if (
$strict) {
                    return 
false;
                }
            }

            
$values[$tkey] = $tval;
        }

        return 
$values;
    }

    
/**
     * Convert an array into an OpenID colon/newline separated string
     *
     * @static
     * @access private
     */
    
static function fromArray($values)
    {
        if (
$values === null) {
            return 
null;
        }

        
ksort($values);

        
$serialized '';
        foreach (
$values as $key => $value) {
            if (
is_array($value)) {
                list(
$key$value) = array($value[0], $value[1]);
            }

            if (
strpos($key':') !== false) {
                return 
null;
            }

            if (
strpos($key"\n") !== false) {
                return 
null;
            }

            if (
strpos($value"\n") !== false) {
                return 
null;
            }
            
$serialized .= "$key:$value\n";
        }
        return 
$serialized;
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9661 ]--