> For the complete documentation index, see [llms.txt](https://hunter2.gitbook.io/darthsidious/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hunter2.gitbook.io/darthsidious/building-a-lab/preparing-kali.md).

# Preparing Kali

You need some tools for this guide. Get ready! Make a directory to put all this in, because it can get messy. I won't explain all the tools and how to install them, because the different tools and procedures might change.

* [Impacket](https://github.com/CoreSecurity/impacket) - A python collection for networking. Includes ntlmrelay, which will be useful later.
* [Responder](https://github.com/lgandx/Responder) - Tool for poisoning requests. Use this forked repo rather than SpiderLabs' repo, because it is no longer maintained.
* [Empire](https://github.com/EmpireProject/Empire) - A framework almost like Metasploit, but for Windows hacking.
* [CrackMapExec](https://github.com/byt3bl33d3r/CrackMapExec) - Includes tools to check for SMB signing.
* [DeathStar](https://github.com/byt3bl33d3r/DeathStar) - A for automating the process of becoming Domain Admin.
* [BloodHound](https://github.com/BloodHoundAD/BloodHound) - Creating a map of AD. Check /releases on the GitHub page for precompiled binaries!
* [PowerSploit](https://github.com/PowerShellMafia/PowerSploit) - Powershell tools for post exploitation, some are included in Empire already.
* [Mimikatz](https://github.com/gentilkiwi/mimikatz) - Dumping credentials.
* [Neo4j](https://neo4j.com/download/) - Database to use with BloodHound.

Most of these should be available through apt. If not, install them by cloning in git and putting them in /opt. Now you may need to play a litte with installing the tools and their dependencies. A lot of them are written in Python, so familiarize yourself with pip. Make sure you are running tools and scripts with the correct Python version. Certain tools are written for 2.7 and some for 3. How to use the tools are explained in subsequent parts of this tutorial.


---

# 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, and the optional `goal` query parameter:

```
GET https://hunter2.gitbook.io/darthsidious/building-a-lab/preparing-kali.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
