Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
doc /
Var_Dump /
[ HOME SHELL ]
Name
Size
Permission
Action
example-1.php
2.04
KB
-rw-r--r--
example-2.php
2.75
KB
-rw-r--r--
example-3.php
3
KB
-rw-r--r--
example-4.php
2.63
KB
-rw-r--r--
example-5.php
1.91
KB
-rw-r--r--
example-6.php
840
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example-5.php
<?php header('Content-Type: application/xhtml+xml; charset=utf-8'); header('Vary: Accept'); ?> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>An XHTML 1.0 Strict standard template</title> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <style> /* style for XHTML_Text */ pre.var_dump { line-height:1.8em; } pre.var_dump span.type { color:#006600; background:transparent; } pre.var_dump span.value { padding:2px; color:#339900; background:#F0F0F0; border: 1px dashed #CCCCCC; } </style> </head> <body> <?php include_once 'Var_Dump.php'; echo '<h1>example5.php : Text displaying modes</h1>'; /* * example5.php : Text displaying modes * */ $fileHandler = tmpfile(); $linkedArray = array(0 => 'John', 11 => 'Jack', 127 => 'Bill'); $array = array( 'key-1' => 'The quick brown fox jumped over the lazy dog', 'key-2' => array( 'long-key' => & $linkedArray, 'file' => $fileHandler ), 'long-key-3' => 234, ); echo '<h2>Compact mode (offset 4)</h2>'; Var_Dump::displayInit( array( 'display_mode' => 'HTML4_Text' ), array( 'mode' => 'compact', 'offset' => 4 ) ); Var_Dump::display($array); echo '<h2>Normal mode (offset 4)</h2>'; Var_Dump::displayInit( array( 'display_mode' => 'HTML4_Text' ), array( 'mode' => 'normal', 'offset' => 4 ) ); Var_Dump::display($array); echo '<h2>Wide mode (offset 4)</h2>'; Var_Dump::displayInit( array( 'display_mode' => 'HTML4_Text' ), array( 'mode' => 'wide', 'offset' => 4 ) ); Var_Dump::display($array); fclose($fileHandler); ?> </body> </html>
Close