Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3308dcb
docs: add FiveM attack surface post — server events, NUI, and supply …
Pyth3rEx Mar 24, 2026
80d111f
style: justify text in post content and card excerpts
Pyth3rEx Mar 24, 2026
c9ac420
feat: add copy button to code blocks
Pyth3rEx Mar 24, 2026
fda48e6
docs: rework section 1 intro and add client-side event snippet
Pyth3rEx Mar 24, 2026
1db5380
fix: align Back button with prev/next in post nav row
Pyth3rEx Mar 24, 2026
fb1f8d6
fix: clean up post nav — Back left, prev/next right separated by pipe
Pyth3rEx Mar 24, 2026
51965ac
docs: section 1 complete — case study, remediation, footnotes
Pyth3rEx Mar 24, 2026
ddd2de8
docs: draft section 1 and SaaH of FiveM attack surface post
Pyth3rEx Mar 24, 2026
07c35c3
feat: add opt-in table of contents for posts
Pyth3rEx Mar 24, 2026
95cfb11
docs: add toc front matter flag to posts and README template
Pyth3rEx Mar 24, 2026
b415d40
feat: add GFM checkbox support and task list styles
Pyth3rEx Mar 24, 2026
bcbe803
docs: add section 4, expand checklist, and refine closing
Pyth3rEx Mar 24, 2026
2897100
docs: refine closing and add part 2 hook
Pyth3rEx Mar 24, 2026
ebd443c
feat: fixed TOC sidebar with active tracking and back-to-top button
Pyth3rEx Mar 24, 2026
875c70a
style: fix markdown line length violations in fivem post
Pyth3rEx Mar 24, 2026
2123c23
style: fix all markdownlint and stylelint violations
Pyth3rEx Mar 24, 2026
026aa50
fix: replace CSS4 rgb() notation with rgba() for SCSS compiler compat
Pyth3rEx Mar 24, 2026
642ca01
docs: write section 2 — NUI/web layer full escalation chain
Pyth3rEx Mar 24, 2026
678ee42
Merge pull request #4 from Pyth3rEx/post/fivem-series
Pyth3rEx Mar 24, 2026
e048a4d
fix: replace modern CSS syntax incompatible with sass-3.7.4
Pyth3rEx Mar 24, 2026
5d7476e
ci: use ruby/setup-ruby in deploy workflow instead of jekyll-build-pages
Pyth3rEx Mar 24, 2026
1eebb79
Merge pull request #5 from Pyth3rEx/fix/sass-compat-github-pages
Pyth3rEx Mar 24, 2026
dd631be
Merge branch 'main' into post/fivem-attack-surface
Pyth3rEx Mar 24, 2026
252ea41
Merge branch 'main' into post/fivem-attack-surface
Pyth3rEx Mar 24, 2026
e3c1dee
Merge pull request #6 from Pyth3rEx/fix/scss-rgb-syntax
Pyth3rEx Mar 25, 2026
627f702
chore: remove old fivem-attack-surface post (renamed to fivem-server-…
Pyth3rEx Mar 25, 2026
2141a9f
fix: restore correct post nav button order (previous ← left, next → r…
Pyth3rEx Mar 25, 2026
4786daf
docs: develop Part 2 — cleanup pass, SaaH fixes section, end state, c…
Pyth3rEx Mar 25, 2026
dc40737
style: add missing trailing newline to Part 2 post
Pyth3rEx Mar 25, 2026
d953482
Merge branch 'main' into post/fivem-attack-surface
Pyth3rEx Mar 25, 2026
4759b02
docs: rename Part 2 post to 2026-03-26 (publication date)
Pyth3rEx Mar 26, 2026
4ca97ba
Merge remote-tracking branch 'origin/main' into post/fivem-attack-sur…
Pyth3rEx Mar 26, 2026
dacfbb7
docs: capitalise step headings and extend blind XSS note
Pyth3rEx Mar 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ <h1 class="post-title">{{ page.title }}</h1>
<nav class="post-nav">
<a class="post-back" href="{{ '/blog' | relative_url }}">&larr; Back</a>
<div class="post-nav-siblings">
{% if page.next.url %}
<a class="prev" href="{{ page.next.url | relative_url }}">&larr; {{ page.next.title }}</a>
{% if page.previous.url %}
<a class="prev" href="{{ page.previous.url | relative_url }}">&larr; {{ page.previous.title }}</a>
{% endif %}
{% if page.previous.url and page.next.url %}
<span class="nav-sep">|</span>
{% endif %}
{% if page.previous.url %}
<a class="next" href="{{ page.previous.url | relative_url }}">{{ page.previous.title }} &rarr;</a>
{% if page.next.url %}
<a class="next" href="{{ page.next.url | relative_url }}">{{ page.next.title }} &rarr;</a>
{% endif %}
</div>
</nav>
Expand Down
Loading
Loading