> For the complete documentation index, see [llms.txt](https://thamizhiniyancs.gitbook.io/writeups/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thamizhiniyancs.gitbook.io/writeups/ctf/2024/pearl-ctf/forensics/wifi-broken.md).

# Wifi Broken

## Challenge Description

I suspect my former friend is upto something wrong. I tried to access his network but for that, I need the password to his wifi. Enclose the password in pearl{} when you find it.

### Attachments

{% file src="/files/GVhuKjsA4sawdNDaZJqh" %}

***

## Solution

Basically, aircrack-ng takes each word and tests to see if this is in fact the pre-shared key.

So you can crack the wifi password using `aircrack-ng` using the following command:

`aircrack-ng -w /usr/share/wordlists/rockyou.txt findme.cap`

<figure><img src="https://2035863894-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FjvlUrxK6i7ZNmn3d6e8B%2Fuploads%2F8NxCxKn6qVjukG52tDt3%2Fimage.png?alt=media&amp;token=4dbc6c06-425c-4c2c-8239-b27b96cd2be5" alt=""><figcaption></figcaption></figure>

Flag: `pearl{shenoydx}`
