GithubHelp home page GithubHelp logo

bruty's Introduction

Bruty

Actions Status

Bruteforce dynamic web applications with Selenium.

Installing

pip install bruty

It's assumed that you've got installed Chromium under /usr/bin/chromium and that the chromedriver of the same version is found in your PATH.

Usage

If you want to content from the https://fake.web website that is not found by crawlers, you can create a list of uris in a file such as:

admin
wp-login

Then run:

bruty https://fake.web -f uris.txt

If you don't want to wait until the command ends to see the results use the -v flag.

Fake 404 pages

Some sites return a 200 status code for the 404, if it's your case, inspect the code of one of them and create a regular expression to catch them, imagine it's 404 error.

To test that it works run bruty against two urls, one that exists and another that returns the fake 404, making sure that only the existent one is printed.

bruty https://fake.web -u index.html -u fake_404.html -n '404 error'

Once you know it works, run it against all the uris:

bruty https://fake.web -f uris.txt -n '404 error'

Untrusted return codes

Some websites use the 200 status code when they should use 404 or even 30X. Use the -i flag to ignore the checking of the status code. It should be used with the -n flag to tell the right urls from the wrong.

bruty https://fake.web -f uris.txt -i -n '404 error'

Parallelization

Bruty doesn't yet support parallelization, so you'll have to do it manually, split your uris file into the number of processes you want with split and launch a bruty process for each of them.

Contributing

For guidance on setting up a development environment, and how to make a contribution to bruty, see Contributing to bruty.

License

GPLv3

bruty's People

Contributors

lyz-code avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.