python写个御剑
前言:
今天师傅叫我,写个python版的御剑。然后我之前也写过
不过不怎么样,这次有新想法。
思路:
御剑:读取御剑配置文件里的所有路径,加上用户要扫描的url。进行批量检测,如果状态码为200并且无Error.ini里面的错误就存在该路径。报存在save.txt (详细看代码)
路径:
御剑代码:
import requests
import random
import os
file=[]
url=[]
error=[]
bc=[]
ip=[]
headers={}
user=input('Import TXT:')
banner='''
____ _
| _ \ ___ ___| |_ _ __ ___ _ _ ___ _ __
| | | |/ _ \/ __| __| '__/ _ \| | | |/ _ \ '__|
| |_| | __/\__ \ |_| | | (_) | |_| | __/ |
|____/ \___||___/\__|_| \___/ \__, |\___|_|
|___/ Producer:Nine world
'''
useragent=[]
twoo=[]
print(banner) def urls():
dk=open('{}'.format(user),'r')
for k in dk.readlines():
qcs="".join(k.split('\n'))
url.append(qcs)
print('[+]url.txt Load completion')
print(' ')
print(' ')
urls() def judge():
pd=os.listdir('御剑配置文件')
for name in pd:
file.append(name) for f in file:
print('[+]existence {}'.format(f)) print(' ')
print(' ') dk=open('user-agent.txt','r')
for d in dk.readlines():
qc="".join(d.split('\n'))
useragent.append(qc)
print('[+]user-agent Load completion')
print(' ')
print(' ')
judge() def errors():
lv=open('Error/error.txt','r')
for e in lv.readlines():
qcsw="".join(e.split('\n'))
error.append(qcsw)
print('[+]The filter file is loaded')
print(' ')
print(' ')
errors() def forge():
sj=[]
dkw=open('ip.txt','r')
for i in dkw.readlines():
k="".join(i.split('\n'))
ip.append(k) for g in range(0,len(useragent)):
u='User-Agent='
x='X-Forwarded-For='
c='Client-IP='
sj.append(u+useragent[g]+'&'+x+ip[g]+'&'+c+ip[g])
kc=list(set(sj))
su=random.choice(kc)
qc=str(su)
for v in qc.split('&'):
key,value=v.split('=',1)
headers[key]=value
forge() def exploit():
wi=os.listdir('御剑配置文件')
for w in wi:
dp=open('{}'.format('御剑配置文件/'+w),'r',encoding='gbk')
for s in dp.readlines():
we="".join(s.split('\n'))
for u in url:
up='{}'.format(u).rstrip('/')+we
try:
requet=requests.get(url=up,headers=headers,timeout=3,allow_redirects=False)
for e in error:
if requet.status_code==200 and not e in requet.text:
ok='[+]code:{} url:{}'.format(requet.status_code,requet.url)
if ok in twoo:continue
twoo.append(ok)
print(ok)
else:
no='[x]Not url :{}'.format(requet.url)
if no in bc:continue
bc.append(no)
print(no)
except Exception as u:
print('[-]Error {}'.format(u)) if len(twoo)>0:
od=open('save.txt','w')
od.close() xr=open('save.txt','r')
for c in twoo:
print(c,file=open('save.txt','a')) exploit()
测试效果:
Github下载地址:https://github.com/422926799/python/tree/master/%E5%BE%A1%E5%89%91
python写个御剑的更多相关文章
- Python写各大聊天系统的屏蔽脏话功能原理
Python写各大聊天系统的屏蔽脏话功能原理 突然想到一个视频里面弹幕被和谐的一满屏的*号觉得很有趣,然后就想用python来试试写写看,结果还真玩出了点效果,思路是首先你得有一个脏话存放的仓库好到时 ...
- python写红包的原理流程包含random,lambda其中的使用和见简单介绍
Python写红包的原理流程 首先来说说要用到的知识点,第一个要说的是扩展包random,random模块一般用来生成一个随机数 今天要用到ramdom中unifrom的方法用于生成一个指定范围的随机 ...
- Python写地铁的到站的原理简易版
Python地铁的到站流程及原理(个人理解) 今天坐地铁看着站牌就莫名的想如果用Python写其工作原理 是不是很简单就小试牛刀了下大佬们勿喷纯属小弟个人理解 首先来看看地铁上显示的站牌如下: 就想这 ...
- 用Python写一个简单的Web框架
一.概述 二.从demo_app开始 三.WSGI中的application 四.区分URL 五.重构 1.正则匹配URL 2.DRY 3.抽象出框架 六.参考 一.概述 在Python中,WSGI( ...
- 读书笔记汇总 --- 用Python写网络爬虫
本系列记录并分享:学习利用Python写网络爬虫的过程. 书目信息 Link 书名: 用Python写网络爬虫 作者: [澳]理查德 劳森(Richard Lawson) 原版名称: web scra ...
- Python写UTF8文件,UE、记事本打开依然乱码的问题
Python写UTF8文件,UE.记事本打开依然乱码的问题 Leave a reply 现象:使用codecs打开文件,写入UTF-8文本,正常无错误.用vim打开正常,但记事本.UE等打开乱码. 原 ...
- python 写的http后台弱口令爆破工具
今天来弄一个后台破解的Python小程序,哈哈,直接上代码吧,都有注释~~ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 ...
- 『安全工具』目录扫描 DirBuster AND 御剑
要想熟悉目标网站的体系架构,知道网站有哪些目录是必不可少的 向AWVS,Burp类大型扫描工具也可以进行目录扫描,不过个人感觉远没有专业扫描工具来的简单,实在 0x 01 DirBuster 简介:D ...
- python写xml文件
为了便于后续的读取处理,这里就将信息保存在xml文件中,想到得到的文件如下: 1 <?xml version="1.0" encoding="utf-8" ...
随机推荐
- win10系统把文件夹固定到任务栏
为某个文件夹创建快捷方式 右键该快捷方式,选择固定到开始屏幕 点击win图标进入开始屏幕,在屏幕的右侧有刚才固定的快捷方式 右键该快捷方式,选择固定到任务栏即可.
- 《DSP using MATLAB》 Problem 3.19
先求模拟信号经过采样后,对应的数字角频率: 明显看出,第3种采样出现假频了.DTFT是以2π为周期的,所以假频出现在10π-2kπ=0处. 代码: %% ----------------------- ...
- PostgREST docker-compose 试用
PostgREST 是一款很不错的直接将pg 数据库暴露为restapi ,使用了基于行级别安全访问控制, 比较全的restapi 查询以及集成了swagger openapi docker-comp ...
- EditPLus添加到右键图文教程
最近在研究asp听他们说EditPlus非常适合,于是下了一个,感觉还真不错,EditPlus就是一个文本编辑器,说得通俗点他和WINDOWS自带的记事本差不多,但是功能更强,一般应用于程序员编程,因 ...
- 【转】每天一个linux命令(22):find 命令的参数详解
原文网址:http://www.cnblogs.com/peida/archive/2012/11/16/2773289.html find一些常用参数的一些常用实例和一些具体用法和注意事项. 1.使 ...
- protobuf生成
1,文件路径匹配好在src/main/proto下面 https://blog.csdn.net/u010939285/article/details/78538927
- VS2015 C#项目工程配置emgucv依赖的方法
1.VS2015新建一个C# console工程 2.Tools->NuGet package management->manage NuGet package for solution- ...
- MySQL数据库函数
一:字符串函数: 1.concat(); concat(S1,S2,S3,......Sn); 把传入参数链接 成一个字符串; 2.insert(); insert(str,x,y,insert); ...
- python findall() re.S
官方文档:https://docs.python.org/3.6/library/re.html 教程:http://www.regexlab.com/zh/regref.htm re.findall ...
- 异步FIFO格雷码与空满
在传递读写时钟域的指针使用格雷码来传递,如何把二进制转换为格雷码,格雷码是如何判断读空写满呢? 二进制码转换成二进制格雷码,其法则是保留二进制码的最高位作为格雷码的最高位,而次高位格雷码为二进制码的高 ...