Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/R0X4R/scvault
Custom scripts for directory fuzzing, subdomain enumeration, and more.
https://github.com/R0X4R/scvault
automation bash-script bug-bounty bug-bounty-hunters bugbounty directory-busting ffuf fuzzing infosec interlace
Last synced: 3 months ago
JSON representation
Custom scripts for directory fuzzing, subdomain enumeration, and more.
- Host: GitHub
- URL: https://github.com/R0X4R/scvault
- Owner: R0X4R
- Created: 2021-05-27T10:14:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-26T10:06:30.000Z (about 3 years ago)
- Last Synced: 2024-06-07T00:31:29.821Z (5 months ago)
- Topics: automation, bash-script, bug-bounty, bug-bounty-hunters, bugbounty, directory-busting, ffuf, fuzzing, infosec, interlace
- Language: Shell
- Homepage:
- Size: 42 KB
- Stars: 43
- Watchers: 2
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-hacking-lists - R0X4R/scvault - Custom scripts for directory fuzzing, subdomain enumeration, and more. (Shell)
README
Custom scripts for directory fuzzing, subdomain enumeration and more.
---
**Installation** (make sure you have **go** installed)
```bash
$ sudo apt install -y jq golang-go
$ go get -u github.com/ffuf/ffuf
$ go get -u github.com/tomnomnom/anew
$ go install github.com/OJ/gobuster/v3@latest
$ wget https://github.com/OWASP/Amass/releases/download/v3.13.4/amass_linux_amd64.zip -O amass.zip && unzip amass.zip && mv amass_linux_amd64/amass /usr/bin/ && rm -rf amass_linux_amd64/
$ git clone https://github.com/R0X4R/scvault.git && chmod +x scvault/*.sh && mv scvault/*.sh /usr/bin/
```### Usage
Directory fuzzing:
```bash
$ subfinder -d target.tld -all -silent -threads 200 | httpx -silent -threads 200 | anew -q subdomains.txt
$ interlace -tL subdomains.txt -threads 10 -c "dirfuzz.sh _target_" --silent
```Subdomain bruteforce:
```bash
$ subenum.sh target.tld
```### Tools used
Interlace: Easily turn single threaded command line applications into a fast, multi-threaded application with CIDR and glob support.FFUF: Fuzz Faster U Fool is a great tool used for fuzzing. It has become really popular lately with bug bounty hunters. Ffuf is used for fuzzing Get and Post data but can also be used for finding hidden files, directories or subdomains.
jq: jq is like ``sed`` for **JSON data** - you can use it to slice and filter and map and transform structured data with the same ease that ``sed``, ``awk``, ``grep`` and friends let you play with text. jq is written in ``portable C``, and it has zero runtime dependencies. You can download a single binary, ``scp`` it to a far away machine of the same type, and expect it to work. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you'd expect.
Subfinder: Subfinder is a subdomain discovery tool that discovers valid subdomains for websites by using passive online sources. It has a simple modular architecture and is optimized for speed. subfinder is built for doing one thing only - passive subdomain enumeration, and it does that very well.
httpx: httpx is a fast and multi-purpose HTTP toolkit allow to run multiple probers using retryablehttp library, it is designed to maintain the result reliability with increased threads.
GoBuster: Gobuster is a scanner that looks for existing or hidden web objects. It works by launching a dictionary attack against a web server and analyzing the response.
Amass: The OWASP Amass Project performs network mapping of attack surfaces and external asset discovery using open source information gathering and active reconnaissance techniques.
**Thanks to all the authors of the tools used**