mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
added subbrute to brute-force DNS records
This commit is contained in:
parent
ca2c330dd0
commit
512ef2cd2f
2 changed files with 9 additions and 0 deletions
|
@ -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
8
subbrute/install
Executable 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 ..
|
Loading…
Reference in a new issue