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.119.28.173
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 /
Statements /
[ HOME SHELL ]
Name
Size
Permission
Action
IMappedStatement.php
2.73
KB
-rw-r--r--
TCachingStatement.php
2.96
KB
-rw-r--r--
TDeleteMappedStatement.php
488
B
-rw-r--r--
TInsertMappedStatement.php
1.29
KB
-rw-r--r--
TMappedStatement.php
35.46
KB
-rw-r--r--
TPreparedCommand.php
2.08
KB
-rw-r--r--
TPreparedStatement.php
1.5
KB
-rw-r--r--
TPreparedStatementFactory.php
1.17
KB
-rw-r--r--
TSelectMappedStatement.php
822
B
-rw-r--r--
TSimpleDynamicSql.php
866
B
-rw-r--r--
TStaticSql.php
758
B
-rw-r--r--
TUpdateMappedStatement.php
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TPreparedStatement.php
<?php /** * TPreparedStatement class file. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Data.SqlMap.Statements */ /** * TpreparedStatement class. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap.Statements * @since 3.1 */ class TPreparedStatement extends TComponent { private $_sqlString=''; private $_parameterNames; private $_parameterValues; public function getPreparedSql(){ return $this->_sqlString; } public function setPreparedSql($value){ $this->_sqlString = $value; } public function getParameterNames($needed = true) { if (!$this->_parameterNames and $needed) $this->_parameterNames = new TList; return $this->_parameterNames; } public function setParameterNames($value){ $this->_parameterNames = $value; } public function getParameterValues($needed = true) { if (!$this->_parameterValues and $needed) $this->_parameterValues=new TMap; return $this->_parameterValues; } public function setParameterValues($value){ $this->_parameterValues = $value; } public function __sleep() { $exprops = array(); $cn = __CLASS__; if (!$this->_parameterNames or !$this->_parameterNames->getCount()) $exprops[] = "\0$cn\0_parameterNames"; if (!$this->_parameterValues or !$this->_parameterValues->getCount()) $exprops[] = "\0$cn\0_parameterValues"; return array_diff(parent::__sleep(),$exprops); } }
Close