Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
system /
sliders /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Clean.php
900
B
-rwxr-xr-x
2020-06-23 13:09
Document.php
2.35
KB
-rwxr-xr-x
2023-05-05 08:26
Helper.php
2.02
KB
-rwxr-xr-x
2020-06-23 13:09
Params.php
4.24
KB
-rwxr-xr-x
2023-05-05 08:26
Plugin.php
8.25
KB
-rwxr-xr-x
2020-06-23 13:09
Protect.php
1.59
KB
-rwxr-xr-x
2023-05-05 08:26
Replace.php
27.69
KB
-rwxr-xr-x
2023-05-05 08:26
Save
Rename
<?php /** * @package Sliders * @version 7.8.0 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2020 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Sliders; defined('_JEXEC') or die; use RegularLabs\Library\Protect as RL_Protect; class Clean { /** * Just in case you can't figure the method name out: this cleans the left-over junk */ public static function cleanLeftoverJunk(&$string) { $params = Params::get(); Protect::unprotectTags($string); RL_Protect::removeFromHtmlTagContent($string, Params::getTags(true)); RL_Protect::removeInlineComments($string, 'Sliders'); if ( ! $params->place_comments) { RL_Protect::removeCommentTags($string, 'Sliders'); } } }