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 | : 172.69.17.90
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.aptans /
mod /
wiki /
parser /
[ HOME SHELL ]
Name
Size
Permission
Action
markups
[ DIR ]
drwxr-xr-x
parser.php
8.89
KB
-rw-r--r--
utils.php
2.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.php
<?php /** * Parser utils and default callbacks. * * @author Josep ArĂºs * * @license http://www.gnu.org/copyleft/gpl.html GNU Public License * @package mod_wiki */ require_once($CFG->dirroot . "/lib/outputcomponents.php"); class parser_utils { public static function h($tag, $text = null, $options = array(), $escape_text = false) { $tag = htmlentities($tag, ENT_COMPAT, 'UTF-8'); if(!empty($text) && $escape_text) { $text = htmlentities($text, ENT_COMPAT, 'UTF-8'); } return html_writer::tag($tag, $text, $options); } /** * Default link generator */ public static function wiki_parser_link_callback($link, $options) { $l = urlencode($link); if(!empty($options['anchor'])) { $l .= "#".urlencode($options['anchor']); } return array('content' => $link, 'url' => "http://".$l); } /** * Default table generator */ public static function wiki_parser_table_callback($table) { $html = ""; $headers = $table[0]; $columncount = count($headers); $headerhtml = ""; foreach($headers as $h) { $text = trim($h[1]); if($h[0] == 'header') { $headerhtml .= "\n".parser_utils::h('th', $text)."\n"; $hasheaders = true; } else if($h[0] == 'normal'){ $headerhtml .= "\n".parser_utils::h("td", $text)."\n"; } } $headerhtml = "\n".parser_utils::h('tr', $headerhtml)."\n"; $bodyhtml = ""; if(isset($hasheaders)) { $html = "\n".parser_utils::h('thead', $headerhtml)."\n"; } else { $bodyhtml .= $headerhtml; } array_shift($table); foreach($table as $row) { $htmlrow = ""; for($i = 0; $i < $columncount; $i++) { $text = ""; if(!isset($row[$i])) { $htmlrow .= "\n".parser_utils::h('td', $text)."\n"; } else { $text = trim($row[$i][1]); if($row[$i][0] == 'header') { $htmlrow .= "\n".parser_utils::h('th', $text)."\n"; } else if($row[$i][0] == 'normal'){ $htmlrow .= "\n".parser_utils::h('td', $text)."\n"; } } } $bodyhtml .= "\n".parser_utils::h('tr', $htmlrow)."\n"; } $html .= "\n".parser_utils::h('tbody', $bodyhtml)."\n"; return "\n".parser_utils::h('table', $html)."\n"; } /** * Default path converter */ public static function wiki_parser_real_path($url) { return $url; } }
Close