> For the complete documentation index, see [llms.txt](https://dmdhrumilmistry.gitbook.io/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dmdhrumilmistry.gitbook.io/home/blog/tryhackme-writeups/crack-the-hash.md).

# Crack The Hash

Crack the Hash Room covers cracking various types of hashes

## Tools

* [CrackStation](https://crackstation.net/)
* [CyberChef](https://gchq.github.io/CyberChef/)
* [Hashcat](https://hashcat.net/)
* hash-identifier

## PreCracking Steps

* Save all the hashes in separate files, for example: if hash is of level 1 and 1question 1 then save it in file named `L1-H1.txt`
* Download [rockyou.txt](https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt) wordlist
* Analyze Hash using [CyberChef](https://gchq.github.io/CyberChef/#recipe=Analyse_hash\(\))/[HashCat](https://hashcat.net/wiki/doku.php?id=example_hashes)/hash-identifier
* Find Mode from [HashCat](https://hashcat.net/wiki/doku.php?id=example_hashes) page
* Crack the hash using HashCat / CrackStation

  ```bash
  hashcat -m [hashcat_mode] [hash_file.txt] [rockyou_wordlist_path]
  ```

## Level 1

|                               Hash                               | Type | cracked     |
| :--------------------------------------------------------------: | :--: | ----------- |
|                 48bb6e862e54f2a795ffc4e541caed4d                 |   0  | easy        |
|             cbfdac6008f9cab4083784cbd1874f76618d2a97             |  100 | password123 |
| 1c8bfe8f801d79745c4631d09fff36c82aa37fc4cce4fc946683d7b336b63032 | 1400 | letmein     |
|   $2y$12$Dwt1BZj6pcyc3Dy1FWZ5ieeUznr71EeNkJkUlypTsgbX1H68wsRom   | 3200 | bleh        |
|                 279412f945939ba78ce0758d3fd83daa                 |  900 | Eternity22  |

## Level 2

|                                                    Hash                                                   |       Salt      | Type | cracked      |
| :-------------------------------------------------------------------------------------------------------: | :-------------: | :--: | ------------ |
|                      F09EDCB1FCEFC6DFB23DC3505A882655FF77375ED8AA2D1C13F640FCCC2D0C85                     |        -        | 1400 | paule        |
|                                      1DFECA0C002AE40B8619ECF94819CC1B                                     |        -        | 1000 | n63umy8lkf4i |
| $6$aReallyHardSalt$6WKUTqzq.UQQmrm0p/T7MPpMbGNnzXPMAXi4bJMl9be.cfi3/qxIf.hsGpS41BqMhSrHVXgMpdjS6xeKZAs02. | aReallyHardSalt | 1800 | waka99       |
|                                  e5d8870e5bdd26602cab8dbe07a942c8669e56d6                                 |    tryhackme    |  110 | 481616481616 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dmdhrumilmistry.gitbook.io/home/blog/tryhackme-writeups/crack-the-hash.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
