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.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
gf.bdcloud.fr /
includes /
DebugBar /
Delete
Unzip
Name
Size
Permission
Date
Action
Bridge
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
DataCollector
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
DataFormatter
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
Resources
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
Storage
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
DebugBar.php
11.98
KB
-rw-r--r--
2020-10-12 13:33
DebugBarException.php
305
B
-rw-r--r--
2020-10-12 13:33
HttpDriverInterface.php
1.2
KB
-rw-r--r--
2020-10-12 13:33
JavascriptRenderer.php
27.22
KB
-rw-r--r--
2020-10-12 13:33
OpenHandler.php
2.55
KB
-rw-r--r--
2020-10-12 13:33
PhpHttpDriver.php
928
B
-rw-r--r--
2020-10-12 13:33
RequestIdGenerator.php
477
B
-rw-r--r--
2020-10-12 13:33
RequestIdGeneratorInterface.php
416
B
-rw-r--r--
2020-10-12 13:33
StandardDebugBar.php
1011
B
-rw-r--r--
2020-10-12 13:33
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; /** * Provides an abstraction of PHP native features for easier integration * in third party frameworks */ interface HttpDriverInterface { /** * Sets HTTP headers * * @param string $headers */ function setHeaders(array $headers); /** * Checks if the session is started * * @return boolean */ function isSessionStarted(); /** * Sets a value in the session * * @param string $name * @param string $value */ function setSessionValue($name, $value); /** * Checks if a value is in the session * * @param string $name * @return boolean */ function hasSessionValue($name); /** * Returns a value from the session * * @param string $name * @return mixed */ function getSessionValue($name); /** * Deletes a value from the session * * @param string $name */ function deleteSessionValue($name); }