禁用用户控制台php输出

时间:2015-11-14 07:17:28

标签: javascript php console console.log

我不想显示在用户控制台中显示的GET命令(php脚本执行)(附图像)。但不知道从哪里开始&要搜索什么。

enter image description here

任何帮助。

2 个答案:

答案 0 :(得分:0)

我认为你需要的是console.clear();

答案 1 :(得分:0)

我还没有通过测试,但看起来你的javascript正在卖给你。我发现这个网站似乎声称要抓住javascript控制台输出。

(function() {
    try {
        var $_console$$ = console;
        Object.defineProperty(window, "console", {
            get: function() {
                if ($_console$$._commandLineAPI)
                    throw "For Security Reasons - The script console is disabled for this site.";
                return $_console$$
            },
            set: function($val$$) {
                $_console$$ = $val$$
            }
        })
    } catch ($ignore$$) {
    }
})();

来源: https://davidwalsh.name/disable-console; http://pastebin.com/Lx5gjXsA