php的借用其他网站的页面覆盖Logo的技巧

Posted 小苹果小可爱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php的借用其他网站的页面覆盖Logo的技巧相关的知识,希望对你有一定的参考价值。

php的借用其他网站的页面覆盖Logo的技巧,

<body>

<div id="red_f"></div>
<div class="layout" style="width: 320px">
    <div class="houserent">
        <div id="logo58">
            <img src="__IMG__/logo58.jpg"  />
        </div>
        <iframe id="page58" src="{$urlsy}" frameborder="0">
        </iframe>
    </div>
</div>
<script type="text/javascript" src="__JS__/jquery-1.7.2.js"></script>
<script type="text/javascript">
    $(function(){
        window.onload = function (){
            var hh = $(window).height();
            $(‘.houserent‘).find(‘iframe‘).css({
                ‘width‘: 320 + ‘px‘,
                ‘height‘: hh +‘px‘
            });
        }
    });
</script>
</body>

  可以看到我们是利用一个LOGO将原网站的LOGO进行覆盖,本来有一种想法是通过页面的js控制页面还是不行。因为别人网站是在一个分帧内,根据浏览器的显示协议,一个分帧相当于一个页面在外面的js是无法控制的,所以js是无法进入

 <iframe id="page58" src="{$urlsy}" frameborder="0">
        </iframe>里面去控制的,就是说滚动条都是别人的网站,所以无法检测。

以上是关于php的借用其他网站的页面覆盖Logo的技巧的主要内容,如果未能解决你的问题,请参考以下文章

php隐藏WEBSHELL技巧

Drupal标题徽标和网站名称片段页面.tpl.php

夺命雷公狗—玩转SEO---40---提升网站出图率的技巧

jQuery学习

挖洞姿势:特殊的上传技巧,绕过PHP图片转换实现远程代码执行(RCE)

php程序上传网站logo出现错误解决办法