Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.158.137
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
ezyang /
htmlpurifier /
library /
Delete
Unzip
Name
Size
Permission
Date
Action
HTMLPurifier
[ DIR ]
drwxrwxr-x
2022-09-18 07:06
HTMLPurifier.auto.php
274
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.autoload-legacy.php
213
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.autoload.php
910
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.composer.php
101
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.func.php
576
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.includes.php
10.33
KB
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.kses.php
923
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.path.php
235
B
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.php
9.95
KB
-rw-rw-r--
2022-09-18 07:06
HTMLPurifier.safe-includes.php
13.26
KB
-rw-rw-r--
2022-09-18 07:06
Save
Rename
<?php /** * @file * Emulation layer for code that used kses(), substituting in HTML Purifier. */ require_once dirname(__FILE__) . '/HTMLPurifier.auto.php'; function kses($string, $allowed_html, $allowed_protocols = null) { $config = HTMLPurifier_Config::createDefault(); $allowed_elements = array(); $allowed_attributes = array(); foreach ($allowed_html as $element => $attributes) { $allowed_elements[$element] = true; foreach ($attributes as $attribute => $x) { $allowed_attributes["$element.$attribute"] = true; } } $config->set('HTML.AllowedElements', $allowed_elements); $config->set('HTML.AllowedAttributes', $allowed_attributes); if ($allowed_protocols !== null) { $config->set('URI.AllowedSchemes', $allowed_protocols); } $purifier = new HTMLPurifier($config); return $purifier->purify($string); } // vim: et sw=4 sts=4