added subbrute to brute-force DNS records

This commit is contained in:
Yan 2015-10-27 16:00:09 -07:00
parent ca2c330dd0
commit 512ef2cd2f
2 changed files with 9 additions and 0 deletions

View file

@ -52,6 +52,7 @@ Installers for the following tools are included:
| web | [commix](https://github.com/stasinopoulos/commix) | Command injection and exploitation tool. | <!--tool-->
| web | [dirs3arch](https://github.com/maurosoria/dirs3arch) | Web path scanner. | <!--tool-->
| web | [sqlmap](http://sqlmap.org/) | SQL injection automation engine. | <!--tool-->
| web | [subbrute](https://github.com/TheRook/subbrute) | A DNS meta-query spider that enumerates DNS records, and subdomains. | <!--tool-->
| stego | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. | <!--tool-->
| stego | [stegdetect](http://www.outguess.org/) | Steganography detection/breaking tool. | <!--tool-->
| stego | [steganabara](http://www.caesum.com/handbook/stego.htm) | Antoher image steganography solver. | <!--tool-->

8
subbrute/install Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash -e
git clone https://github.com/TheRook/subbrute.git
mkdir -p bin
cd bin
ln -s ../subbrute/subbrute.py subbrute
cd ..