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.51
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.backup.39 /
lib /
lessphp /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxrwxr-x
Output
[ DIR ]
drwxrwxr-x
SourceMap
[ DIR ]
drwxrwxr-x
Tree
[ DIR ]
drwxrwxr-x
Visitor
[ DIR ]
drwxrwxr-x
Autoloader.php
1.42
KB
-rw-rw-r--
Cache.php
7.76
KB
-rw-rw-r--
Colors.php
4.17
KB
-rw-rw-r--
Configurable.php
1.26
KB
-rw-rw-r--
Environment.php
3.29
KB
-rw-rw-r--
Functions.php
36.9
KB
-rw-rw-r--
LICENSE
9.5
KB
-rw-rw-r--
Less.php.combine
226
B
-rw-rw-r--
Mime.php
1007
B
-rw-rw-r--
Output.php
749
B
-rw-rw-r--
Parser.php
59.76
KB
-rw-rw-r--
Tree.php
1.6
KB
-rw-rw-r--
Version.php
328
B
-rw-rw-r--
Visitor.php
850
B
-rw-rw-r--
VisitorReplacing.php
1.19
KB
-rw-rw-r--
moodle_readme.txt
333
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Tree.php
<?php /** * Tree * * @package Less * @subpackage tree */ class Less_Tree{ public $cache_string; public function toCSS(){ $output = new Less_Output(); $this->genCSS($output); return $output->toString(); } /** * Generate CSS by adding it to the output object * * @param Less_Output $output The output * @return void */ public function genCSS($output){} /** * @param Less_Tree_Ruleset[] $rules */ public static function outputRuleset( $output, $rules ){ $ruleCnt = count($rules); Less_Environment::$tabLevel++; // Compressed if( Less_Parser::$options['compress'] ){ $output->add('{'); for( $i = 0; $i < $ruleCnt; $i++ ){ $rules[$i]->genCSS( $output ); } $output->add( '}' ); Less_Environment::$tabLevel--; return; } // Non-compressed $tabSetStr = "\n".str_repeat( Less_Parser::$options['indentation'] , Less_Environment::$tabLevel-1 ); $tabRuleStr = $tabSetStr.Less_Parser::$options['indentation']; $output->add( " {" ); for($i = 0; $i < $ruleCnt; $i++ ){ $output->add( $tabRuleStr ); $rules[$i]->genCSS( $output ); } Less_Environment::$tabLevel--; $output->add( $tabSetStr.'}' ); } public function accept($visitor){} public static function ReferencedArray($rules){ foreach($rules as $rule){ if( method_exists($rule, 'markReferenced') ){ $rule->markReferenced(); } } } /** * Requires php 5.3+ */ public static function __set_state($args){ $class = get_called_class(); $obj = new $class(null,null,null,null); foreach($args as $key => $val){ $obj->$key = $val; } return $obj; } }
Close