Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
dailyprofit.return /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
app.php
8.92
KB
-rw-r--r--
2023-07-25 23:21
auth.php
4.08
KB
-rw-r--r--
2023-07-25 23:21
broadcasting.php
1.88
KB
-rw-r--r--
2023-07-25 23:21
cache.php
3.3
KB
-rw-r--r--
2023-07-25 23:21
coinbase.php
281
B
-rw-r--r--
2023-07-25 23:21
coinremitter.php
221
B
-rw-r--r--
2023-07-25 23:21
cors.php
880
B
-rw-r--r--
2023-07-25 23:21
database.php
5.31
KB
-rw-r--r--
2023-07-25 23:21
datatables.php
3.98
KB
-rw-r--r--
2023-07-25 23:21
error_log
13.27
KB
-rw-r--r--
2026-02-17 07:18
filesystems.php
2.39
KB
-rw-r--r--
2023-07-25 23:21
google2fa.php
1.79
KB
-rw-r--r--
2023-07-25 23:21
hashing.php
1.59
KB
-rw-r--r--
2023-07-25 23:21
laraupdater.php
989
B
-rw-r--r--
2023-07-25 23:21
laravel_ticket.php
2.48
KB
-rw-r--r--
2023-07-25 23:21
logging.php
3.78
KB
-rw-r--r--
2023-07-25 23:21
mail.php
3.63
KB
-rw-r--r--
2023-07-25 23:21
notify.php
1.86
KB
-rw-r--r--
2023-07-25 23:21
paypal.php
1.11
KB
-rw-r--r--
2023-07-25 23:21
paystack.php
725
B
-rw-r--r--
2023-07-25 23:21
perfectmoney.php
5.35
KB
-rw-r--r--
2023-07-25 23:21
permission.php
5.61
KB
-rw-r--r--
2023-07-25 23:21
purifier.php
4.72
KB
-rw-r--r--
2023-07-25 23:21
queue.php
2.93
KB
-rw-r--r--
2023-07-25 23:21
sanctum.php
2.31
KB
-rw-r--r--
2023-07-25 23:21
scout.php
4.91
KB
-rw-r--r--
2023-07-25 23:21
services.php
1012
B
-rw-r--r--
2023-07-25 23:21
session.php
7.05
KB
-rw-r--r--
2023-07-25 23:21
setting.php
25.39
KB
-rw-r--r--
2023-07-25 23:21
sms.php
380
B
-rw-r--r--
2023-07-25 23:21
theme.php
51
B
-rw-r--r--
2023-07-25 13:22
translation.php
2.31
KB
-rw-r--r--
2023-07-25 23:21
view.php
1.06
KB
-rw-r--r--
2023-07-25 23:21
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php /** * Ok, glad you are here * first we get a config instance, and set the settings * $config = HTMLPurifier_Config::createDefault(); * $config->set('Core.Encoding', $this->config->get('purifier.encoding')); * $config->set('Cache.SerializerPath', $this->config->get('purifier.cachePath')); * if ( ! $this->config->get('purifier.finalize')) { * $config->autoFinalize = false; * } * $config->loadArray($this->getConfig()); * * You must NOT delete the default settings * anything in settings should be compacted with params that needed to instance HTMLPurifier_Config. * * @link http://htmlpurifier.org/live/configdoc/plain.html */ return [ 'encoding' => 'UTF-8', 'finalize' => true, 'ignoreNonStrings' => false, 'cachePath' => storage_path('app/purifier'), 'cacheFileMode' => 0755, 'settings' => [ 'default' => [ 'HTML.Doctype' => 'HTML 4.01 Transitional', 'HTML.Allowed' => 'h1 , h2 , h3 , h4 , h5 , h6 ,div,b,strong,i,em,u,a[href|title],ul,ol,li,p[style],br,span[style],img[style|class|width|height|alt|src]', 'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align,float,width', 'CSS.MaxImgLength' => null, 'AutoFormat.AutoParagraph' => true, 'AutoFormat.RemoveEmpty' => true, 'URI.AllowedSchemes' => [ 'data' => true, 'http' => true, 'https' => true, ], ], 'test' => [ 'Attr.EnableID' => 'true', ], 'youtube' => [ 'HTML.SafeIframe' => 'true', 'URI.SafeIframeRegexp' => '%^(http://|https://|//)(www.youtube.com/embed/|player.vimeo.com/video/)%', ], 'custom_definition' => [ 'id' => 'html5-definitions', 'rev' => 1, 'debug' => false, 'elements' => [ // http://developers.whatwg.org/sections.html ['section', 'Block', 'Flow', 'Common'], ['nav', 'Block', 'Flow', 'Common'], ['article', 'Block', 'Flow', 'Common'], ['aside', 'Block', 'Flow', 'Common'], ['header', 'Block', 'Flow', 'Common'], ['footer', 'Block', 'Flow', 'Common'], // Content model actually excludes several tags, not modelled here ['address', 'Block', 'Flow', 'Common'], ['hgroup', 'Block', 'Required: h1 | h2 | h3 | h4 | h5 | h6', 'Common'], // http://developers.whatwg.org/grouping-content.html ['figure', 'Block', 'Optional: (figcaption, Flow) | (Flow, figcaption) | Flow', 'Common'], ['figcaption', 'Inline', 'Flow', 'Common'], // http://developers.whatwg.org/the-video-element.html#the-video-element ['video', 'Block', 'Optional: (source, Flow) | (Flow, source) | Flow', 'Common', [ 'src' => 'URI', 'type' => 'Text', 'width' => 'Length', 'height' => 'Length', 'poster' => 'URI', 'preload' => 'Enum#auto,metadata,none', 'controls' => 'Bool', ]], ['source', 'Block', 'Flow', 'Common', [ 'src' => 'URI', 'type' => 'Text', ]], // http://developers.whatwg.org/text-level-semantics.html ['s', 'Inline', 'Inline', 'Common'], ['var', 'Inline', 'Inline', 'Common'], ['sub', 'Inline', 'Inline', 'Common'], ['sup', 'Inline', 'Inline', 'Common'], ['mark', 'Inline', 'Inline', 'Common'], ['wbr', 'Inline', 'Empty', 'Core'], // http://developers.whatwg.org/edits.html ['ins', 'Block', 'Flow', 'Common', ['cite' => 'URI', 'datetime' => 'CDATA']], ['del', 'Block', 'Flow', 'Common', ['cite' => 'URI', 'datetime' => 'CDATA']], ], 'attributes' => [ ['iframe', 'allowfullscreen', 'Bool'], ['table', 'height', 'Text'], ['td', 'border', 'Text'], ['th', 'border', 'Text'], ['tr', 'width', 'Text'], ['tr', 'height', 'Text'], ['tr', 'border', 'Text'], ], ], 'custom_attributes' => [ ['a', 'target', 'Enum#_blank,_self,_target,_top'], ], 'custom_elements' => [ ['u', 'Inline', 'Inline', 'Common'], ], ], ];