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 : VisitorReplacing.php
<?php /** * Replacing Visitor * * @package Less * @subpackage visitor */ class Less_VisitorReplacing extends Less_Visitor{ public function visitObj( $node ){ $funcName = 'visit'.$node->type; if( isset($this->_visitFnCache[$funcName]) ){ $visitDeeper = true; $node = $this->$funcName( $node, $visitDeeper ); if( $node ){ if( $visitDeeper && is_object($node) ){ $node->accept($this); } $funcName = $funcName . "Out"; if( isset($this->_visitFnCache[$funcName]) ){ $this->$funcName( $node ); } } }else{ $node->accept($this); } return $node; } public function visitArray( $nodes ){ $newNodes = array(); foreach($nodes as $node){ $evald = $this->visitObj($node); if( $evald ){ if( is_array($evald) ){ self::flatten($evald,$newNodes); }else{ $newNodes[] = $evald; } } } return $newNodes; } public function flatten( $arr, &$out ){ foreach($arr as $item){ if( !is_array($item) ){ $out[] = $item; continue; } foreach($item as $nestedItem){ if( is_array($nestedItem) ){ self::flatten( $nestedItem, $out); }else{ $out[] = $nestedItem; } } } return $out; } }
Close