One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
oldserver
/
2
/
usr
/
share
/
pear
/
Horde
/
Token
/
View File Name :
Null.php
<?php /** * The Horde_Token_Null:: class provides a null implementation of the token * driver. * * Copyright 2010-2016 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @package Token */ class Horde_Token_Null extends Horde_Token_Base { /** * Does the token exist? * * @return boolean True if the token exists. */ public function exists($tokenID) { return false; } /** * Add a token ID. * * @param string $tokenID Token ID to add. */ public function add($tokenID) { } /** * Delete all expired connection IDs. */ public function purge() { } }