<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://enumbyte.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://enumbyte.com/" rel="alternate" type="text/html" /><updated>2026-09-24T08:41:37+00:00</updated><id>https://enumbyte.com/feed.xml</id><title type="html">EnumByte</title><subtitle>AI Security · Cloud Security · Security Engineering</subtitle><author><name>Dan Cohen Vaxman</name></author><entry><title type="html">Test Post: Article Rendering</title><link href="https://enumbyte.com/2026/09/16/test-post/" rel="alternate" type="text/html" title="Test Post: Article Rendering" /><published>2026-09-16T00:00:00+00:00</published><updated>2026-09-16T00:00:00+00:00</updated><id>https://enumbyte.com/2026/09/16/test-post</id><content type="html" xml:base="https://enumbyte.com/2026/09/16/test-post/"><![CDATA[<p>This is a mock article used to verify that all rendering components work correctly before publishing real content.</p>

<h2 id="introduction">Introduction</h2>

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. This paragraph tests basic body text rendering, line height, and max-width behavior.</p>

<p>A second paragraph with a <a href="#">hyperlink example</a> and <strong>bold text</strong>, <em>italic text</em>, and <code class="language-plaintext highlighter-rouge">inline code</code> to verify inline formatting.</p>

<h2 id="code-blocks">Code Blocks</h2>

<p>Python example:</p>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">def</span> <span class="nf">detect_injection</span><span class="p">(</span><span class="n">prompt</span><span class="p">:</span> <span class="nb">str</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="nb">bool</span><span class="p">:</span>
    <span class="n">suspicious_patterns</span> <span class="o">=</span> <span class="p">[</span>
        <span class="sh">"</span><span class="s">ignore previous instructions</span><span class="sh">"</span><span class="p">,</span>
        <span class="sh">"</span><span class="s">disregard your system prompt</span><span class="sh">"</span><span class="p">,</span>
        <span class="sh">"</span><span class="s">you are now</span><span class="sh">"</span><span class="p">,</span>
    <span class="p">]</span>
    <span class="k">return</span> <span class="nf">any</span><span class="p">(</span><span class="n">p</span> <span class="ow">in</span> <span class="n">prompt</span><span class="p">.</span><span class="nf">lower</span><span class="p">()</span> <span class="k">for</span> <span class="n">p</span> <span class="ow">in</span> <span class="n">suspicious_patterns</span><span class="p">)</span>
</code></pre></div></div>

<p>Bash example:</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># Check IAM bindings on a GCP project</span>
gcloud projects get-iam-policy my-project <span class="se">\</span>
  <span class="nt">--flatten</span><span class="o">=</span><span class="s2">"bindings[].members"</span> <span class="se">\</span>
  <span class="nt">--format</span><span class="o">=</span><span class="s2">"table(bindings.role, bindings.members)"</span>
</code></pre></div></div>

<p>YAML example:</p>

<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">name</span><span class="pi">:</span> <span class="s">Deploy</span>
<span class="na">on</span><span class="pi">:</span>
  <span class="na">push</span><span class="pi">:</span>
    <span class="na">branches</span><span class="pi">:</span> <span class="pi">[</span><span class="nv">main</span><span class="pi">]</span>
<span class="na">jobs</span><span class="pi">:</span>
  <span class="na">build</span><span class="pi">:</span>
    <span class="na">runs-on</span><span class="pi">:</span> <span class="s">ubuntu-latest</span>
    <span class="na">steps</span><span class="pi">:</span>
      <span class="pi">-</span> <span class="na">uses</span><span class="pi">:</span> <span class="s">actions/checkout@v4</span>
      <span class="pi">-</span> <span class="na">run</span><span class="pi">:</span> <span class="s">bundle exec jekyll build</span>
</code></pre></div></div>

<h2 id="a-subheading">A Subheading</h2>

<h3 id="a-third-level-heading">A Third-Level Heading</h3>

<p>Nested headings should maintain a clear visual hierarchy without competing with the article title.</p>

<h2 id="blockquote">Blockquote</h2>

<blockquote>
  <p>The most dangerous vulnerabilities are not the ones we know about — they are the ones we have not thought to look for yet.</p>
</blockquote>

<h2 id="table">Table</h2>

<table>
  <thead>
    <tr>
      <th>Component</th>
      <th>Role</th>
      <th>Risk Level</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>LLM</td>
      <td>Text generation</td>
      <td>High</td>
    </tr>
    <tr>
      <td>Tool executor</td>
      <td>Runs code / calls APIs</td>
      <td>Critical</td>
    </tr>
    <tr>
      <td>Memory store</td>
      <td>Persists context</td>
      <td>Medium</td>
    </tr>
    <tr>
      <td>Orchestrator</td>
      <td>Routes between agents</td>
      <td>High</td>
    </tr>
  </tbody>
</table>

<h2 id="list">List</h2>

<p>Unordered:</p>

<ul>
  <li>Indirect prompt injection via untrusted document content</li>
  <li>Tool call hijacking through malicious tool descriptions</li>
  <li>Context window poisoning across multi-agent pipelines</li>
</ul>

<p>Ordered:</p>

<ol>
  <li>Map all external data sources the agent reads</li>
  <li>Identify which sources can be written by untrusted parties</li>
  <li>Treat every untrusted input as a potential injection vector</li>
</ol>

<h2 id="conclusion">Conclusion</h2>

<p>If this post renders correctly — headings, code blocks with syntax highlighting, table, blockquote, lists, and inline formatting — the article system is ready for real content.</p>]]></content><author><name>Dan Cohen Vaxman</name></author><category term="AI Security" /><category term="LLM" /><category term="Prompt Injection" /><summary type="html"><![CDATA[A mock article to verify layout, typography, code blocks, and syntax highlighting.]]></summary></entry></feed>