Dirsearch 快速开始

摘要:
Dirsearch是一种web路径扫描工具。本文版本:v0.4.1(2020.12.8)安装并下载源代码:gitclonehttps://github.com/maurosoria/dirsearch.git安装所需的python库:cddirsearchpip3install-rerequirements。txt或使用Dockergitclonehttps://github.com/maurosori
Dirsearch 一个 web 路径扫描工具

本文版本:v0.4.1(2020.12.8)


安装


下载源代码:

git clone https://github.com/maurosoria/dirsearch.git

安装需求的 python 库:

cd dirsearch
pip3 install -r requirements.txt

或者使用 Docker

git clone https://github.com/maurosoria/dirsearch.git
cd dirsearch

# 构建 dirsearch 镜像
docker build -t "dirsearch:v0.4.1"

# 快速使用
docker run -it --rm "dirsearch:v0.4.1" -u 目标地址 -e php,html,等等支持的扩展名

快速使用


  • 默认扫描「 默认使用 http 协议 」

    python3 dirsearch.py -u https://target
    
  • 扫描指定的后缀名类型

    python3 dirsearch.py -u https://target -e php,html,js
    
  • 扫描子目录

    python3 dirsearch.py -u http://target --subdirs admin/,asset/,/
    
  • 设置请求头的字段

    python3 dirsearch.py -u https://target -H "X-Forwarded-Host: 127.0.0.1"
    

其他使用方式见

免责声明:文章转载自《Dirsearch 快速开始》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇C#客户端(WinForm)开机自动启动实现阿里云产品之数据中台架构下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

Linux及ArmLinux程序开发笔记(零基础入门篇)

Linux及Arm-Linux程序开发笔记(零基础入门篇)  作者:一点一滴的Beerhttp://beer.cnblogs.com/ 本文地址:http://www.cnblogs.com/beer/archive/2011/05/05/2037449.html 目录 一、Arm-Linux程序开发平台简要介绍... 3 1.1程序开发所需系统及开发...

41.配置完善爬虫代码文件及图片下载文件重命名问题-2

解决图片下载重命名保存本地,直接上代码(在原来代码做了一定的修改)。总结:主要就是添加配置一个内置的函数,对保存的东西进行修改再存储,主要问题还是再piplines的设置里面。效果如图: hm5988.py #-*- coding: utf-8 -*- importscrapy from hm5988_web.items importHm5988We...

buildroot 制作Linux文件系统初级使用教程

buildroot 下载地址:https://buildroot.org/download.html 放在Linux文件下解压出来。 使用make menuconfig 进行配置相关的东西。 在使用这条命令之前,首先要安装相关的东西。 运行如下命令进行安装相关的库文件,我的是在Ubuntu14.04的环境下进行的。 sudo apt-get install...

node和npm的安装和镜像源的修改

在node官网下载https://nodejs.org/en/ 直接下载msi的文件,需要配置环境变量 我的电脑-->属性-->高级系统配置-->环境变量-->用户变量,在用户变量中配置 配置如下: -->新建 NODE_HOME X:Program Files odejs (注:node的目录) -->新建 NODE_...

TensorFlow安装-ubuntu

windows下某些tensorflow例子跑不成功,比如https://www.tensorflow.org/tutorials/wide 中的例子报下面的错误:‘ 'NoneType' object has no attribute 'bucketize' 因此决定在Linux环境上安装tf。 楼主用的linux系统为ubuntu-16.04.2-d...

nginx配置ssl证书实现https访问

一,环境说明 服务器系统:centos7.2 服务器IP地址:4xxxx 域名:bjubi.com 二,域名解析到服务器 在阿里云控制台-产品与服务-云解析DNS-找到需要解析的域名点“解析”,进入解析页面后选择【添加解析】按钮会弹出如下页面: 主机记录这里选择@,记录值就是服务器ip地址,确认。 三,申请ca证书 在阿里云控制台-产品与服务-安全(云盾...