python3爆破服务器_dirsearch「建议收藏」

python3爆破服务器_dirsearch「建议收藏」dirsearchCurrentRelease:v0.3.9(2019.11.26)Overviewdirsearchisasimplecommandlinetooldesignedtobruteforcedirectoriesandfilesinwebsites.Installation&Usagegitclonehttps://github….

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

dirsearch

Current Release: v0.3.9 (2019.11.26)

Overview

dirsearch is a simple command line tool designed to brute force directories and files in websites.

Installation & Usage

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

cd dirsearch

python3 dirsearch.py -u -e

you can also use this alias to send directly to proxy

python3 /path/to/dirsearch/dirsearch.py –http-proxy=localhost:8080

Options

Options:

-h, –help show this help message and exit

Mandatory:

-u URL, –url=URL URL target

-L URLLIST, –url-list=URLLIST

URL list target

-e EXTENSIONS, –extensions=EXTENSIONS

Extension list separated by comma (Example: php,asp)

-E, –extensions-list

Use predefined list of common extensions

Dictionary Settings:

-w WORDLIST, –wordlist=WORDLIST

-l, –lowercase

-f, –force-extensions

Force extensions for every wordlist entry (like in

DirBuster)

General Settings:

-s DELAY, –delay=DELAY

Delay between requests (float number)

-r, –recursive Bruteforce recursively

-R RECURSIVE_LEVEL_MAX, –recursive-level-max=RECURSIVE_LEVEL_MAX

Max recursion level (subdirs) (Default: 1 [only

rootdir + 1 dir])

–suppress-empty, –suppress-empty

–scan-subdir=SCANSUBDIRS, –scan-subdirs=SCANSUBDIRS

Scan subdirectories of the given -u|–url (separated

by comma)

–exclude-subdir=EXCLUDESUBDIRS, –exclude-subdirs=EXCLUDESUBDIRS

Exclude the following subdirectories during recursive

scan (separated by comma)

-t THREADSCOUNT, –threads=THREADSCOUNT

Number of Threads

-x EXCLUDESTATUSCODES, –exclude-status=EXCLUDESTATUSCODES

Exclude status code, separated by comma (example: 301,

500)

–exclude-texts=EXCLUDETEXTS

Exclude responses by texts, separated by comma

(example: “Not found”, “Error”)

–exclude-regexps=EXCLUDEREGEXPS

Exclude responses by regexps, separated by comma

(example: “Not foun[a-z]{1}”, “^Error$”)

-c COOKIE, –cookie=COOKIE

–ua=USERAGENT, –user-agent=USERAGENT

-F, –follow-redirects

-H HEADERS, –header=HEADERS

