Sploitus

Exploit for Hacked-Machines

githubexploit Β· 2026-08-08

Exploit Code

README46 lines
## https://sploitus.com/exploit?id=95EBB043-2604-584B-B551-33213DEB7E14
# HTB Writeups

A collection of **Hack The Box** machines, solved and documented step by step:
enumeration, exploitation and privilege escalation β€” explaining the *why* behind
each step, not just the commands.

πŸ”— **[Read the writeups](https://re4per-hack.github.io/)**  

## Machines

Organized by difficulty and operating system:

```
Easy/
  Linux/     CCTV, Facts, Kobold, ...
  Windows/   Eighteen, Forest, MonitorsFour, Support, ...
Hard/
  Windows/   ...
```

Each writeup covers the full path through the machine, from the first scan to
root/administrator.

---

## How it's built

The site is published automatically with Jekyll on GitHub Pages. Writeups are
written in Obsidian (markdown), and a small script (`build.py`) adapts them to
Jekyll's format so there's no HTML to touch by hand.

To add a machine:

1. Write the writeup in Obsidian using `![[image.png]]` for screenshots.
2. Save it in its difficulty/OS folder (`Easy/Linux/`, etc.) and the images in `Images/`.
3. Convert and push:

   ```bash
   python3 build.py
   git add .
   git commit -m "feat: add  writeup"
   git push
   ```

GitHub Pages rebuilds the site automatically.