当前位置: 首页 > 工具软件 > gobuster > 使用案例 >

Dirsearch and Gobuster

冷夜洛
2023-12-01

什么是Dirsearch?

Dirsearch是python开发的目录扫描工具。

使用方法

  1. -u 链接 (url)
  2. -e 网站语言 .php
  3. -w 指定字典
cd dirsearch/
python3 dirsearch.py -u "http://localhost/" -e *

扫描网站需要指定网站的类型,*为全部的类型

什么是Gobuster?

基于python3的命令行,用于扫描网页中的目录和文件。

gobuster dir -u https://www.liyunbo.cn -t 20 -w /usr/director/directory-list-2.3-big.txt -s 200 -x php,html

使用方法

  1. -u 链接url
  2. -t 线程 默认为10
  3. -w 字典
  4. -s 状态码
  5. -x 语言
  6. -m 使用哪种模式 dns或dir 默认dir
  7. -v 详细输出
  8. -i 显示结果所有的ip地址
  9. -c cookie
  10. -s 状态码 200,302,303
 类似资料:

相关阅读

相关文章

相关问答