Headers to add (example: –header “Referer:

example.com” –header “User-Agent: IE”

–random-agents, –random-user-agents

Connection Settings:

–timeout=TIMEOUT Connection timeout

–ip=IP Resolve name to IP address

–proxy=HTTPPROXY, –http-proxy=HTTPPROXY

Http Proxy (example: localhost:8080

–http-method=HTTPMETHOD

Method to use, default: GET, possible also: HEAD;POST

–max-retries=MAXRETRIES

-b, –request-by-hostname

By default dirsearch will request by IP for speed.

This forces requests by hostname

Reports:

–simple-report=SIMPLEOUTPUTFILE

Only found paths

–plain-text-report=PLAINTEXTOUTPUTFILE

Found paths with status codes

–json-report=JSONOUTPUTFILE

Operating Systems supported

Windows XP/7/8/10

GNU/Linux

MacOSX

Features

Multithreaded

Keep alive connections

Support for multiple extensions (-e|–extensions asp,php)

Reporting (plain text, JSON)

Heuristically detects invalid web pages

Recursive brute forcing

HTTP proxy support

User agent randomization

Batch processing

Request delaying

About wordlists

Dictionaries must be text files. Each line will be processed as such, except that the special word %EXT% is used, which will generate one entry for each extension (-e | –extension) passed as an argument.

Example:

example/

example.%EXT%

Passing the extensions “asp” and “aspx” will generate the following dictionary:

example/

example.asp

example.aspx

You can also use -f | –force-extensions switch to append extensions to every word in the wordlists (like DirBuster).

Support Docker

Install Docker Linux

Install Docker

curl -fsSL https://get.docker.com | bash

To use docker you need superuser power

Build Image dirsearch

To create image

docker build -t “dirsearch:v0.3.8” .

dirsearch this is name the image and v0.3.8 is version

Using dirsearch

For using

docker run -it –rm “dirsearch:v0.3.8” -u target -e php,html,png,js,jpg

target is the site or IP

License

Copyright (C) Mauro Soria (maurosoria at gmail dot com)

License: GNU General Public License, version 2

Contributors

Special thanks for these people.

mzfr

Damian89

Bo0oM

liamosaur

redshark1802

SUHAR1K

FireFart

k2l8m11n2

vlohacks

r0p0s3c

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/185328.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 5G NR SSB概述[通俗易懂]

    5G NR SSB概述[通俗易懂]       SSB(SynchronizationSignal/PBCH,同步广播块)是5G中使用的最重要的导频信道之一,其作用关系到UE接入小区的很多方面,如小区搜索、波束测量、波束选择、波束恢复等。1、SSB时频域结构       在5G中,SSB包括同步信号和广播信号,具体同步信号包括PSS(PrimarySynchronizationSignal,

    2022年6月29日
    159
  • python 函数def

    python 函数def一、不同层级的调用importcountcount.add(2,3)print(count.add(2,3))在不同层级引用函数,不能直接引用,否则会报错:importcountModul

    2022年7月5日
    23
  • java中的next()方法,nextline()方法,hasnext()方法的用法系列(1)。

    java中的next()方法,nextline()方法,hasnext()方法的用法系列(1)。这是王秀秀的第23篇博客????看下方目录next()方法nextline()方法hasnext()方法最近本菜鸡做题呀,遇到了一些很好玩的事情,那就是scanner类中的一些方法,经过了解后,真挺好玩的。next()方法话不多说上代码importjava.util.Scanner;publicclassnext_and_nextline{ publicstaticvoid…

    2022年5月25日
    43
  • 家庭服务器配置(云服务器解决方案)

    家庭服务器解决方案——硬件篇2021-07-1622:41:5829点赞193收藏36评论关于服务器我一直有个设想:未来每个人都有一个专属服务器。这个服务器是每个人在互联网的数据中枢。这个服务器:安全,只有所有者拥有管理权限;强大,可以存储数据并保护隐私。当人离开世界时,可以选择把一些数据留给家人,也可以选择把自己在互联网的记忆全部抹去……当然现在并没有我设想的那种服务器,所以不如聊聊更实际的家…

    2022年4月10日
    226
  • c++ 颜色_color rgb

    c++ 颜色_color rgb1.OdCmColor转COLORREFOdCmColorodaColor;COLORREFrefColor=RGB(odaColor.red(),odaColor.green(),odaColor.blue());2. COLORREF转OdCmColorCOLORREFrefColorOdCmColorodaColor;odaColor.setRGB(GetR…

    2025年7月9日
    1
  • web 打印控件_JS插件

    web 打印控件_JS插件 平常浏览网页和文档的时候,随处可见打印两个字,有时候不小心点到,就会弹出一个打印的页面,如果连接了打印机,可以直接调用到打印机进行真实的打印。做为开发人员我们在网页开发过程中经常会有打印页面的需求,目前我正在做浏览器端采用JS方式实现打印这么一个功能,通过JS来实现的方法有很多,这里我分享一下我自已采用的方法,供大家参考。为了节约开发时间,我采用的是第三方打印软件“老牌打印控件WebPrinter”。新版现在已更名为“智睦云打印”,在原来的基础上增加了云打印机的支持,“智睦云打印”可以应用在本..

    2025年7月1日
    0

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号