This repository is a collection of knowledge about cyber threat intelligence, ethical hacking, digital forensics and malware analysis, that can be applied in practical scenarios. It is designed for analysts, researchers, and security professionals, it aims to support real-world investigations, incident response, and strategic decision-making by offering a quick, structured, and continuously updated resource.
The project uses MkDocs with the Material theme.
First, you must ensure that you have pythoninstalled with one of these commands:
# Linux/macOS
which python
# Windows (Command Prompt)
where pythonAnd also check that pip is installed:
pip --versionIt is recommended to setup Python virtual environment to avoid conflicts with system packages:
python -m venv venvAnd then, you can use one of the following commands to activate the virtual environment:
# Linux/macOS
source venv/bin/activate
# Windows (Command Prompt)
.\venv\Scripts\activateNow, we can simply install MkDocs Material:
pip install mkdocs-materialFor running the project locally, use this command:
mkdocs serveAfter that, the website will be available at http://127.0.0.1:8000 by default.