• xss


    <?php
    header("X-XSS-Protection: 0; mode=block");
    ?>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>XSS利用输出的环境来构造代码</title>
    </head>
    <body>
    <center>
        <h6>把我们输入的字符串 输出到input里的value属性里</h6>
        <form action="" method="get">
            <h6>请输入你想显现的字符串</h6>
            <input type="text" name="xss_input_value" value=""><br>
            <input type="submit">
    
    <!--        输入  1231"><script scr=1.js"></script>-->
        </form>
        <hr>
        <?php
        $xss = $_GET['xss_input_value'];
        if(isset($xss)){
            echo '<input type="text" value="'.$xss.'">';
        }else{
            echo '<input type="type" value="test" >';
        }
        ?>
    </center>
    </body>
    </html>
    

      

  • 相关阅读:
    [HAOI2008]糖果传递
    LGTB 与大数
    LGTB 与序列
    poj1160 Post Office
    组队
    [JLOI2015]装备购买
    三元组
    乘法表
    [BZOJ3730]震波
    [Luogu3345][ZJOI2015]幻想乡战略游戏
  • 原文地址:https://www.cnblogs.com/brady-wang/p/8012072.html
Copyright © 2020-2023  润新知