> For the complete documentation index, see [llms.txt](https://guide.offsecnewbie.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.offsecnewbie.com/pcap-analysis/useful-commands-to-find-things-in-pcaps.md).

# Pcap analysis

## Wordpress Login

This will search for the wp-login url in the file and pull out the pwd in the url if it is sent over HTTP rather than HTTPS

```
strings file.pcapng | grep wp-admin | grep pwd
```
