Myles Nieman
← Blog

Hello, World

Welcome. This is where I’ll post red team write-ups, tooling notes, and the occasional deep dive into something I broke (on purpose).

This first post exists mostly to exercise the styling — here’s how the common Markdown elements render.

A section heading

Body copy is set in Roboto to stay readable in long form, while headings and code lean on the monospace face to keep the terminal flavor.

A smaller heading

  • Bulleted lists look like this
  • With a second item
  • And a third
  1. Ordered lists work too
  2. Second step
  3. Third step

Blockquotes are useful for callouts, findings, or the one line from a report that everyone actually remembers.

Inline code such as whoami /priv sits in a subtle pill. Longer snippets get a fenced block with syntax highlighting:

# enumerate SeImpersonate on a shell
whoami /priv | findstr /i "SeImpersonate"
def is_vuln(priv_list):
    return "SeImpersonatePrivilege" in priv_list

Links look like this, and that’s the whole tour. More soon.