> For the complete documentation index, see [llms.txt](https://paul-gleason.gitbook.io/sec-335-eth.-hacking-and-pen.-testing/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://paul-gleason.gitbook.io/sec-335-eth.-hacking-and-pen.-testing/tools-recon/cewl.md).

# CEWL

### Usage:

Template:

```
cewl http://<ip>/<location> -d <depth #> | grep <regex> > <file>
```

EX: looking at the page `http://10.0.5.21/bios/frodo` with a `depth of 1` so only that page is looked at and grepping for anything with a `capital letter` in it. Then outputting the the file `frodo.small.txt`

```bash
cewl http://10.0.5.21/bios/frodo -d 1 | grep '[A-Z]' > frodo.small.txt
```

### Flags:

* -d <#>   |   depth
