Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.121
Cant Read [ /etc/named.conf ]
7.4.33
trade
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 /
trade /
art.tradesense.co.ke /
system /
Database /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
MySQLi
[ DIR ]
drwxr-xr-x
OCI8
[ DIR ]
drwxr-xr-x
Postgre
[ DIR ]
drwxr-xr-x
SQLSRV
[ DIR ]
drwxr-xr-x
SQLite3
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
BaseBuilder.php
79.48
KB
-rw-r--r--
BaseConnection.php
44.85
KB
-rw-r--r--
BasePreparedQuery.php
4.4
KB
-rw-r--r--
BaseResult.php
12.2
KB
-rw-r--r--
BaseUtils.php
8.06
KB
-rw-r--r--
Config.php
3.54
KB
-rw-r--r--
ConnectionInterface.php
3.91
KB
-rw-r--r--
Database.php
3.76
KB
-rw-r--r--
Forge.php
29.57
KB
-rw-r--r--
Migration.php
1.3
KB
-rw-r--r--
MigrationRunner.php
22.02
KB
-rw-r--r--
ModelFactory.php
1.15
KB
-rw-r--r--
PreparedQueryInterface.php
1.24
KB
-rw-r--r--
Query.php
10.28
KB
-rw-r--r--
QueryInterface.php
2.21
KB
-rw-r--r--
RawSql.php
951
B
-rw-r--r--
ResultInterface.php
3.91
KB
-rw-r--r--
Seeder.php
4.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RawSql.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Database; class RawSql { /** * @var string Raw SQL string */ private string $string; public function __construct(string $sqlString) { $this->string = $sqlString; } public function __toString(): string { return $this->string; } /** * Create new instance with new SQL string */ public function with(string $newSqlString): self { $new = clone $this; $new->string = $newSqlString; return $new; } /** * Returns unique id for binding key */ public function getBindingKey(): string { return 'RawSql' . spl_object_id($this); } }
Close