Math Test with KaTeX

This is a test post to verify that KaTeX is properly rendering mathematical formulas. Inline Math Here is an inline equation: \( E = mc^2 \) and another one using dollars: $ a^2 + b^2 = c^2 $. Block Math Here is a block equation using double dollars: $$ f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi $$And another one using brackets: \[ \mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \end{vmatrix} \]If these render beautifully, then KaTeX is fully integrated!

July 6, 2026 · 1 min

HTB - Monitorsfour Machine Writeup

Reconnaissance nmap First step as always… see what services are running on this IP… nmap 10.10.11.98 An nmap scan revealed WinRM and nginx running. The presence of WinRM hints that the host is likely using Windows Linux Subsystem for services. A wget request shows it redirects to monitorsfour.htb, and since this domain naturally won’t resolve via DNS, we need to add it to the system’s hosts file: echo "10.10.11.98 monitorsfour.htb" >> /etc/hosts Now we see a landing page with some about/login pages. ...

December 10, 2025 · 4 min