<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Francis Iyiola</title>
    <description>The latest articles on DEV Community by Francis Iyiola (@devrancis).</description>
    <link>https://dev.to/devrancis</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3757459%2Fbb4f3b65-e5ba-443c-880e-fc171887a4a2.png</url>
      <title>DEV Community: Francis Iyiola</title>
      <link>https://dev.to/devrancis</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devrancis"/>
    <language>en</language>
    <item>
      <title>Dogfooding Security: Building a Resilient Portfolio via Attack Surface Reduction</title>
      <dc:creator>Francis Iyiola</dc:creator>
      <pubDate>Sun, 08 Feb 2026 14:18:17 +0000</pubDate>
      <link>https://dev.to/devrancis/dogfooding-security-building-a-resilient-portfolio-via-attack-surface-reduction-4o1i</link>
      <guid>https://dev.to/devrancis/dogfooding-security-building-a-resilient-portfolio-via-attack-surface-reduction-4o1i</guid>
      <description>&lt;p&gt;As a Cyber Security Engineer, I spend my days analyzing threat vectors and hardening complex infrastructure. Yet, for the longest time, my own digital footprint (my personal portfolio) was an afterthought. It was a classic case of the cobbler's children having no shoes.&lt;/p&gt;

&lt;p&gt;Recently, I decided it was time to overhaul my online presence. I didn't just want a pretty UI; I wanted a site that reflected my security-first methodology.&lt;/p&gt;

&lt;p&gt;The goal was simple but rigorous: build a high-performance, professional portfolio while achieving near-zero attack surface on the backend.&lt;/p&gt;

&lt;p&gt;Here is a walkthrough of the architecture I chose, the trade-offs I managed, and why "less is more" when it comes to securing personal infrastructure.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The Philosophy: Immutable Infrastructure&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In the world of web applications, complexity is the enemy of security. Every database connection, server-side script (PHP, Node.js backend), or CMS plugin is a potential entry point for SQL injection, RCE (Remote Code Execution), or privilege escalation attacks.&lt;/p&gt;

&lt;p&gt;To mitigate this, I opted for a Jamstack architecture, shifting the entire site to static HTML, CSS, and JavaScript connected to headless APIs.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The Stack and The "Why"&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Frontend Core&lt;/strong&gt;: &lt;em&gt;Vanilla JavaScript and CSS. No heavy frameworks, no unnecessary dependencies to audit for vulnerabilities.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Edge&lt;/strong&gt;: &lt;em&gt;Vercel&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The "Backend"&lt;/strong&gt;: &lt;em&gt;Serverless functions (Web3Forms) for communication.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;By deploying statically to Vercel's edge network, I effectively removed the server OS from the equation. There is no Apache server to patch, no Linux kernel to exploit, and no database to breach. The infrastructure is immutable; every deployment is a fresh, read-only snapshot.&lt;/p&gt;

&lt;p&gt;Furthermore, putting the site behind Vercel's global CDN provides inherent DDoS mitigation at Layer 3 and 4, absorbing volumetric attacks before they ever reach origin bandwidth limits.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The Implementation: Security Through Simplicity&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The development process focused on clean code and strong identity signals.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F491akicrjvdxv9wuo7q9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F491akicrjvdxv9wuo7q9.png" alt="A snapshot of my website running live" width="800" height="364"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;While the frontend is minimalist, the metadata hidden in the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; is dense. A crucial part of modern digital identity is ensuring that search engine bots (crawlers) understand exactly who you are.&lt;/p&gt;

&lt;p&gt;To achieve this, I implemented robust JSON-LD Structured Data. This isn't just for SEO; it's a cryptographic-like handshake with Google's Knowledge Graph, triangulating my identity as a "Person" entity across my established profiles on LinkedIn and GitHub.&lt;/p&gt;

&lt;p&gt;Here is a snippet of the schema architecture that defines my professional identity to the bots:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script type="application/ld+json"&amp;gt;
{
  "@context": "https://schema.org",
  "@type": "ProfilePage",
  "mainEntity": {
    "@type": "Person",
    "name": "Francis Iyiola",
    "jobTitle": "Cyber Security Engineer",
    "description": "Specializing in penetration testing, secure software development, and malware analysis.",
    "knowsAbout": ["Cybersecurity", "Python", "Rust", "Ethical Hacking"],
    "sameAs": [
      "https://www.linkedin.com/in/devrancis",
      "https://github.com/devrancis"
    ]
  }
}
&amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;By explicitly linking my high-authority profiles via the sameAs array, I am reducing the chance of identity ambiguity in search results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Closing Thoughts&lt;/strong&gt;&lt;br&gt;
Building this portfolio wasn't just about having a place to show my projects. It was an exercise in applying the security principles I advocate for daily: minimizing the blast radius, utilizing immutable infrastructure, and trusting nothing by default.&lt;/p&gt;

&lt;p&gt;The result is a site that is incredibly fast, requires zero server maintenance, and is hardened against the vast majority of common web attack vectors.&lt;/p&gt;

&lt;p&gt;You can view the live, security-hardened result here: &lt;a href="https://devrancis.vercel.app" rel="noopener noreferrer"&gt;Francis Iyiola&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>webdev</category>
      <category>programming</category>
      <category>career</category>
    </item>
  </channel>
</rss>
