Update README.md
Expanded description, to do list
This commit is contained in:
parent
2c50858893
commit
797bc869fb
1 changed files with 21 additions and 3 deletions
24
README.md
24
README.md
|
|
@ -2,14 +2,26 @@
|
||||||
|
|
||||||
This script installs / updates some of the important key tools for Pentesters and Bug Bounty Hunters. You probably
|
This script installs / updates some of the important key tools for Pentesters and Bug Bounty Hunters. You probably
|
||||||
have most of these tools installed already (as it was designed for use with Kali/Debian/Ubuntu), but it is useful for
|
have most of these tools installed already (as it was designed for use with Kali/Debian/Ubuntu), but it is useful for
|
||||||
me to have it all together in one script so I don't have to take the time to search for everything when I start a
|
me to have it all together in one script so I don't have to take the time to search for everything when I make a
|
||||||
new VM or worry about installing everything manually.
|
new VM or have to go through and install everything manually.
|
||||||
|
|
||||||
|
This is a rough version as it is my first attempt at building some sort of a recon framework (if you can call
|
||||||
|
it that) for CTFs as well as Bug Bounties. There will be an accompanying automation script as well.
|
||||||
|
|
||||||
**This installs a good amount of tools, if you are looking for something light, you may want to remove what you do not want or need before running the script.**
|
**This installs a good amount of tools, if you are looking for something light, you may want to remove what you do not want or need before running the script.**
|
||||||
|
*It is also a good idea to read through unfamiliar code before executing it anyway*
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Simply download the script and run it or:
|
Simply download the script and run it:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wget https://raw.githubusercontent.com/rpriven/toolbelt/main/toolbelt.sh
|
||||||
|
chmod +x toolbelt.sh
|
||||||
|
sudo ./toolbelt.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Easier:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl https://raw.githubusercontent.com/rpriven/toolbelt/main/toolbelt.sh | sudo sh
|
curl https://raw.githubusercontent.com/rpriven/toolbelt/main/toolbelt.sh | sudo sh
|
||||||
|
|
@ -52,9 +64,15 @@ curl https://raw.githubusercontent.com/rpriven/toolbelt/main/toolbelt.sh | sudo
|
||||||
|
|
||||||
### Add basic syntax to tools
|
### Add basic syntax to tools
|
||||||
|
|
||||||
|
### Add checks for the Go programs if they are the @latest version so it doesn't re-download them every time
|
||||||
|
the script is run, only when it is either not found or not up to date
|
||||||
|
|
||||||
### Add to the toolbelt:
|
### Add to the toolbelt:
|
||||||
|
|
||||||
- dnmasscan
|
- dnmasscan
|
||||||
- interlace
|
- interlace
|
||||||
- static-flow
|
- static-flow
|
||||||
- sn1per
|
- sn1per
|
||||||
|
- more...
|
||||||
|
|
||||||
|
### Add colors
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue