## CeWL
[[Custom Dictionary Generation|Custom wordlist generator]] scrapes & compiles keywords from websites.
https://digi.ninja/projects/cewl.php
Example scan depth of 2 and minimum word length of 5 output to wordlist.txt.
```bash
cewl -d 2 -m 5 -w wordlist.txt http://<target website>
```
## SMEEGESCRAPE
Text file and website scraper which generates custom wordlists from content.
http://www.smeegesec.com/2014/01/smeegescrape-text-scraper-and-custom.html
Compile unique keywords from text file and output into wordlist.
``` bash
SmeegeScrape.py -f file.txt -o wordlist.txt
Scrape keywords from target website and output into wordlist.
SmeegeScrape.py -u http://<target website> -si -o wordlist.txt
```
[[Home]]
#tools
#methodology