CCTV
CCTV — HackTheBox Writeup CCTV is an Easy Linux box that chains together several real-world security misconfigurations: default credentials in ZoneMinder, a forgotten default JWT secret enabling privilege escalation within the app, and an exposed motionEye instance running as root. What makes this box satisfying is that every step requires you to understand the application you’re attacking rather than just firing off a CVE exploit. Overview The target runs a public-facing ZoneMinder CCTV management interface. Default credentials get us in, but a default JWT signing secret lets us forge tokens for a higher-privileged user, unlocking filter-based command execution. From there, internal service enumeration reveals motionEye running as root on localhost, and its SHA-1 authentication scheme turns out to require no cracking at all — the stored hash is the credential. ...