douzhang3898 2016-02-05 07:45
浏览 726
已采纳

如何阻止用户从浏览器控制台更改脚本[关闭]

Hi i want to stop user changing my scripts from console of browser.

For example: In html,if i have div like below

<div id="demo">
Hi..
</div>

and jQuery

$('#demo').hide();

But still user can do inspect element of this page and they change script or coding from console and they can view the div which has ID demo.So please tell me how to stop user changing my code or even though if they change it should not show the div.

  • 写回答

3条回答 默认 最新

  • doutang7383 2016-02-05 07:54
    关注

    Here you could read an article with some useful words: How to hide a JS Code

    Also, you could use an obfuscation

    You just need to realise that you can't hide a JS code from user, because browser should download it and execute. If you want to encrypt it you should send a pass to browser which user'll get too.

    Just imagine: I'm telling you 1 and you should tell me the same. What would you tell me if I'd told you 2 ?

    And ... here it is ... problem of all programmers. All programmers want hide their own code : ). Just ... believe me. It is.

    One more suggestion is just to try this: Online Obfuscator

    If you want to do this with a PHP code, try this:

    // action.php
    <?php 
    
    if ( !isset($_POST['show']) ) {
        die('HACKER !');
    } else {
        echo '
        <html>
        <head>
        <title>Main Page</title>
        <body>
        <div id="demo">DEMO</div>
        <br>
        <form action="action.php">
        <input name="show" style="display: none;">
        <input type="submit" value="Try me !"/>
        </form>
        </body>
        </html>';
    }
    ?>
    

    These files should be in same folder.

    // index.html
    <html>
    <head>
    <title>Main Page</title>
    </head>
    <body>
    <form action="action.php">
    <input name="show" style="display: none;">
    <input type="submit" value="Try me !"/>
    </form>
    </body>
    </html>
    

    Good luck : )

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大