<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Decoded Security]]></title><description><![CDATA[Helping people break into cybersecurity, prepare for interviews, and land their first job in the field.]]></description><link>https://www.decodedsecurity.com</link><image><url>https://substackcdn.com/image/fetch/$s_!hqdo!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png</url><title>Decoded Security</title><link>https://www.decodedsecurity.com</link></image><generator>Substack</generator><lastBuildDate>Mon, 01 Jun 2026 20:38:10 GMT</lastBuildDate><atom:link href="https://www.decodedsecurity.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Decoded Security]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[erich.winkler@decodedsecurity.com]]></webMaster><itunes:owner><itunes:email><![CDATA[erich.winkler@decodedsecurity.com]]></itunes:email><itunes:name><![CDATA[Erich Winkler]]></itunes:name></itunes:owner><itunes:author><![CDATA[Erich Winkler]]></itunes:author><googleplay:owner><![CDATA[erich.winkler@decodedsecurity.com]]></googleplay:owner><googleplay:email><![CDATA[erich.winkler@decodedsecurity.com]]></googleplay:email><googleplay:author><![CDATA[Erich Winkler]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[Hands-On Lab: How Attackers Crack Passwords in 0.0006 Seconds]]></title><description><![CDATA[You will crack real passwords, understand the exact mistake that exposed 117 million LinkedIn accounts, and leave with hands-on experience you can use in interviews, exams, and real security reviews.]]></description><link>https://www.decodedsecurity.com/p/hands-on-lab-how-attackers-crack</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/hands-on-lab-how-attackers-crack</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Fri, 29 May 2026 08:09:25 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/704b46bc-772c-4e65-b1f8-604c54d6fb4f_1672x941.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>In 2012, LinkedIn was breached.</p><p>Millions of accounts. All passwords are hashed with MD5. No salt. The database was dumped and circulated online, and within days, the majority of passwords had been cracked.</p><p>And all the attacker needed was a wordlist and a loop.</p><p>But this couldn&#8217;t possibly have happened today, right?</p><p>Well, I hate to break it to you, but the same mistakes are still being made today. That&#8217;s why you need to understand what exactly happened in 2012 and how to prevent it from happening on your systems.</p><p><strong>And what better way of learning than actually performing the attack?</strong> </p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to <strong>Decoded Security</strong> and join the community of 1100+ <strong>cybersecurity</strong> <strong>professionals</strong>!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3></h3><blockquote><p><strong>Note:</strong> This article assumes you understand what hashing is and why it matters. If you are not there yet, read these first:</p></blockquote><ul><li><p><a href="https://www.decodedsecurity.com/p/hashing-what-it-is-and-why-its-not">Hashing: What It Is and Why It&#8217;s Not the Same as Encryption</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/hashing-algorithms-what-any-cybersecurity">Hashing Algorithms: What Any Cybersecurity Specialist Needs to Know</a></p></li></ul><h2>What actually happened in 2012</h2><p>Most modern systems don&#8217;t store passwords in plaintext, but in hashes.</p><p>That&#8217;s why when the attacker steals the password database, all they can see are hashes.</p><p>Once they have the hashes, the goal is quite simple. </p><p>To reverse them and figure out what password produced each hash.</p><p>But how?</p><p>Well, the first option is brute force. Try all possible combinations and sooner or later, you&#8217;ll hit the jackpot.</p><p>But it can take years.</p><p>So they need something more efficient - a <strong>dictionary attack.</strong></p><p>Take a list of common passwords. Hash each one. Compare the result against the stolen hashes. If there&#8217;s a match, the password is cracked.</p><p>No magic. Just a list of words and a simple loop.</p><p>It works because most people choose predictable passwords. </p><p>&#8220;password&#8221;, &#8220;123456&#8221;, &#8220;password123&#8221;. </p><p>Variations with numbers at the end. Seasons plus years. The attacker&#8217;s wordlist reflects exactly how real humans think.</p><p>That&#8217;s exactly what happened in 2012. LinkedIn&#8217;s database was dumped. The attackers ran a wordlist against 117 million SHA-1 hashes. And because there was <strong>no salt</strong> and the algorithm was fast, the majority cracked in days.</p><p>And with SHA-1? A modern CPU can compute hundreds of millions of SHA-1 hashes per second. <strong>A poorly hashed password is cracked before you finish reading this sentence.</strong></p><h2>What is salting</h2><p>If you&#8217;ve been paying attention, you noticed this sentence: &#8220;because there was no salt.&#8221;</p><p><strong>What does that even mean?</strong> Are we worried about our passwords not being tasty enough? Or what?</p><p>Well..let&#8217;s take a look at it.</p><blockquote><p>A salt is a random string added to a password before it gets hashed.</p></blockquote><p>Without salting, every user who chooses &#8220;password&#8221; gets the same hash (assuming the same hashing algorithm):</p><pre><code><code>password &#8594; 5f4dcc3b5aa765d61d8327deb882cf99</code></code></pre><p>Always. Every time. On every system in the world.</p><p>With salting, a unique random string is generated per user and combined with the password before hashing:</p><pre><code><code>password + x7k2mR9q &#8594; completely different hash
password + 4mNpQ2rs &#8594; completely different hash again</code></code></pre><p>Two users with the same password now have completely different hashes in the database. An attacker who steals the database cannot use precomputed tables. They have to attack each hash individually. That changes the economics of the attack entirely.</p><p>And let&#8217;s face it, it&#8217;s all about the money. </p><h2>Why MD5 and SHA-1 are dangerous for passwords</h2><blockquote><p><strong>Note:</strong> If you have no idea what MD5 or SHA-1 means, make sure to read the articles linked above! You won&#8217;t regret it!</p></blockquote><p>Both algorithms were designed for speed. Fast hashing is excellent for verifying file integrity or generating checksums. It is catastrophic for password storage.</p><p>A modern CPU can compute hundreds of millions of MD5 hashes per second. </p><p>A GPU pushes that into billions. </p><p>A weak password is cracked before you finish reading this sentence.</p><p>Neither algorithm was designed with password storage in mind. Using them for that purpose is a fundamental design mistake, not a configuration issue. </p><p><strong>Make sure to remember that for both the real-world scenarios and certification exams!</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Are you preparing for CC, Security+, or CISSP? Subscribe to <strong>Decoded Security</strong> and get a free <strong>Top 10 Cybersecurity Fundamentals Guide.</strong></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>What do we use instead?</h2><p><strong>bcrypt</strong> was designed specifically for passwords. The key difference is intentional slowness.</p><p>It has a cost factor, sometimes called a work factor, that controls how computationally expensive each hash computation is. </p><p>The same password takes milliseconds with MD5 and seconds with bcrypt. At scale, that difference makes automated cracking attacks impractical.</p><p>A wordlist with 56 passwords takes MD5 a fraction of a millisecond. The same list against bcrypt takes several seconds. Scale that to millions of passwords and the attack stops being viable on normal hardware.</p><blockquote><p><strong>Note:</strong> There is an even newer standard, Argon2, but bcrypt is still widely used.</p></blockquote><h2>What you are about to do</h2><p>It&#8217;s time to get some hands-on experience. </p><p>The lab below uses a real Docker environment, real password hashes, and a real dictionary attack script.</p><p>You will crack three passwords in under a second. You will watch one password survive because it is not in the wordlist. You will see bcrypt slow everything down to a crawl.</p><p>Theory tells you this happens. </p><p>And the biggest benefit? Next time you&#8217;re in an interview, you will have a nice personal project to talk about. </p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?coupon=d3bcb2dd&amp;utm_content=199442126&quot;,&quot;text&quot;:&quot;Get 14 day free trial&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/subscribe?coupon=d3bcb2dd&amp;utm_content=199442126"><span>Get 14 day free trial</span></a></p><blockquote><p><strong>The lab is waiting. Subscribe to access the full step-by-step walkthrough below.</strong></p></blockquote>
      <p>
          <a href="https://www.decodedsecurity.com/p/hands-on-lab-how-attackers-crack">
              Read more
          </a>
      </p>
   ]]></content:encoded></item><item><title><![CDATA[Penetration Testing for Beginners: The Exact Study Plan I’d Follow If I Had to Start From Scratch]]></title><description><![CDATA[Break into offensive security without wasting months on the wrong tools and certifications. This step-by-step roadmap shows you what to learn, in what order, and how to build skills that matter.]]></description><link>https://www.decodedsecurity.com/p/penetration-testing-for-beginners</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/penetration-testing-for-beginners</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Mon, 25 May 2026 14:03:13 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/5b554b77-dcbf-4435-9b24-a6178bc74f95_1672x941.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Do you want to break into penetration testing but don&#8217;t know where to start?</p><p>You feel that urge to do something, but you always end up watching random YouTube videos, downloading Kali Linux, and feeling like you are getting nowhere.</p><p>In cybersecurity, a lack of direction is more dangerous than a lack of knowledge.</p><p>I am going to be honest with you. I am not a penetration tester. I am a Cybersecurity Manager.</p><p>But I have worked alongside pentesters. I have interviewed candidates for offensive security roles. And I have studied this path carefully enough to know exactly what separates the people who break in from the ones who stay stuck.</p><p>This is the study plan I would follow if I had chosen this path.</p><div class="callout-block" data-callout="true"><p>Comment your target role + your current level, and I&#8217;ll tell you exactly what to focus on next.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments"><span>Leave a comment</span></a></p></div><h3>Penetration Testing (Offensive Security)</h3><p>Penetration testing is one of the <strong>5 cybersecurity paths</strong> you can choose.</p><p><strong>If you are not familiar with the cybersecurity paths, read this first:</strong></p><p>&#128073; <a href="https://www.decodedsecurity.com/p/how-to-choose-the-right-cybersecurity">How to Choose the Right Cybersecurity Role Before You Waste Time and Money on the Wrong Certifications</a></p><p>But before you deep-dive into the materials I am about to provide, make sure this path is really for you.</p><p>You do not want to waste weeks and months learning things that will not get you any closer to your goal.</p><p><strong>It is a great fit if you:</strong></p><ul><li><p>Enjoy thinking like an attacker - finding weaknesses before others do</p></li><li><p>Like structured problem solving with clear objectives</p></li><li><p>Are comfortable going deep into technical detail</p></li><li><p>Enjoy learning how systems actually work under the hood</p></li><li><p>Have patience for long, methodical investigation</p></li></ul><p><strong>Be honest with yourself:</strong></p><ul><li><p>Penetration testing is <strong>not beginner-friendly</strong></p></li><li><p>Most entry-level roles require at least some <strong>IT or networking background</strong></p></li><li><p>You will spend months building foundations before touching offensive tools</p></li><li><p>The learning curve is <strong>steeper</strong> than almost any other cybersecurity path</p></li></ul><blockquote><p>But don&#8217;t get me wrong here. I am not saying it isn&#8217;t worth it! All I am saying is you need some IT experience first! </p></blockquote><h3>The Decoded Security Penetration Testing Roadmap</h3><p>This roadmap has three main goals.</p><p>First, make sure you understand the cybersecurity fundamentals that underpin everything in offensive security.</p><p>Second, make sure you understand how systems and networks actually work, because you cannot attack what you do not understand.</p><p>Third, force you to practice in real environments, not just watch tutorials.</p><blockquote><p>What is your target role? Let me know in the comments and let&#8217;s discuss your next steps!</p></blockquote><p>Here is the exact roadmap I would follow if I had to start from scratch.</p><h3>Step 1: Build the Right Foundation</h3><p>Before you touch a single offensive tool, you need to understand how cybersecurity actually works.</p><p>Most beginners skip this step. They download Kali Linux on day one and wonder why nothing makes sense.</p><p>Do not make that mistake.</p><div class="callout-block" data-callout="true"><p><strong>Download this first for FREE:</strong> <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">Cybersecurity Fundamentals: The 10 Concepts That Get You Through 90% of Interviews</a></p></div><p><strong>Make sure to understand these especially:</strong></p><ol><li><p><a href="https://www.decodedsecurity.com/p/threat-risk-vulnerability-why-cissp">Threat &#8800; Risk &#8800; Vulnerability: Why CISSP Basics Matter More Than You Think</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/cybersecurity-controls-from-zero">Cybersecurity Controls from Zero to Hero</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-psychology-of-hacking-why-smart">The Psychology of Hacking: Why Smart People Fall for Dumb Scams</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/6-myths-that-are-killing-corporate">6 Myths That Are Killing Corporate Cybersecurity</a></p></li></ol><h3>Step 2: Master Networking and Systems</h3><p>You cannot hack what you do not understand.</p><p>Every penetration tester needs a deep understanding of how networks and systems communicate. This is not optional. It is the foundation of everything.</p><p><strong>Focus on:</strong></p><p><strong>Networking fundamentals</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-dns-to-beginners">This Is How I Explain DNS To Beginners</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols">Top 5 Most Important Network Protocols for Cybersecurity Beginners</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting">This Is How I Explain Subnetting To a Beginner</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/most-cybersecurity-beginners-study">Why Most Beginners Don&#8217;t Understand How Networks Actually Work</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/7-networking-questions-that-instantly">7 Networking Questions That Instantly Expose Beginners in Cybersecurity Interviews</a></p></li></ul><p><strong>Linux - non-negotiable</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a">This Is How I Explain Linux To a Beginner</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/top-5-linux-command-for-an-entry">Top 5 Linux Commands for an Entry-Level Cybersecurity Role</a></p></li></ul><p><strong>Cryptography basics</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/symmetric-vs-asymmetric-encryption">Symmetric vs Asymmetric Encryption</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-storage-mistake-90-of-people">Digital Signatures Explained</a></p></li><li><p>[This Is How I Explain PKI To a Beginner] - will be published soon!!</p></li></ul><p><strong>Attack techniques</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-the-man-in">This Is How I Explain The Man-in-the-Middle Attack To a Beginner</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/phisnig-social-engineering">How Phishing Works in 5 Steps</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-qr-code-trap-why-those-little">The QR Code Trap</a></p></li></ul><blockquote><p><strong>Do you struggle with any of these concepts?</strong> Comment the one you don&#8217;t understand and I will break it down for you.</p></blockquote><h3>Step 3: Get Your First Certification</h3><p>Most people ask the wrong question: &#8220;Which certification should I get?&#8221;</p><p>The right question is: &#8220;Which certification fits where I am right now?&#8221;</p><p>For penetration testing, here is the honest order:</p><p><strong>Start here:</strong> <strong>eJPT (eLearnSecurity Junior Penetration Tester)</strong> </p><p>Free to study. Practical exam. Actually tests whether you can do the work, not just memorize definitions. This is the most realistic first certification for this path.</p><p><strong>Then:</strong> <strong>CompTIA PenTest+</strong> </p><p>Widely recognized. Good intermediate step. Bridges the gap between foundational knowledge and hands-on offensive work.</p><p><strong>The goal:</strong> <strong>OSCP (Offensive Security Certified Professional)</strong> </p><p>The industry standard for senior offensive roles. Do not attempt this first. Attempt it when you are ready - but consider attempting it earlier than you feel comfortable. Passing OSCP before you have extensive experience sends a signal that nothing else on this path does.</p><p><strong>Read the full certification breakdown here:</strong> &#128073; <a href="https://www.decodedsecurity.com/p/i-have-watched-people-waste-4000">Stop Buying Random Certifications. Here&#8217;s Exactly Which One You Need Based on Your Path</a></p><h3>Step 4: Practice in Real Environments</h3><p>Reading about penetration testing will not make you a penetration tester.</p><p>You need to practice. Every day. In real environments.</p><p>Here are the free platforms I would use:</p><p><strong>TryHackMe</strong> - Start here. Guided learning paths with real machines. The most beginner-friendly platform on this list. Complete the &#8220;Pre-Security&#8221; and &#8220;Jr Penetration Tester&#8221; paths first.</p><p><strong>OverTheWire: Bandit</strong> - Teaches Linux command line through puzzles. Surprisingly fun. Surprisingly hard. Do this alongside TryHackMe.</p><p><strong>HackTheBox</strong> - More advanced. Move here once you are comfortable with TryHackMe. The machines are harder and less guided.</p><p><strong>The rule:</strong> One hour of practice every day beats five hours on weekends. Consistency matters more than intensity.</p><blockquote><p><strong>Do you struggle with any of these platforms?</strong> Comment below and I will point you to the right starting point.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments"><span>Leave a comment</span></a></p></blockquote><h3>Step 5: Build a Portfolio</h3><p>This is the step most beginners skip. Do not skip it.</p><p>A penetration testing portfolio proves you can do the work before you have a job to prove it.</p><p><strong>What to include:</strong></p><ul><li><p><strong>CTF writeups</strong> - document every challenge you solve on TryHackMe and HackTheBox. Explain what you did, why you did it, and what you learned.</p></li><li><p><strong>Personal lab</strong> - set up a home lab with VirtualBox or Docker. Document your setup.</p></li><li><p><strong>A GitHub profile</strong> - publish your scripts, notes, and writeups publicly.</p></li><li><p><strong>A blog or newsletter</strong> - writing about what you learn forces you to understand it deeply. It also makes you visible to recruiters.</p></li></ul><p>Hiring managers for offensive security roles do not just look at your CV. </p><p>They look at your <strong>GitHub</strong>. They look at your write-ups. They look for evidence that you actually do this.</p><blockquote><p><strong>Have you started a portfolio?</strong> Comment below and share it. I will give you feedback.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments"><span>Leave a comment</span></a></p></blockquote><h3>Conclusion</h3><p>Most people do not fail in penetration testing because it is too hard.</p><p>They fail because they never had a plan.</p><p>They download Kali Linux on day one. They watch random YouTube videos. They jump between tools without understanding what they are doing or why.</p><p>That is how months turn into years with nothing to show for it.</p><p>This roadmap fixes that. It gives you the structure I wish someone had given me when I was learning this field.</p><p><strong>It tells you:</strong></p><ul><li><p>What to learn</p></li><li><p>In what order</p></li><li><p>And how to actually practice it</p></li></ul><p><strong>You will start thinking like someone who can:</strong></p><ul><li><p>Understand how systems communicate</p></li><li><p>Identify realistic attack vectors</p></li><li><p>Build the skills that actually get you hired</p></li></ul><p>You already have the roadmap. Now it is about execution.</p><p>See you in the comments.</p><p>Thank you for reading Decoded Security!</p><p>Erich</p><div><hr></div><blockquote><p><strong>Comment your target role and your current level. I will give you your next step.</strong></p></blockquote><div><hr></div><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">More than 1,100 people read <strong>Decoded Security</strong> every week. <strong>Join the community!</strong></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>&#128172; Which step feels most challenging right now? Comment below - I read every response.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/penetration-testing-for-beginners/comments"><span>Leave a comment</span></a></p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong><em><strong><a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap"><br><br></a></strong></em><strong>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></p><p><strong>Let&#8217;s learn and grow together!</strong></p>]]></content:encoded></item><item><title><![CDATA[This Is How I Explain PKI To a Beginner]]></title><description><![CDATA[PKI is not about encryption. It is about trust. If you don&#8217;t understand this difference, you don&#8217;t understand how internet security works.]]></description><link>https://www.decodedsecurity.com/p/this-is-how-i-explain-pki-to-a-beginner</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/this-is-how-i-explain-pki-to-a-beginner</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 20 May 2026 05:01:36 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/3d7b9595-cab9-455f-b6a8-996b3be0d823_1672x941.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>It&#8217;s time to describe one of the core concepts of today&#8217;s internet and its security, often called the <strong>backbone of digital trust</strong>.</p><p>Without it, the internet as we know it wouldn&#8217;t exist. </p><p>There would be no way to verify that someone is who they claim to be.</p><p>So what can you expect today?</p><p>After reading this article, you will understand:</p><ol><li><p>What the goals of the&nbsp;<strong>Public Key Infrastructure (PKI)</strong> are</p></li><li><p>What functions and components PKI has</p></li><li><p>How it fulfills its goals</p></li></ol><p>And as a bonus, I will tell you exactly what you need to know for cybersecurity exams and interviews.</p><p>So if you are serious about cybersecurity, make sure to read this!</p><blockquote><p><strong>Warning: CC, Security+, and CISSP relevant topic!</strong></p></blockquote><blockquote><p>Do you want to build a career in cybersecurity? Take a <a href="https://quiz.decodedsecurity.com/">2-minute cybersecurity quiz </a>and get a personalized reading list based on your background and goals.</p></blockquote><h3>Core Objectives of PKI</h3><p>Before we deep dive into individual components of the PKI, I want to make sure absolutely clear. </p><blockquote><p>PKI isn&#8217;t about <strong>encryption</strong>! </p></blockquote><p>Does it use cryptographic algorithms? Absolutely.</p><p>But it is only one small part of a complicated system. </p><p>And if you&#8217;ve been reading <strong>Decoded Security</strong> for a while, you know that everything needs to be tied to the core cybersecurity objectives - <strong>CIANA</strong>. (If you&#8217;re not familiar with the CIANA triad, just read the <a href="https://www.decodedsecurity.com/p/my-first-week-of-cissp-prep-what">Core Cybersecurity Objectives - Summary</a>.) </p><p><strong>So what are the core objectives of the PKI?</strong></p><ul><li><p><strong>Authentication:</strong> To confirm that users, devices, and applications are who they claim to be.</p></li><li><p><strong>Confidentiality:</strong> To encrypt data so that only the authorized recipient can read it.</p></li><li><p><strong>Data Integrity:</strong> To guarantee that information has not been altered or tampered with during transit.</p></li><li><p><strong>Non-Repudiation:</strong> To provide proof of the origin of data, preventing a sender from denying they sent a message or signed a document.</p></li></ul><p>Excellent, now we know its goals. Let&#8217;s dive into how they are achieved.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!_ZM2!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!_ZM2!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!_ZM2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png" width="1080" height="1350" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1350,&quot;width&quot;:1080,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:142122,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197729547?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!_ZM2!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!_ZM2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe5577e31-deda-445d-b6f9-1d2f6949cf7f_1080x1350.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><blockquote><p>Are you interested in how PKI works? Give me a like so I know I am not alone!</p></blockquote><h3>PKI - Key function</h3><p>Now that we know what we want to achieve with the implementation of the PKI, let&#8217;s take a look at how it&#8217;s achieved. </p><p><strong>Key function:</strong> PKI manages the entire lifecycle of digital certificates, which bind public keys to specific identities (people, organizations, or devices). </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!haRX!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!haRX!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 424w, https://substackcdn.com/image/fetch/$s_!haRX!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 848w, https://substackcdn.com/image/fetch/$s_!haRX!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 1272w, https://substackcdn.com/image/fetch/$s_!haRX!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!haRX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png" width="1456" height="618" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:618,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:260308,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197729547?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!haRX!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 424w, https://substackcdn.com/image/fetch/$s_!haRX!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 848w, https://substackcdn.com/image/fetch/$s_!haRX!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 1272w, https://substackcdn.com/image/fetch/$s_!haRX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4947add1-4afd-4c7d-b93c-47e3bbe91c6d_2710x1151.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><blockquote><p>Don&#8217;t know what a digital certificate is? Don&#8217;t worry, we all have been there. <br><strong>Read this first:</strong> <a href="https://www.decodedsecurity.com/i/163231485/whats-in-a-digital-certificate">What is the digital certificate?</a></p></blockquote><p>In other words, it allows us to verify that a specific public key really belongs to a person, organization, or any other entity. </p><p>Why is it so important?</p><p>Imagine I generate a key set - Public and Private key, and then a certificate</p><p>I will simply create a website that looks exactly like your bank. Your browser will ask me for a certificate, so I will simply generate it and send it. </p><p>Everything seems legit, and you will start entering your credentials, and..I think you can see the problem now. </p><p>For this reason, there is an independent entity that both your browser (or you) and the bank trust, called a certification authority. </p><p>This entity would sign my certificate, but only after I provide proof that I am really your bank. Since I can&#8217;t provide any kind of proof that I am your bank, they wouldn&#8217;t sign my certificate, and you wouldn&#8217;t trust me. <br><br>The attack just failed. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!1jnh!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!1jnh!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 424w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 848w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 1272w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!1jnh!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png" width="1456" height="936" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:936,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:354478,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197729547?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!1jnh!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 424w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 848w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 1272w, https://substackcdn.com/image/fetch/$s_!1jnh!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2f7963f-03c4-4a6c-967f-3785f906d604_2857x1836.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>So, here is the key information I want you to take away from this chapter. </p><p>The PKI introduces a system that allows us to bind a public key to a specific entity ( e.g., a bank) by signing its digital certificate that includes its public key. </p><p>The digital certificate is signed by a CA (Certification Authority) that is trusted by both communicating parties. </p><blockquote><p>Don&#8217;t know how asymmetric encryption works and what a public key is? I got you covered: <a href="https://www.decodedsecurity.com/p/symmetric-vs-asymmetric-encryption">Asymmetric encryption - Introduction</a></p></blockquote><h3>PKI - The Passport Analogy</h3><p>I know I dropped a lot of terms on you. Today is about getting the main idea. </p><p>So let me use an analogy that helped me to understand the whole system a couple of years back! </p><blockquote><p><strong>Think of PKI like a passport system.</strong></p></blockquote><p>When you travel internationally, border control does not know you personally. But they trust your passport because they trust the government that issued it.</p><p>PKI works exactly the same way.</p><p><strong>Here is the mapping:</strong></p><p><strong>Certificate Authority (CA) = the government:</strong> The trusted organization that issues and signs digital certificates. Everyone agrees to trust the CA. If the CA says a certificate is valid, everyone accepts it.</p><p><strong>Digital Certificate = your passport:</strong> A document that proves your identity online. It contains your public key and is signed by a CA to confirm it is legitimate.</p><p><strong>Public Key = your identity:</strong> Visible to everyone. Just like your name and photo on a passport. Anyone can see it.</p><p><strong>Private Key = your fingerprint:</strong> Known only to you. The unique proof that you are who you say you are. Cannot be faked or transferred.</p><p><strong>The CA&#8217;s signature is what makes it all work.</strong></p><p>Without a trusted authority vouching for your identity, anyone could create a fake certificate claiming to be your bank, your email provider, or anyone else.</p><blockquote><p>Did this analogy helped you? Give me a like so I know it&#8217;s worth creating them!</p></blockquote><h3>Key Takeaways</h3><p>If this all feels confusing, don&#8217;t worry, it will all start to make sense. </p><p>To fully understand this problem, make sure to understand the following topics:</p><p>&#128073; <a href="https://www.decodedsecurity.com/p/certification-authorities-cas-what">Certification Authorities: What is it and why do we need it?</a> </p><p>&#128073; <a href="https://www.decodedsecurity.com/p/digital-signatures-explained-with">Digital Signatures Explained</a> </p><p>&#128073; <a href="https://www.decodedsecurity.com/p/symmetric-vs-asymmetric-encryption">Symmetric vs Asymmetric Encryption</a></p><div class="callout-block" data-callout="true"><p>If you&#8217;re struggling with any of the topics, there is nothing easier than commenting under the post, and I will help you!</p></div><p>Once you understand these topics, the whole PKI process becomes clearer. And if it doesn&#8217;t, just comment under the post, and I will explain it better!</p><blockquote><p>Did this article help you to understand the basics of the PKI process? Give it a like and help me to share it with more people interested in cybersecurity!</p></blockquote><h3>Conclusion</h3><p>Congratulations! You now understand what PKI actually is and why it exists.</p><p>And more importantly, you understand the problem it solves - which is exactly the question the CISSP exam will ask you.</p><p>Next time, we will look at how this connects to the real world. Because PKI is only a general system, to really understand how it is used, one piece is still missing:&nbsp;<strong>the chain of trust.</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to Decoded Security so you won&#8217;t miss it!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><div><hr></div><div class="callout-block" data-callout="true"><p><strong>Want a clear 90-day plan for turning your knowledge into a job?</strong></p><p>&#128073; <a href="https://decodedsecurity.gumroad.com/l/CybersecurityBlueprint">The 90-Day Cybersecurity Job Blueprint - &#8364;9.99</a></p><p>4.8 stars. 45 people have used it. 14-day money-back guarantee.</p></div><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong><em><strong><a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap"><br><br></a></strong></em><strong>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></p><p><strong>Let&#8217;s learn and grow together!</strong></p>]]></content:encoded></item><item><title><![CDATA[Stop Memorizing Security Models: Use This 2-Question CISSP Filter]]></title><description><![CDATA[Most CISSP candidates try to memorize every security model. This simple filter helps you understand what each model protects and how to answer exam questions faster.]]></description><link>https://www.decodedsecurity.com/p/stop-memorizing-security-models-use</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/stop-memorizing-security-models-use</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 13 May 2026 13:51:34 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/e48f62d9-43e9-4b54-8e83-da8fcc9e72c9_1672x941.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<blockquote><p><strong>&#128218; Essential CISSP topic</strong></p></blockquote><p>If you&#8217;re preparing for the CISSP exam or are serious about your cybersecurity career, make sure to read this. </p><p>Because this is one of the topics that distinguishes juniors from senior professionals. </p><p>When I hit security models in <strong>Domain 3</strong>, my instinct was the same as most candidates:</p><blockquote><p>Open the book. Highlight every name. Make flashcards. Hope my brain hangs on until exam day.</p></blockquote><p>Bell-LaPadula. Biba. Clark-Wilson. Brewer-Nash. Graham-Denning. Take-Grant.</p><p>Eight names. Multiple rules each. Some protect confidentiality, some protect integrity, and some have weird rules that I don&#8217;t understand.</p><p><strong>And here&#8217;s the uncomfortable truth &#128071;</strong> </p><p>The candidates who fail this section aren&#8217;t the ones who forgot a definition. They&#8217;re the ones who memorized all eight and still couldn&#8217;t answer the question.</p><p>This article isn&#8217;t a textbook dump. It&#8217;s a way to compress <strong>30 pages of CISSP content</strong> into a mental shortcut you can actually use on <strong>exam day</strong>. </p><p>And it's something that helped me pass the CISSP exam in 3 months!</p><blockquote><p><strong>Warning:</strong> This is one of the most tested topics in <strong>CISSP Domain 3.</strong></p></blockquote><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Preparing for the CISSP exam? Subscribe to <strong>Decoded Security</strong> and get free resources every week!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3>What is a security model?</h3><p>A security model is just a <strong>formal representation of a security policy</strong>. It defines:</p><ul><li><p>Who (Subject) can access what (Object)</p></li><li><p>Under what conditions</p></li><li><p>Which kind of protection it enforces (confidentiality, integrity, or both) </p></li></ul><blockquote><p><strong>Note:</strong> If you&#8217;re not familiar with terms such as Subject and Object, read this first: <strong><a href="https://www.decodedsecurity.com/p/access-controls">Access Controls: Who Gets the Keys?</a></strong></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!XI_a!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!XI_a!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 424w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 848w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 1272w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!XI_a!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png" width="1260" height="195" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:195,&quot;width&quot;:1260,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:32997,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!XI_a!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 424w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 848w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 1272w, https://substackcdn.com/image/fetch/$s_!XI_a!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90092e8d-1812-4744-bc5e-77f8a80b57f1_1260x195.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p>I know, it all sounds boring.</p><p>That&#8217;s why most candidates default to rote memorization. <strong>(Luckily I have a very bad memory, so that wasn&#8217;t an option for me)</strong></p><p><strong>Then the exam hits them with a question like this:</strong></p><blockquote><p><em>&#8220;A defense contractor needs to prevent classified intelligence from leaking to lower clearance levels. Which model best supports this requirement?&#8221;</em></p></blockquote><p>Notice what the question is <strong>not</strong> asking:</p><ul><li><p>It&#8217;s not asking for the definition</p></li><li><p>It&#8217;s not asking who invented it</p></li><li><p>It&#8217;s not asking which government uses it</p></li></ul><p>It&#8217;s asking: <strong>What goal needs to be protected, and which model was built for that exact goal?</strong></p><p>That&#8217;s the whole game.</p><blockquote><p>Security models are just answers to specific real-world problems. Once you know the problem, the model picks itself.</p></blockquote><div class="callout-block" data-callout="true"><p><strong>Not sure what to learn next?</strong> Get a personalized study plan based on your background and goals: <a href="https://quiz.decodedsecurity.com/">Start the quiz</a></p></div><h3>The 2-Question Filter</h3><p>As I have mentioned, I have a terrible memory. That&#8217;s why I created my personal Decoded Security framework to make sure I can choose the right model in any situation. </p><p>For every security model question on the exam, I ask:</p><blockquote><p><strong>Q1: What is being protected? Confidentiality or integrity?</strong> </p><p><strong>Q2: How is information allowed to flow?</strong></p></blockquote><p>If you can answer those two, you&#8217;ll get more than 80% of model questions right without remembering a single rule by heart.</p><p>Here&#8217;s the map.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Are you interested in the Top 10 Cybersecurity Fundamentals guide? Subscribe to <strong>Decoded Security</strong> and get it for FREE.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3>Models That Protect CONFIDENTIALITY</h3><p>These models exist for one reason: To <strong>ensure confidentiality.</strong></p><h4>Bell-LaPadula</h4><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!cga6!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!cga6!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 424w, https://substackcdn.com/image/fetch/$s_!cga6!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 848w, https://substackcdn.com/image/fetch/$s_!cga6!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 1272w, https://substackcdn.com/image/fetch/$s_!cga6!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!cga6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png" width="1229" height="719" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:719,&quot;width&quot;:1229,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:105426,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!cga6!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 424w, https://substackcdn.com/image/fetch/$s_!cga6!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 848w, https://substackcdn.com/image/fetch/$s_!cga6!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 1272w, https://substackcdn.com/image/fetch/$s_!cga6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3b645019-009e-4001-be3c-480d1d8f8381_1229x719.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><ul><li><p><strong>Rules:</strong> </p><ul><li><p>No read up (The simple security rule)</p></li><li><p>No write down (The * property rule).</p></li><li><p><strong>The strong property rule:</strong> Subject's clearance and objects classification needs to be equal</p></li></ul></li><li><p>A junior analyst can&#8217;t read top secret. A general can&#8217;t write classified info into an unclassified channel.</p></li><li><p><strong>Built for:</strong> U.S. Department of Defense. Multilevel military systems.</p></li><li><p><strong>Memory hook:</strong> <em>BLP = Block Leakage of secrets properly.</em></p></li></ul><h4>Brewer-Nash (Chinese Wall)</h4><p>This particular security model is really interesting. Basically, it is a set of rules that say: If you can access A, you can&#8217;t access B. And this all happens within one company. </p><ul><li><p><strong>Rule:</strong> You can&#8217;t access two datasets that conflict.</p></li><li><p>A consultant working with Bank A can&#8217;t suddenly access Bank B&#8217;s files.</p></li><li><p><strong>Built for:</strong> Financial firms, law firms, audit firms.</p></li><li><p><strong>Memory hook:</strong> <em>Brewer = Builds walls between conflicting clients.</em></p></li></ul><h4>Graham-Denning</h4><blockquote><p><strong>Note:</strong> Not that important for the exam.</p></blockquote><ul><li><p><strong>Rule:</strong> 8 primitive operations control the creation, deletion, and granting of rights for subjects and objects.</p></li><li><p><strong>Built for:</strong> Multilevel secure operating systems.</p></li></ul><h4>Take-Grant</h4><blockquote><p><strong>Note:</strong> Not that important for the exam.</p></blockquote><ul><li><p><strong>Rule:</strong> Rights transfer between subjects via 4 operations: Take, Grant, Create, Remove.</p></li><li><p><strong>Built for:</strong> Theoretical analysis of how privileges propagate through a system.</p></li></ul><h3>Models That Protect INTEGRITY</h3><p>These flip the script. They don&#8217;t care if you read something. They care that you don&#8217;t write garbage into critical systems.</p><h4>Biba</h4><ul><li><p><strong>Rule:</strong> No read down (simple integrity axiom). No write-up (*-integrity axiom).</p></li><li><p>A low-integrity process can&#8217;t pollute high-integrity data. A junior dev can&#8217;t push untested code directly into production payments.</p></li><li><p><strong>Built for:</strong> Systems where data corruption is worse than data exposure.</p></li><li><p><strong>Memory hook:</strong> <em>Biba = Block Bad data going UP.</em></p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!2QBq!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!2QBq!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 424w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 848w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 1272w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!2QBq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png" width="1212" height="757" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:757,&quot;width&quot;:1212,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:111015,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!2QBq!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 424w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 848w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 1272w, https://substackcdn.com/image/fetch/$s_!2QBq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0b1f8a57-6a66-4684-b7fd-828875aa91ad_1212x757.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><h4>Clark-Wilson</h4><ul><li><p><strong>Rule:</strong> Users don&#8217;t touch data directly. They access it through <strong>well-formed transactions</strong>.</p></li><li><p>Just remember here that the user does not access the data directly, but only through <strong>predefined</strong> procedures. </p></li><li><p><strong>You might get a question about what the &#8220;access control triplet&#8221; is:</strong> </p><ul><li><p>It is the relationship between a user and a set of programs that operate on a set of data items. </p></li><li><p><strong>Subjects &#8594; transformation procedures (programs) &#8594; data (Data items)</strong></p></li></ul></li><li><p><strong>Built for:</strong> Banking, accounting, transactional databases.</p></li><li><p>This is the model behind every system where you can&#8217;t edit a record without a controlled workflow.</p></li></ul><h3>Bell-LaPadula vs Biba: The mirror trick</h3><p>These two are the most tested models on the exam. </p><p><strong>The simplest way to keep them straight:</strong></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!TKz7!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!TKz7!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 424w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 848w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 1272w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!TKz7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png" width="1456" height="452" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:452,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:215483,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!TKz7!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 424w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 848w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 1272w, https://substackcdn.com/image/fetch/$s_!TKz7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F083f5743-ec52-4b1f-8be0-69d2c80798d2_2448x760.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>They are literal mirrors of each other.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!65C0!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!65C0!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 424w, https://substackcdn.com/image/fetch/$s_!65C0!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 848w, https://substackcdn.com/image/fetch/$s_!65C0!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 1272w, https://substackcdn.com/image/fetch/$s_!65C0!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!65C0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png" width="1316" height="250" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:250,&quot;width&quot;:1316,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:45792,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!65C0!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 424w, https://substackcdn.com/image/fetch/$s_!65C0!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 848w, https://substackcdn.com/image/fetch/$s_!65C0!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 1272w, https://substackcdn.com/image/fetch/$s_!65C0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0a41b2e2-27b0-47e9-916a-aef94b2ac0cd_1316x250.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p>If you remember one, you can derive the other by flipping the arrows.</p><blockquote><p><em>I&#8217;ll include a clean mirror diagram in the published version. If you want a printable cheat sheet, comment &#8220;Cheatsheet&#8221; and I&#8217;ll send it to you! </em></p></blockquote><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/stop-memorizing-security-models-use/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/stop-memorizing-security-models-use/comments"><span>Leave a comment</span></a></p><h3>How to apply this on exam day</h3><p>Read the scenario. Identify two things:</p><ol><li><p><strong>What is the threat?</strong> Leakage = confidentiality model. Corruption = integrity model.</p></li><li><p><strong>What environment?</strong></p><ul><li><p>Military / classified data &#8594; <strong>Bell-LaPadula</strong></p></li><li><p>Bank / transactional system &#8594; <strong>Clark-Wilson</strong></p></li><li><p>Consulting / audit / conflict of interest &#8594; <strong>Brewer-Nash</strong></p></li><li><p>Critical system integrity &#8594; <strong>Biba</strong></p></li></ul></li></ol><p>That&#8217;s it.</p><p>Most questions don&#8217;t require you to recite the &#8220;star property&#8221; or the &#8220;discretionary property.&#8221; They require you to match a real-world problem to the model that was designed for it.</p><p>If you want the deeper foundation behind these models, my earlier article on the <a href="https://www.decodedsecurity.com/p/the-8-security-principles-every-cissp">8 Security Principles every CISSP candidate thinks they understand</a> covers the design thinking these models came from.</p><h3>Key Takeaways</h3><ul><li><p>Don&#8217;t memorize models. Memorize <strong>what they protect</strong>. </p></li></ul><ul><li><p>Group them: confidentiality vs integrity. </p></li></ul><ul><li><p>Bell-LaPadula and Biba are mirrors. Learn one, and you get both for free. </p></li></ul><ul><li><p>Clark-Wilson is the banking model. Brewer-Nash is the consultant model. Bell-LaPadula is the military model. </p></li></ul><ul><li><p>Exam questions reward <strong>pattern recognition</strong>, not definitions.</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">If this helped you reframe a topic everyone overthinks, subscribe to <strong>Decoded Security </strong>and join a community of <strong>1100+</strong> cybersecurity professionals!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!vkg8!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!vkg8!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 424w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 848w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 1272w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!vkg8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png" width="1124" height="1492" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1492,&quot;width&quot;:1124,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:339927,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/197341092?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!vkg8!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 424w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 848w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 1272w, https://substackcdn.com/image/fetch/$s_!vkg8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc25db1b3-36c6-41c3-963a-aa61931aad81_1124x1492.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h3>Conclusion</h3><p>I know that Security models can sound very abstract at first, but there is a reason the CISSP tests as much as it does. </p><p>It allows security professionals to create a general framework and design systems based on the business needs, not the other way around!</p><p>I have spent days trying to figure this all out, and I truly hope this will help you get it in under <strong>90 minutes</strong>! </p><p>Good luck, and <strong>thank you for reading Decoded Security!</strong></p><p><strong>PS: Here is a printable cheatsheet to make it all easier for you!</strong></p><div class="file-embed-wrapper" data-component-name="FileToDOM"><div class="file-embed-container-reader"><div class="file-embed-container-top"><image class="file-embed-thumbnail-default" src="https://substackcdn.com/image/fetch/$s_!0Cy0!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack.com%2Fimg%2Fattachment_icon.svg"></image><div class="file-embed-details"><div class="file-embed-details-h1">Cissp Security Models Cheat Sheet</div><div class="file-embed-details-h2">76.3KB &#8729; PDF file</div></div><a class="file-embed-button wide" href="https://www.decodedsecurity.com/api/v1/file/4cbdb50c-1eb5-451c-a2b9-7363468fa590.pdf"><span class="file-embed-button-text">Download</span></a></div><a class="file-embed-button narrow" href="https://www.decodedsecurity.com/api/v1/file/4cbdb50c-1eb5-451c-a2b9-7363468fa590.pdf"><span class="file-embed-button-text">Download</span></a></div></div><p></p><div class="callout-block" data-callout="true"><p><strong>Not sure what to learn next?</strong> Get a personalized study plan based on your background and goals: <a href="https://quiz.decodedsecurity.com/">Start the quiz</a></p></div><h3>Want the rest of Domain 3 simplified?</h3><p>Security models are one piece. Domain 3 also covers cryptography, secure design principles, system architecture, and security capabilities of information systems. It&#8217;s the heaviest, most technical domain on the exam.</p><p><strong>If you want a structured way to master it without losing your mind, I have something just for you:</strong></p><p>&#128073; <strong><a href="https://decodedsecurity.gumroad.com/">CISSP Domain 3: Complete Guide</a></strong></p><p><strong>Built the same way:</strong> pattern recognition over memorization.</p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong><em><strong><a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap"><br><br></a></strong></em><strong>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></p><p><strong>Let&#8217;s learn and grow together!</strong></p>]]></content:encoded></item><item><title><![CDATA[This Is How I Explain Linux To a Beginner]]></title><description><![CDATA[Here&#8217;s the hard truth: If you want your first job in cybersecurity, you need to know the basics of Linux.]]></description><link>https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 06 May 2026 07:02:00 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/99e21f30-a00f-4899-9567-cf682b6d1a18_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>Here&#8217;s the hard truth:</strong> If you want your first job in cybersecurity, you need to know the basics of Linux.</p><p>That&#8217;s non-negotiable.</p><p>If that scares you, I have good news.</p><p>Linux is a complex environment. But you don&#8217;t need to know everything, at least not for most cybersecurity roles.</p><p><strong>You just need to know what actually matters.</strong></p><p>And that&#8217;s exactly what I am going to tell you today.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">More than 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let us help you achieve your goals!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2><strong>The Misconception That Stops Most Beginners (Including Me)</strong></h2><p>When I used to hear &#8220;learn Linux for cybersecurity&#8221; I pictured memorizing hundreds of commands.</p><p>ls. cd. chmod. grep. awk. sed. netstat. ps. curl. wget.</p><p>The list feels endless. (And it is!)</p><p>So I tried to avoid it for as long as possible. And of course, I hit the wall. </p><p><strong>Here is the truth that I wish someone had told me back then:</strong></p><p>You don&#8217;t need to know everything about Linux. You just need to understand the general concept and how to read the manual. Everything else will follow.</p><h3><strong>The Core Idea Of Linux</strong></h3><p>In Windows, everything has a graphical interface. You click folders, drag files, open menus.</p><p>Linux works differently.</p><blockquote><p><strong>In Linux, everything is a file.</strong></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!5K2O!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!5K2O!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!5K2O!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1866196,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/196514536?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!5K2O!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!5K2O!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd4205ff9-1883-41a2-998a-06864144fe7e_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Your documents are files. Your settings are files. Your hardware devices are files. Your network connections are files. Even your running processes can be accessed as files.</p><p>This is not just a technical detail. It is the model that makes Linux make sense.</p><p><strong>Think of it this way:</strong></p><p>In Windows, you configure your WiFi through a settings menu with buttons and dropdowns.</p><p>In Linux, you can configure your WiFi by editing a text file. Because the network configuration is stored as a file. Like everything else.</p><blockquote><p>This is why Linux is so powerful for cybersecurity. When everything is a file, you can read it, write it, copy it, move it, and automate it with simple commands.</p></blockquote><p><strong>And that is exactly what security professionals do every day.</strong></p><h3><strong>Top 4 Things You Need Know To Start</strong></h3><p>Before you learn a single command, you need to understand four foundational concepts. Everything else builds on these.</p><h4><strong>1. The Linux Filesystem</strong></h4><p>The Linux filesystem is organized as a single tree starting from the root directory, written as /.</p><p>Everything lives somewhere in that tree.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!HGdk!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!HGdk!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!HGdk!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1795507,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/196514536?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!HGdk!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!HGdk!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F764d4b1f-1afa-4932-a7a1-f1c59078dc7b_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>The most important directory for cybersecurity work is /var/log. </p><p>This is where system logs live. When something goes wrong or when you are investigating an incident, this is where you look first.</p><h4><strong>2. Linux Distributions</strong></h4><p>Linux is not one operating system. It is a family of operating systems built on the same foundation.</p><p>Each version is called a <strong>distribution</strong>.</p><p>The ones you will encounter most in cybersecurity:</p><ul><li><p><strong>Ubuntu</strong> - the most beginner-friendly, great for learning</p></li><li><p><strong>Kali Linux</strong> - built specifically for security testing, comes with hundreds of security tools pre-installed</p></li><li><p><strong>Debian</strong> - stable and widely used in servers</p></li><li><p><strong>CentOS / Rocky Linux</strong> - common in enterprise environments</p></li></ul><p>For beginners, start with Ubuntu. Once you are comfortable, explore Kali for security-specific work.</p><div class="callout-block" data-callout="true"><p><strong>Not sure how much Linux you need for your specific path?</strong></p><p>Comment below with your details, and I will tell you exactly what to focus on:</p><p><strong>[Target role | Current level]</strong></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments"><span>Leave a comment</span></a></p></div><h3><strong>3. Permissions</strong></h3><p>Linux controls who can do what to every file and directory.</p><p><strong>Every file has three permission levels:</strong></p><ul><li><p><strong>Owner</strong> - the person who created the file</p></li><li><p><strong>Group</strong> - a defined group of users</p></li><li><p><strong>Others</strong> - everyone else</p></li></ul><p><strong>And three types of permission:</strong></p><ul><li><p><strong>Read (r)</strong> - can view the file</p></li><li><p><strong>Write (w)</strong> - can modify the file</p></li><li><p><strong>Execute (x)</strong> - can run the file as a program</p></li></ul><p>When you see something like -rwxr-xr-- in a terminal, that is the permission string. It tells you exactly who can do what with that file.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!lh8P!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!lh8P!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!lh8P!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1871090,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/196514536?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!lh8P!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!lh8P!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff4a42db0-a388-43af-891b-fd0ac8c3d6eb_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h3><strong>4. Basic Commands</strong></h3><p>Once you understand the filesystem and permissions, commands start making sense.</p><p>I already wrote a full breakdown of the five commands you actually need for an entry-level cybersecurity role.</p><p><strong>If you have not read it yet, start there before anything else:</strong></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;9a7604f6-78ab-4501-af12-3661d4b6daf8&quot;,&quot;caption&quot;:&quot;Here&#8217;s the hard truth:&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Top 5 Linux commands for an entry-level cybersecurity role&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-02-12T00:01:00.948Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/6800fa08-1136-4808-8c1f-79d56f028721_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/top-5-linux-command-for-an-entry&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:187010228,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:22,&quot;comment_count&quot;:21,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><h2><strong>How To Actually Install and Practice Linux</strong></h2><p>Reading about Linux is not enough. You need to use it.</p><p><strong>Here are the two best options for beginners:</strong></p><h4><strong>Option 1: Docker (Recommended for complete beginners)</strong></h4><p>Docker lets you run a Linux environment inside any operating system without changing anything on your computer.</p><p>You can spin up a Linux container, practice commands, break things, and delete it when you are done. No risk to your main system.</p><p><strong>How to start:</strong></p><ol><li><p>Install Docker Desktop on your computer (free)</p></li><li><p><strong>Open your terminal and run:</strong> docker run -it ubuntu</p></li><li><p>You now have a full Ubuntu Linux environment to practice in</p></li></ol><p>This is the fastest way to get hands-on with Linux without any setup complexity.</p><blockquote><p><strong>I prepared a complete guide for you:</strong> <a href="https://decodedsecurity.gumroad.com/l/Docker_guide">Run Your First Linux Environment in 60 Minutes</a> (FREE)</p></blockquote><h4><strong>Option 2: Dual Boot (Recommended when you are ready to go deeper)</strong></h4><p>Dual booting means installing Linux alongside your existing operating system. </p><p>When you start your computer, you choose which one to use.</p><p>This gives you a full, native Linux experience. Performance is better than Docker, and you get used to using Linux as your actual working environment.</p><p>The tradeoff is that setup takes more time, and there is a small risk of something going wrong during installation if you do not follow instructions carefully.</p><p>Use Docker first. Once you are comfortable with the basics, consider dual-booting for a more immersive experience.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Vnsm!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Vnsm!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Vnsm!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1799925,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/196514536?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Vnsm!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!Vnsm!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe055dd07-f25d-4be6-b8c0-76c15e4f7b07_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h4><strong>Free Practice Platforms</strong></h4><p>Beyond your own machine, these platforms let you practice Linux in real cybersecurity scenarios:</p><ul><li><p><strong>TryHackMe</strong> - guided learning paths with Linux challenges built in. Perfect for complete beginners.</p></li><li><p><strong>OverTheWire: Bandit</strong> - a free wargame that teaches Linux commands by making you solve puzzles. Surprisingly fun.</p></li><li><p><strong>HackTheBox</strong> - more advanced, better suited once you have the basics down</p></li></ul><h2>Conclusion</h2><p>Congratulations! You just made another step in your cybersecurity journey. </p><p>But Linux isn&#8217;t something you&#8217;ll learn through reading, you have to execute!</p><p><strong>That&#8217;s why I want you to do the following steps RIGHT NOW:</strong> </p><ol><li><p>Install Docker on your computer</p></li><li><p>Run a Linux Distribution </p></li><li><p><strong>Finish the Free Lab I prepared for you:</strong> <a href="https://decodedsecurity.gumroad.com/l/Docker_guide">Run Your First Linux Environment in 60 Minutes</a></p></li><li><p>Comment on what your biggest problem was under this article - let me help you out!</p></li></ol><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments"><span>Leave a comment</span></a></p><p>Good luck!</p><p>- Erich</p><h3>Where To Go Next</h3><p>If this article gave you the foundation, the next step is getting practical with the actual commands:</p><p>&#128073; <a href="link">Top 5 Linux Commands for an Entry-Level Cybersecurity Role</a></p><p>And if you want to know which cybersecurity path makes Linux most relevant for your specific goals:</p><p>&#128073; <a href="link">How to Choose the Right Cybersecurity Role</a></p><div class="callout-block" data-callout="true"><p>&#128172; Which of the four foundational concepts was most useful to you? Comment below. I read every response! </p></div><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/this-is-how-i-explain-linux-to-a/comments"><span>Leave a comment</span></a></p><p></p><blockquote><p><strong>Want a clear 90-day plan for turning your knowledge into a job offer?</strong></p></blockquote><p>&#128073; <a href="https://decodedsecurity.gumroad.com/l/CybersecurityBlueprint">The 90-Day Cybersecurity Job Blueprint - &#8364;9.99</a></p><blockquote><p>4.8 stars. 45 people have used it. 14-day money-back guarantee.</p></blockquote><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><blockquote><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong></p></blockquote>]]></content:encoded></item><item><title><![CDATA[Your Cybersecurity Resume Is Getting Rejected for Reasons Nobody Tells You. I Will.]]></title><description><![CDATA[Having the right skills will not get you hired.]]></description><link>https://www.decodedsecurity.com/p/your-cybersecurity-resume-is-getting</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/your-cybersecurity-resume-is-getting</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Mon, 04 May 2026 12:27:07 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/4e010e43-30a9-471e-bb9a-8647332adefd_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>Having the right skills will not get you hired.</strong></p><blockquote><p>A resume that cannot communicate those skills will get you rejected before anyone finds out what you are capable of.</p></blockquote><p>I have spent a long time helping people build cybersecurity knowledge. </p><p>Certifications, frameworks, and technical fundamentals. But I can see very often people get passed over for roles they could do in their sleep. </p><p>The problem is rarely competence. It is that piece of paper that says: <strong>I can do this! Hire me!</strong></p><p>I am a Cybersecurity Manager. I sit on the hiring side of this process. And there are four specific things I see on resumes that put candidates in the reject pile before anyone picks up the phone.</p><p>None of them is what most resume guides talk about.</p><p>One of them will surprise you, because you are probably doing it right now, thinking it makes you look more qualified.</p>
      <p>
          <a href="https://www.decodedsecurity.com/p/your-cybersecurity-resume-is-getting">
              Read more
          </a>
      </p>
   ]]></content:encoded></item><item><title><![CDATA[This is how I Explain Cybersecurity Certifications To a Beginner]]></title><description><![CDATA[Most people pick certifications based on job postings, Reddit threads, or what looks impressive on LinkedIn. Here is a path-by-path guide to the only certifications that will actually move you forward]]></description><link>https://www.decodedsecurity.com/p/i-have-watched-people-waste-4000</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/i-have-watched-people-waste-4000</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Sat, 02 May 2026 08:58:23 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/7206b68b-e2a9-47d0-abb2-d7e51d47a5cd_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I have watched people spend <strong>&#8364;4,000</strong> on CISSP prep and other materials before they had a single year of experience.</p><p>I have seen SOC analysts study for penetration testing certs because they looked impressive on LinkedIn.</p><p>I have spoken to GRC professionals who spent six months on Security+ when they didn&#8217;t need it for a single job they applied for.</p><p>None of them made a bad decision because they were careless. They made a bad decision because nobody told them the truth:</p><p>The certification doesn&#8217;t matter. The path does.</p><p>So, Path first. Certification second. <strong>In that order.</strong></p><p>If you are not sure yet which of the five paths fits your background, go back and read the previous article first. <strong>Choosing the wrong path makes every certification decision harder.</strong></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;9aba6c13-756d-4689-88d4-8aac657688f4&quot;,&quot;caption&quot;:&quot;Do you want to break into cybersecurity, but feel confused by all the different roles?&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;How to Choose the Right Cybersecurity Role Before You Waste Time and Money on the Wrong Certifications&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-01-14T11:11:59.523Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hrEi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/how-to-choose-the-right-cybersecurity&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:184030241,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:57,&quot;comment_count&quot;:38,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:false,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><div class="callout-block" data-callout="true"><p>Before we start - comment below using this format:</p><p><strong>[Target role | Current level | Certifications you already have]</strong></p><p>I will personally send you a customized study plan. Not generic advice. Something built for your specific situation.</p><p><strong>I did this for 28 people last month. Every single one got a response.</strong></p></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!hrEi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!hrEi!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!hrEi!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!hrEi!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!hrEi!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><strong>Path 1: Offensive Security</strong></h2><p><strong>Target roles:</strong> Penetration Tester, Red Team Engineer</p><p>This is the path most people romanticize and the one with the steepest entry requirements. Offensive security is not beginner-friendly. Anyone who tells you otherwise is selling you something.</p><p><strong>Start here:</strong></p><p><strong>eJPT (eLearnSecurity Junior Penetration Tester)</strong> is the most realistic first cert for this path. It&#8217;s practical, affordable, and actually tests whether you can do the work - not just whether you memorized definitions. It teaches you to think like an attacker on real systems, which is the entire point.</p><p>After eJPT, <strong>CompTIA PenTest+</strong> is a solid intermediate step that many employers recognize.</p><p>Then comes OSCP. The conventional advice is to wait until you have extensive hands-on experience. My take is different.</p><p>Attempting OSCP early - even before you feel ready - signals something no other cert on this path does: that you are serious enough to attempt the hardest practical exam in offensive security before you need to. </p><p>Passing it early separates you from the hundreds of people who say they want to be a pentester but never commit.</p><p><strong>It will be harder without experience. But that difficulty is the point.</strong></p><p><strong>What to avoid:</strong> CISSP on this path is largely irrelevant until you move into management. Security+ is useful for foundational knowledge but won&#8217;t differentiate you for offensive roles.</p><div class="callout-block" data-callout="true"><p>Targeting offensive security? Comment below: <strong>[Target role | Current level | Certifications you already have]</strong> I'll tell you exactly what to focus on next.</p></div><div><hr></div><h2><strong>Path 2: Security Operations (SOC)</strong></h2><p><strong>Target roles:</strong> Security Analyst, Incident Responder</p><p>SOC is the most accessible entry point into cybersecurity for people without a deeply technical background. It&#8217;s also the path where Security+ actually earns its reputation.</p><p>Start here:</p><p><strong>CompTIA Security+</strong> is the right first cert for this path. It&#8217;s widely recognized, required or preferred in many SOC job postings, and covers the foundational knowledge you need to understand what you&#8217;re monitoring. It&#8217;s also DoD-approved, which matters if you&#8217;re targeting government or defense-adjacent roles.</p><p>After Security+, <strong>CompTIA CySA+</strong> is the natural next step. It focuses on threat detection, behavioral analytics, and incident response - exactly what SOC analysts do day to day.</p><p><strong>ISC2 CC</strong> is worth considering before Security+ if you want a free way to prove foundational knowledge while you prepare. It costs nothing to sit and covers the same core concepts.</p><p>What to avoid: Jumping to CISSP as a junior SOC analyst is putting the cart before the horse. Build your operational experience first.</p><div class="callout-block" data-callout="true"><p>On the SOC path? Drop your details below: <strong>[Target role | Current level | Certifications you already have]</strong> I&#8217;ll send you a personalized study plan.</p></div><div><hr></div><h2><strong>Path 3: Security Architecture and Engineering</strong></h2><p><strong>Target roles:</strong> Security Engineer, Cloud Security Engineer, Security Architect</p><p>This path splits depending on where you want to specialize - cloud or on-premise. Choose based on where the companies you want to work for actually operate.</p><p><strong>If your target is cloud:</strong></p><p><strong>AWS Security Specialty</strong> or <strong>Microsoft SC-900 / AZ-500</strong> are the right starting points, depending on which platform dominates your target market. Cloud security roles are growing fast, and cloud-specific certs signal something generic security certs don&#8217;t: That you understand the specific environment where most modern security work actually happens.</p><p><strong>If your target is general engineering:</strong></p><p><strong>CompTIA Security+</strong> gives you the baseline, then <strong>CompTIA CASP+</strong> signals you can operate at a senior level.</p><p>For software developers moving into security engineering: look at the <strong>CSSLP (Certified Secure Software Lifecycle Professional)</strong>. It&#8217;s underused and directly relevant to your background.</p><p><strong>What to avoid:</strong> Don&#8217;t collect cloud certs across multiple providers before going deep on one. Pick AWS or Azure based on your target companies and commit.</p><div class="callout-block" data-callout="true"><p><strong>Engineering or cloud security your direction?</strong> Comment below: <strong>[Target role | Current level | Certifications you already have]</strong> I&#8217;ll point you to the right next step.</p></div><div><hr></div><h2><strong>Path 4: Governance, Risk, and Compliance (GRC)</strong></h2><p><strong>Target roles:</strong> Security Auditor, Risk Manager, Compliance Specialist</p><p>This is the path I know best. And it&#8217;s the path where the certification advice you&#8217;ll find online is most consistently wrong.</p><p><strong>Start here:</strong></p><p><strong>ISC2 CC</strong> is free to sit, covers the fundamentals you need, and is backed by the same organization that owns CISSP. For someone with no prior cybersecurity certification, this is your starting point. It costs nothing except study time.</p><p><strong>After CC, the path splits based on your specialization:</strong></p><ul><li><p>Risk management: <strong>CRISC</strong> is the gold standard. Target it after your first GRC role.</p></li><li><p>Governance and management: <strong>CISM</strong> is the right target for mid-career.</p></li><li><p>Compliance and auditing: <strong>CISA</strong> is what auditors and compliance teams respect most.</p></li></ul><p><strong>CompTIA Security+</strong>&nbsp;works here, too, for beginners who want to validate foundational cybersecurity literacy that GRC employers want to see.</p><p><strong>What about CISSP on the GRC path?</strong> </p><p>Consider attempting it early - even before you feel fully ready. GRC is the path most directly aligned with how CISSP thinks. </p><p>The exam is built around risk management, governance, policy, and business decision-making. <br><br><strong>That is exactly what GRC professionals do every day.</strong>  </p><p>Passing the CISSP exam early signals that you think at a strategic level before you are even required to. Combined with CC and your first GRC role, it separates you from every other candidate who is still waiting until they feel ready.</p><p><strong>What to avoid: A</strong>ttempting CISSP before you have CC and a good understanding of the fundamentals. Build the foundation first. Then go for it.</p><div class="callout-block" data-callout="true"><p>On the GRC path? Drop your details below: <strong>[Target role | Current level | Certifications you already have]</strong> I'll build you a personalized study plan.</p></div><div><hr></div><h2><strong>Path 5: Management and Leadership</strong></h2><p>Target roles: Security Program Manager, Security Director, CISO</p><p>One cert dominates this path: <strong>CISSP.</strong></p><p>The conventional advice is to wait until you have five years of experience. My advice is different.</p><p>Consider passing it early anyway.</p><p>CISSP Associate means you&#8217;ve passed the exam before fulfilling the experience requirement. You have six years to complete it afterward.</p><p>When a hiring manager sees CISSP Associate on a resume from someone with two years of experience, they don&#8217;t think &#8220;this person jumped ahead.&#8221; They think &#8220;this person is serious.&#8221;</p><p>It won&#8217;t replace experience. But it will open doors that a generic technical cert never will.</p><p>What to focus on while you build that experience: understanding how security decisions connect to business goals. The exam tests judgment, not just knowledge. Study accordingly.</p><div class="callout-block" data-callout="true"><p>Thinking about the management path? Comment below: <strong>[Target role | Current level | Certifications you already have]</strong> I&#8217;ll tell you if your timing makes sense and what to focus on first.</p></div><div><hr></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!az5s!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!az5s!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 424w, https://substackcdn.com/image/fetch/$s_!az5s!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 848w, https://substackcdn.com/image/fetch/$s_!az5s!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 1272w, https://substackcdn.com/image/fetch/$s_!az5s!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!az5s!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png" width="1456" height="851" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:851,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:189114,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/196164663?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!az5s!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 424w, https://substackcdn.com/image/fetch/$s_!az5s!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 848w, https://substackcdn.com/image/fetch/$s_!az5s!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 1272w, https://substackcdn.com/image/fetch/$s_!az5s!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F157440fb-3080-4ef3-9f89-d14b4123b280_1472x860.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><strong>The honest truth about certifications</strong></h2><p>A certification will not get you hired on its own.</p><p>It opens the door. You still have to walk through it.</p><p>What actually gets you hired is showing up to interviews knowing how to think, not just what to memorize. It&#8217;s having a resume that tells a coherent story. It&#8217;s being able to explain your reasoning clearly when a hiring manager puts a scenario in front of you.</p><p>The right certification for your path removes one barrier. It proves you took it seriously enough to invest time and money into a credential that matters for the direction you chose.</p><p>That&#8217;s it. One barrier removed.</p><p>The rest is on you.</p><p><strong>Pick your path. Pick your cert. Start this week.</strong></p><div><hr></div><p><strong>The Certification Tells You What to Study. The Blueprint Tells You What to Do.</strong></p><p>Knowing which certification fits your path is only half the answer.</p><p>The other half is knowing what to actually do in the next 90 days. Which skills to build first. How to position your background for cybersecurity roles. How to build a resume that gets read. How to walk into interviews and explain your thinking clearly.</p><p>That&#8217;s what the 90-Day Cybersecurity Job Blueprint covers.</p><p>&#128073; <strong><a href="https://decodedsecurity.gumroad.com/l/CybersecurityBlueprint">Get the Blueprint - &#8364;9.99</a></strong></p><p>4.8 stars. 45 people have used it. 14-day money-back guarantee.</p><div class="callout-block" data-callout="true"><p>&#128172; Comment below with your details, and I'll tell you if you're on the right track: <strong>[Target role | Current level | Certifications you already have]</strong></p></div><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/i-have-watched-people-waste-4000/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/i-have-watched-people-waste-4000/comments"><span>Leave a comment</span></a></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to <strong>Decoded Security</strong> for a new article every week.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2></h2>]]></content:encoded></item><item><title><![CDATA[GRC for Beginners: The Exact Study Plan I’d Follow If I Had to Start From Scratch]]></title><description><![CDATA[Break into cybersecurity GRC without wasting months on random topics. This step-by-step roadmap shows you what to learn, how to think, and how to build skills that actually matter in the real-world.]]></description><link>https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Tue, 28 Apr 2026 20:01:34 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/d522af50-2ef3-458c-a61c-f2bef6d12e76_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Do you want to focus on cybersecurity GRC but don't know where to start? </p><p>You feel that urge to do something, but you always end up watching YouTube videos on some random concept, and you feel like you&#8217;re getting nowhere.</p><p>In cybersecurity, a lack of direction is more dangerous than a lack of knowledge.</p><p>I have spent years studying random topics that didn&#8217;t get me any closer to my goal.</p><p>That&#8217;s why I created a study plan, which will help you use your time much more efficiently. </p><p>You will no longer focus on &#8220;What should I learn?&#8221; You will spend your time learning what matters.</p><div class="callout-block" data-callout="true"><p>Comment your target role + your current level, and I&#8217;ll tell you exactly what to focus on next.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study/comments"><span>Leave a comment</span></a></p></div><h2>GRC (Governance, Risk, Compliance)</h2><p><strong>GRC (Governance, Risk, Compliance)</strong> is one of the <strong>5 cybersecurity paths</strong> you can choose. </p><div class="callout-block" data-callout="true"><p>If you&#8217;re not familiar with the cybersecurity paths, read this first!</p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;c7d94898-4f19-4840-893b-d3edfcdfe675&quot;,&quot;caption&quot;:&quot;Do you want to break into cybersecurity, but feel confused by all the different roles?&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;How to Choose the Right Cybersecurity Role Before You Waste Time and Money on the Wrong Certifications&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-01-14T11:11:59.523Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hrEi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/how-to-choose-the-right-cybersecurity&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:184030241,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:53,&quot;comment_count&quot;:38,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div></div><p>But before you deep-dive into the materials I am about to provide, make sure this path is really for you. </p><p>You don&#8217;t want to waste weeks and months learning things that won&#8217;t get you any closer to your goal. </p><p><strong>It&#8217;s a great fit if you:</strong></p><ul><li><p>Prefer <strong>structured thinking over deep technical troubleshooting</strong></p></li><li><p>Like understanding <strong>how systems, risks, and business decisions connect</strong></p></li><li><p>Enjoy <strong>analysis, documentation, and decision-making</strong></p></li><li><p>Want to work closer to <strong>business, strategy, and leadership</strong></p></li></ul><p><strong>It&#8217;s especially convenient if you:</strong></p><ul><li><p>Are you switching from <strong>business, law, or management</strong></p></li><li><p>Don&#8217;t want to spend years becoming deeply technical</p></li></ul><p>As you probably know, GRC is, in general, less technical, but it doesn&#8217;t make it any less valuable. </p><p>This is where business and cybersecurity meet, and the decisions made at this level influence the whole company.</p><h2>The Decoded Security GRC Roadmap</h2><p>This roadmap has three main goals. </p><p>First, make sure that you understand the cybersecurity basics that you need for any role in the field. </p><p>Second, make sure you understand the basics of cybersecurity GRC.</p><p>Third, force you to apply the theoretical knowledge and challenge yourself.</p><blockquote><p>What is your target role? Let me know in the comments and let&#8217;s discuss your next steps!</p></blockquote><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/grc-for-beginners-the-exact-study/comments"><span>Leave a comment</span></a></p><p>Here&#8217;s the exact roadmap I would follow if I had to start again.</p><h2>Step 1: Build the right foundation</h2><p>Before you go deeper into GRC, you need to understand how cybersecurity <em>actually works</em> and be familiar with the fundamentals, which underpin everything.</p><p>To make this easier, I put the key concepts into one place.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ylp3!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ylp3!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 424w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 848w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ylp3!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png" width="1456" height="1024" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1024,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:668940,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:&quot;&quot;,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194920150?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!ylp3!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 424w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 848w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!ylp3!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8ed54e73-b612-4d2c-9d37-5a836ac3eb8e_1920x1350.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="callout-block" data-callout="true"><p>Download it here for FREE: <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">Cybersecurity Fundamentals: The 10 Concepts That Get You Through 90% of Interviews</a></p></div><p><strong>Make sure to understand these especially: </strong></p><ol><li><p><a href="https://cybersecerich.substack.com/p/threat-risk-vulnerability-why-cissp?r=4abibl">Threat &#8800; Risk &#8800; Vulnerability: Why CISSP Basics Matter More Than You Think</a></p></li><li><p><strong><a href="https://cybersecerich.substack.com/p/my-first-week-of-cissp-prep-what?r=4abibl">My First Week of CISSP Prep &#8211; What I&#8217;ve Learned So Far</a></strong></p></li><li><p><a href="https://cybersecerich.substack.com/p/security-policies-standards-and-procedures?r=4abibl">Security Policies, Standards, and Procedures: The Boring Stuff That Actually Saves You</a></p></li><li><p><strong><a href="https://cybersecerich.substack.com/p/cybersecurity-controls-from-zero?r=4abibl">Cybersecurity Controls from Zero to Hero</a></strong></p></li></ol><h2>Step 2: Start focusing on GRC topics</h2><p>Now shift from &#8220;what is cybersecurity&#8221; &#8594; &#8220;how companies manage it.&#8221;</p><p><strong>Focus on:</strong></p><ul><li><p><strong>Policies vs standards vs procedures</strong></p><ul><li><p><a href="https://cybersecerich.substack.com/p/security-policies-standards-and-procedures?r=4abibl">Security Policies, Standards, and Procedures: The Boring Stuff That Actually Saves You</a></p></li></ul></li><li><p>Access Control methods</p><ul><li><p><a href="https://www.decodedsecurity.com/p/access-controls">Access Controls: Who Gets the Keys?</a></p></li></ul></li><li><p><strong>Risk management:</strong></p><ul><li><p><strong><a href="https://www.decodedsecurity.com/p/quantitative-risk-analysis-let-the">Quantitative Risk Analysis: Let The Numbers Do All The Talking</a></strong></p></li><li><p><strong><a href="https://www.decodedsecurity.com/p/how-risk-management-frameworks-keep">How Risk Management Frameworks Keep Systems Secure</a></strong></p></li><li><p><a href="https://www.decodedsecurity.com/p/risk-management-managing-risks-in">Risk Management: Managing risks in six steps</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/3-things-that-surprise-me-about-cissp">3 things that surprise me about CISSP Domain 1: Security and Risk Management</a></p></li></ul></li><li><p><strong>Data Lifecycle</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/the-data-lifecycle-from-creation">The Data Lifecycle: From Creation to Secure Destruction</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-storage-mistake-90-of-people">The Storage Mistake 90% of People Make (Until It&#8217;s Too Late)</a></p></li></ul></li><li><p><strong>Disaster Recovery and Business Continuity</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/floods-cybersecurity-and-survival">Floods, Cybersecurity, and Survival Strategies And the Surprising Link Between Them</a></p></li></ul></li><li><p><strong>Intellectual Property &amp; Licensing</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/why-we-need-to-be-lawyers-intellectual">Why We Need to Be Lawyers: Intellectual Property &amp; Compliance in Cybersecurity</a></p></li></ul></li><li><p><strong>Laws, Legislation and Contracts</strong></p><ul><li><p><a href="https://www.decodedsecurity.com/p/15-laws-every-cissp-candidate-must">15+ Laws Every CISSP Candidate Must Know: The Only Legal Guide You Need</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-nines-arent-enough-the-7-things">Stop Reading SLAs Wrong: The 7 Critical Topics You&#8217;re Missing</a></p></li></ul></li><li><p>(Reality check - optional)</p><ul><li><p><a href="https://www.decodedsecurity.com/p/6-myths-that-are-killing-corporate">6 Myths That Are Killing Corporate Cybersecurity</a></p></li></ul></li></ul><blockquote><p><strong>Do you struggle with any of these concepts?<br></strong>Comment the one you don&#8217;t understand, and I&#8217;ll break it down for you.</p></blockquote><h2>Step 3: Try practical examples</h2><p>There are two articles in which I analyzed a real-world scenario. </p><ul><li><p><strong><a href="https://www.decodedsecurity.com/p/quantitative-risk-analysis-let-the">Quantitative Risk Analysis: Let The Numbers Do All The Talking</a></strong></p></li><li><p><a href="https://www.decodedsecurity.com/p/risk-management-managing-risks-in">Risk Management: Managing risks in six steps</a></p></li></ul><p>The task is very simple. Let&#8217;s use the AI for something useful and tell ChatGPT to create practice scenarios based on my articles. </p><div class="callout-block" data-callout="true"><p><strong>Perform the analysis, send it to me at </strong><em><strong>erich.winkler@decodedsecurity.com, and comment &#8220;Analysis&#8221;</strong></em></p></div><p>I will send you feedback, and we can discuss your approach. </p><h2>Conclusion</h2><p>Most people don&#8217;t fail in GRC because it&#8217;s too hard. They fail because they never had a plan.</p><p>They jump between random topics, watch endless videos, and confuse activity with progress.</p><p>That&#8217;s how months turn into years&#8230; with nothing to show for it.</p><p>The Decoded Security roadmap fixes this. It gives you structure that I wish I had a couple of years back.</p><p><strong>It tells you:</strong></p><ul><li><p>what to learn</p></li><li><p>in what order</p></li><li><p>and how to actually apply it</p></li></ul><p><strong>You&#8217;ll start thinking like someone who can:</strong></p><ul><li><p>identify real risks</p></li><li><p>make informed decisions</p></li><li><p>and bring value to a business</p></li></ul><p>And that&#8217;s what this field is really about.</p><p>You already have the roadmap. Now it&#8217;s about execution. </p><p><strong>See you in the comments!</strong> </p><p>Thank you for reading Decoded Security! </p><p>Erich</p><blockquote><p><strong>Comment your target role + your current level. I&#8217;ll give you your next step.</strong></p></blockquote><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">More than 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let us help you achieve your goals!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong><em><strong><a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap"><br><br></a></strong></em><strong>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></p><p><strong>Let&#8217;s learn and grow together!</strong></p>]]></content:encoded></item><item><title><![CDATA[Testing Disaster Recovery Plans: Why “Having a Plan” Isn’t Enough to Pass CC or CISSP]]></title><description><![CDATA[If you think having a disaster recovery plan is enough, you&#8217;re already making a mistake. The exam is designed to expose that. This guide shows you what most candidates miss, and why they fail.]]></description><link>https://www.decodedsecurity.com/p/testing-disaster-recovery-plans-why</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/testing-disaster-recovery-plans-why</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Thu, 23 Apr 2026 09:34:01 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/756a551f-99b8-4a09-aded-832bf41740c3_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<blockquote><p>&#128216; <em>Essential for anyone preparing for the ISC2 CC or CISSP exam</em></p></blockquote><p>I&#8217;ve spoken with many people who <strong>passed</strong> the <strong>ISC2 exams</strong>, and I've also spoken with many who <strong>failed</strong>. And every time I meet someone who failed, I take notes. </p><p>And for some reason, this topic comes up very often. Even though it isn&#8217;t anything complex, it is absolutely essential in real-world practice. </p><blockquote><p>That&#8217;s why I decided to include it in my materials and make sure that no one reading Decoded Security will fail this topic ever again.</p></blockquote><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">More than 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let us help you achieve your goals!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Testing Disaster Recovery Plans</h2><p>You studied disaster recovery. You know what RTO (Recovery Time Objective) and RPO (Recovery Point Objective) mean.</p><p>You understand backups, the data security lifecycle, and you can tell the difference between a hot site and a warm site. </p><blockquote><p>If you&#8217;re not familiar with those terms, you can find links to my previous articles explaining all of those topics at the end of this article. </p></blockquote><p>You feel ready to answer all disaster recovery questions that might come up in the ISC2 exams. </p><p>And you still might fail. And you wouldn&#8217;t be the first, nor the last.</p><p>People are usually so focused on creating disaster recovery plans and business impact analysis that they forget one crucial part.</p><blockquote><p><strong>A plan is useless unless it&#8217;s regularly tested</strong>.</p></blockquote><p>And this is exactly where exam questions are designed to catch you.</p><p>Because in both the ISC2 Certified in Cybersecurity (CC) and CISSP, one principle shows up again and again:</p><blockquote><p>A plan that hasn&#8217;t been tested cannot be trusted.</p></blockquote><h2>The hierarchy of disaster recovery testing</h2><p>Both for the exams and the real-world practice, you need to know two things. </p><ol><li><p>Different types of exercises to test DR plans</p></li><li><p>How to balance the assurance with the cost</p></li></ol><p>As always, the more thorough you are, the more money it costs. And stakeholders won't like that.</p><p>Let&#8217;s take it from the least expensive to the most. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!dik2!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!dik2!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 424w, https://substackcdn.com/image/fetch/$s_!dik2!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 848w, https://substackcdn.com/image/fetch/$s_!dik2!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 1272w, https://substackcdn.com/image/fetch/$s_!dik2!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!dik2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png" width="1456" height="1289" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1289,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:191869,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/186845585?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!dik2!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 424w, https://substackcdn.com/image/fetch/$s_!dik2!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 848w, https://substackcdn.com/image/fetch/$s_!dik2!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 1272w, https://substackcdn.com/image/fetch/$s_!dik2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F29f73113-8745-4bb2-81b2-a569fc800d66_1699x1504.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h3>1. Checklist Test</h3><p><strong>Purpose</strong><br>Validate that the disaster recovery plan is complete and up to date.</p><p><strong>How it is performed</strong></p><ul><li><p>The DR plan is distributed to functional managers</p></li><li><p>Each manager reviews their section independently</p></li><li><p><strong>They verify:</strong></p><ul><li><p>Contact details</p></li><li><p>Roles and responsibilities</p></li><li><p>Procedures</p></li></ul></li><li><p>Feedback is collected and consolidated</p></li><li><p>The plan is updated accordingly</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Easy and fast to perform</p></li><li><p>Identifies missing steps or outdated information</p></li><li><p>Low cost, no operational impact</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>No real execution</p></li><li><p>No validation of actual recovery capability</p></li><li><p>Gives a false sense of security</p></li></ul><p><strong>When to use</strong></p><ul><li><p>Early stages of DR planning</p></li><li><p>Regular reviews (e.g., quarterly updates)</p></li><li><p>Before more advanced testing</p></li></ul><blockquote><p><strong>Exam insight:</strong> This is the weakest form of testing, but it is conveninent as it can be perform regularly without operational impact.</p></blockquote><h3>2. Structured Walkthrough</h3><p><strong>Purpose</strong><br>Validate logical flow and completeness of the plan as a group.</p><p><strong>How it is performed</strong></p><ul><li><p>Key stakeholders meet in a structured session</p></li><li><p>The plan is reviewed step by step</p></li><li><p>A facilitator walks the group through:</p><ul><li><p>Sequence of actions</p></li><li><p>Dependencies between teams</p></li></ul></li><li><p>Participants discuss:</p><ul><li><p>What happens next</p></li><li><p>What might be missing</p></li></ul></li><li><p>Gaps and conflicts are documented and resolved</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Identifies inconsistencies and gaps</p></li><li><p>Improves team understanding</p></li><li><p>Encourages collaboration across departments</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>Still theoretical</p></li><li><p>No real system or process validation</p></li></ul><p><strong>When to use</strong></p><ul><li><p>After checklist review</p></li><li><p>When updating or improving the plan</p></li><li><p>Before running simulations</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Preparing for any cybersecurity certification exam? Subscribe to <strong>Decoded Security</strong> and learn for FREE!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3>3. Tabletop Exercise</h3><p><strong>Purpose</strong><br>Simulate decision-making during a disaster scenario.</p><p><strong>How it is performed</strong></p><ul><li><p>A realistic scenario is introduced (e.g., ransomware, data center outage)</p></li><li><p>Participants assume their real roles</p></li><li><p>A facilitator drives the scenario forward in phases</p></li><li><p>Teams explain:</p><ul><li><p>What actions they would take</p></li><li><p>Who they would contact</p></li><li><p>How decisions are made</p></li></ul></li><li><p>Injects (new developments) are added to simulate pressure</p></li><li><p>Observers record gaps and decision issues</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Tests roles and responsibilities</p></li><li><p>Improves communication and coordination</p></li><li><p>Reveals gaps in procedures and escalation paths</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>No real technical execution</p></li><li><p>Does not validate recovery time or system restoration</p></li></ul><p><strong>When to use</strong></p><ul><li><p>Training teams</p></li><li><p>Testing incident response + DR coordination</p></li><li><p>Preparation for more advanced tests</p></li></ul><blockquote><p><strong>Exam trap:</strong> Remember that nothing is actually executed in this type of testing!</p></blockquote><h3>4. Simulation Test</h3><p><strong>Purpose</strong><br>Test actual execution of disaster recovery procedures in a controlled scenario.</p><p><strong>How it is performed</strong></p><ul><li><p>A specific disaster scenario is defined</p></li><li><p>Teams execute actual recovery procedures:</p><ul><li><p>Restore systems</p></li><li><p>Recover data</p></li><li><p>Activate DR processes</p></li></ul></li><li><p>Real tools and systems are used</p></li><li><p>Activities are monitored and timed</p></li><li><p>Issues (failures, delays, confusion) are recorded</p></li><li><p>Results are analyzed after the exercise</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Validates processes and responsibilities</p></li><li><p>Reveals real operational issues</p></li><li><p>Provides measurable insights (time, errors, gaps)</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>Requires coordination and effort</p></li><li><p><strong>May impact operations if not controlled</strong></p></li></ul><p><strong>When to use</strong></p><ul><li><p>After tabletop exercises</p></li><li><p>When validating readiness of teams and processes</p></li></ul><h3>5. Parallel Test</h3><p><strong>Purpose</strong><br>Validate recovery capability by running systems at an alternate site alongside production.</p><p><strong>How it is performed</strong></p><ul><li><p>Systems are restored or activated at the alternate site</p></li><li><p>Data is replicated or restored to that environment</p></li><li><p>The alternate system runs in parallel with production</p></li><li><p>Processing is performed and results are compared</p></li><li><p>Performance and consistency are validated</p></li><li><p>Production systems remain active throughout</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Tests the infrastructure and data replication</p></li><li><p>No disruption to live operations</p></li><li><p>High level of confidence without full risk</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>Resource-intensive</p></li><li><p>Doesn&#8217;t fully simulate real failure conditions</p></li></ul><p><strong>When to use</strong></p><ul><li><p>When testing alternate sites</p></li><li><p>Before conducting full interruption tests</p></li><li><p>In mature DR environments</p></li></ul><h3>6. Full Interruption Test</h3><p><strong>Purpose</strong><br>Validate complete disaster recovery by switching all operations to the alternate site.</p><p><strong>How it is performed</strong></p><ul><li><p>Production systems are intentionally shut down</p></li><li><p>Operations are switched entirely to the alternate site</p></li><li><p>All business processes run from the recovery environment</p></li><li><p>Users interact with the DR systems as if it were real production</p></li><li><p>Recovery time and performance are measured</p></li><li><p>After testing, systems are restored back to normal operations</p></li></ul><p><strong>Benefits</strong></p><ul><li><p>Highest level of assurance</p></li><li><p>Fully tests systems, people, and processes</p></li><li><p>Provides real recovery metrics</p></li></ul><p><strong>Drawbacks</strong></p><ul><li><p>High risk</p></li><li><p>Operational disruption</p></li><li><p>Expensive and complex</p></li></ul><p><strong>When to use</strong></p><ul><li><p>Mature organizations with strong DR capabilities</p></li><li><p>Critical systems requiring full validation</p></li><li><p>Infrequently (e.g., annually)</p></li></ul><blockquote><p><strong>Exam insight:</strong> This provides the strongest validation and should be used only if the highest level of assurance is required.</p></blockquote><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe today for FREE and get the <a href="https://decodedsecurity.gumroad.com/l/InterviewGuide">Cybersecurity Interview Cheat Sheet</a> for FREE as a welcome gift!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><blockquote><p><strong>Printable cheat sheet - perfect for the exam.</strong></p></blockquote><div class="file-embed-wrapper" data-component-name="FileToDOM"><div class="file-embed-container-reader"><div class="file-embed-container-top"><image class="file-embed-thumbnail-default" src="https://substackcdn.com/image/fetch/$s_!0Cy0!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack.com%2Fimg%2Fattachment_icon.svg"></image><div class="file-embed-details"><div class="file-embed-details-h1">Decoded Security Dr Testing Cheat Sheet</div><div class="file-embed-details-h2">24.1KB &#8729; PDF file</div></div><a class="file-embed-button wide" href="https://www.decodedsecurity.com/api/v1/file/ccec7bcf-9a06-4d73-a4c0-cdaff6c3767a.pdf"><span class="file-embed-button-text">Download</span></a></div><a class="file-embed-button narrow" href="https://www.decodedsecurity.com/api/v1/file/ccec7bcf-9a06-4d73-a4c0-cdaff6c3767a.pdf"><span class="file-embed-button-text">Download</span></a></div></div><h2>Conclusion</h2><p>This is everything you need to correctly answer disaster recovery testing questions on the ISC2 Certified in Cybersecurity (CC) and CISSP exams, and more importantly, to choose the right level of assurance in real-world practice.</p><p>I have one last tip for you. Always complete the previous level before moving to the next. Each level builds on the previous one.</p><ul><li><p>You review before you simulate</p></li><li><p>You simulate before you execute</p></li><li><p>You execute before you fully interrupt</p></li></ul><p>Skipping levels doesn&#8217;t make you efficient. That&#8217;s a common trick in the exam.</p><p><strong>Thank you for reading Decoded Security!</strong></p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap</a></strong><em><strong><a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap"><br><br></a></strong></em><strong>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></p><p><strong>Let&#8217;s learn and grow together!</strong></p><h2>Disaster Recovery and Business Continuity - Study resources</h2><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;e5a48344-9f75-4bbc-a9e3-7ca37dbf0003&quot;,&quot;caption&quot;:&quot;Pass Certifications Without Wasting Months or Spending $1,000+ on Courses&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;md&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Decoded Security Certification Hub&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-07-29T13:25:44.524Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!sQrU!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd675538d-b494-4f19-a5b8-e52dd8e7ca62_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/certification-hub&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:169206790,&quot;type&quot;:&quot;page&quot;,&quot;reaction_count&quot;:0,&quot;comment_count&quot;:0,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;c9d852e2-5d33-4252-a24a-6d90d5f9ec22&quot;,&quot;caption&quot;:&quot;Let me guess, you clicked on this because floods and cybersecurity sounded like a weird combination. After all, what does setting up firewalls have to do with rising water levels?&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Floods, Cybersecurity, and Survival Strategies And the Surprising Link Between Them&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-08-18T08:00:35.097Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b6c0acfd-1b08-4ca2-83de-b127054a0cf3_1456x1048.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/floods-cybersecurity-and-survival&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:162834712,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:14,&quot;comment_count&quot;:0,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;27fb6753-af18-403c-a984-81d8fbe3f905&quot;,&quot;caption&quot;:&quot;Information security is, at its core, about protecting data.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;The Data Lifecycle: From Creation to Secure Destruction&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-09-01T08:02:33.368Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/12ab646c-c99c-4b9e-a99d-00b2315c209d_1456x1048.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/the-data-lifecycle-from-creation&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:171663402,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:9,&quot;comment_count&quot;:2,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;ef0e0538-1f06-4b82-b64b-dd52c8d2ac3f&quot;,&quot;caption&quot;:&quot;Imagine all your data gone.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;The Storage Mistake 90% of People Make (Until It&#8217;s Too Late)&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-11-14T17:47:14.615Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/db555795-b66d-44d1-b8c8-29857fdd6c37_1456x1048.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/the-storage-mistake-90-of-people&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:178872298,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:4,&quot;comment_count&quot;:2,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div>]]></content:encoded></item><item><title><![CDATA[Entry-Level Cybersecurity Jobs Don’t Exist -Here’s Exactly What to Do Instead]]></title><description><![CDATA[Cybersecurity is one of the hardest fields to get into. Whether you are a student or a career switcher, this will help you create a personalized strategy how to get break that entry level barrier.]]></description><link>https://www.decodedsecurity.com/p/entry-level-cybersecurity-jobs-dont</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/entry-level-cybersecurity-jobs-dont</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Sat, 18 Apr 2026 08:41:23 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/f5a38090-3e97-4ce9-9782-d9f2d5bd78b8_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Cybersecurity is one of the hardest fields to get into. <br>And there is one specific reason for it. </p><blockquote><p><strong>Most &#8220;entry-level&#8221; cybersecurity jobs don&#8217;t actually exist.</strong></p></blockquote><p>I know, you don&#8217;t believe me right now. </p><p>There are many roles, such as Junior SOC Analyst, Entry-Level Security Engineer, and Associate Cybersecurity Specialist</p><p><strong>Well, there are. </strong>However, there is one crucial misunderstanding. </p><blockquote><p>&#8220;Entry-level&#8221; doesn&#8217;t mean entry into tech, it means <em>entry into security</em></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!-28g!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!-28g!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 424w, https://substackcdn.com/image/fetch/$s_!-28g!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 848w, https://substackcdn.com/image/fetch/$s_!-28g!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 1272w, https://substackcdn.com/image/fetch/$s_!-28g!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!-28g!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png" width="1456" height="782" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/feb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:782,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:146142,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194505221?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!-28g!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 424w, https://substackcdn.com/image/fetch/$s_!-28g!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 848w, https://substackcdn.com/image/fetch/$s_!-28g!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 1272w, https://substackcdn.com/image/fetch/$s_!-28g!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffeb64a65-bf84-4042-a6a8-bff73f4e83b6_1708x917.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"><strong>No experience?</strong> Subscribe to <strong>Decoded Security</strong> and learn how to get experience even without getting a first job!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p><strong>They&#8217;re designed for people who already have:</strong></p><ul><li><p>basic IT experience</p></li><li><p>understanding of systems and networks</p></li><li><p>strong theoretical knowledge of cybersecurity</p></li><li><p>some exposure to real-world environments</p></li></ul><div class="callout-block" data-callout="true"><p><em>No one in a different industry would use the term &#8220;entry-level&#8221;. But that&#8217;s the reality of the cybersecurity market.</em> </p></div><p>Does it mean you should give up? </p><p>NO! </p><p>It only means you need to change your strategy. And I will show you exactly how. </p><p><strong>Remember:</strong>&nbsp;The stronger the entry-level barrier, the more of a benefit it becomes once you break it!  </p><div class="callout-block" data-callout="true"><p>If you&#8217;re a Software Developer, I have created 5 specific steps you can take to break this barrier! <br></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;88704a1d-9461-46ff-8f2b-25c34f8dae9f&quot;,&quot;caption&quot;:&quot;I don&#8217;t know your story, but let me guess why you opened this article..&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;5 Specific Steps For Software Developers To Get a Job in Cybersecurity In 6 Months Without Starting Over&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-01-07T13:02:09.384Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/520e0e23-ea1b-4bd2-8f07-cb9922a82646_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/5-specific-steps-for-software-developers&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:183768217,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:15,&quot;comment_count&quot;:7,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div></div><h2>Why You Should Continue Reading</h2><p>If you&#8217;re new to cybersecurity, there&#8217;s a hard truth you need to face:</p><blockquote><p>The game is stacked against you at the beginning.</p></blockquote><p>You need experience to get an &#8220;entry-level&#8221; job.</p><p>Which sounds impossible.</p><p><strong>But here&#8217;s the good news:</strong></p><blockquote><p>Demand for cybersecurity professionals is still growing.</p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!SyS1!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!SyS1!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 424w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 848w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 1272w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!SyS1!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png" width="498" height="418.99038461538464" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:700,&quot;width&quot;:832,&quot;resizeWidth&quot;:498,&quot;bytes&quot;:35039,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194505221?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fee5e3215-5c67-400f-b703-43563e5e3167_832x700.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!SyS1!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 424w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 848w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 1272w, https://substackcdn.com/image/fetch/$s_!SyS1!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F890e075e-955d-4c86-9fc5-d8d56be7a362_832x700.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Despite all the talk about AI replacing jobs, companies are struggling to protect their systems.</p><p>And without security, their business doesn&#8217;t survive.</p><p>Which means:</p><blockquote><p>This is still one of the best fields you can enter, if you approach it the right way.</p></blockquote><p>So instead of guessing&#8230;</p><p>Let me show you exactly what to do instead.</p><h2>Why You&#8217;re Not Getting Hired</h2><p>If the first answer that comes to your mind is you&#8217;re not smart enough..just stop!</p><p>It&#8217;s not because you&#8217;re not smart enough.</p><p>It&#8217;s not because cybersecurity is &#8220;too difficult.&#8221;</p><p>It&#8217;s because you&#8217;re competing against people who are already closer to the field than you are. </p><p><strong>From an employer&#8217;s perspective, the choice is obvious:</strong></p><blockquote><p>Hire someone who can contribute immediately, or someone who still needs months of training.</p></blockquote><p>And cybersecurity is not a field where companies like to take risks.</p><p>So how do we help you get closer to the field and convince employers to see what you can bring to the table?</p><p>You actually need only one thing: <strong>STRATEGY.</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">More than 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let us help you achieve your goals!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>What People Call &#8220;Strategy&#8221;</h2><p>Most people respond to this the wrong way.</p><p>They try to &#8220;fix&#8221; the problem by:</p><ul><li><p>collecting more certifications</p></li><li><p>buying and watching more expensive courses</p></li><li><p>waiting until they feel &#8220;ready&#8221;</p></li></ul><p>How do I know? Because I&#8217;ve been there.</p><p>And I know spending money and watching videos feels productive.</p><p>But it doesn&#8217;t move you closer to getting hired.</p><p><strong>At least not if you&#8217;re doing it without a clear direction.</strong></p><blockquote><p>You need to build an image that you are capable of doing something in the real environment.</p></blockquote><h2>Get Direction FIRST</h2><p>That was enough theory and general fluff.</p><p>Let&#8217;s answer the most important questions: </p><ol><li><p><strong>What is it you need to do to break that entry-level barrier?</strong></p></li><li><p>How do you build that image, saying I am useful and suitable for the role?</p></li></ol><p><strong>The first step is this:</strong></p><blockquote><p><strong>Know exactly which role you&#8217;re aiming for.</strong></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!aTZj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!aTZj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 424w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 848w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 1272w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!aTZj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png" width="1456" height="487" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:487,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:387525,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194505221?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!aTZj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 424w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 848w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 1272w, https://substackcdn.com/image/fetch/$s_!aTZj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8859358e-543a-4052-9f47-b63c27f15a00_3542x1185.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Without that, nothing else works.</p><p>Because if you don&#8217;t know where you&#8217;re going:</p><ul><li><p>you learn random things</p></li><li><p>you collect irrelevant certifications</p></li><li><p>you build skills that don&#8217;t align with any real job</p></li></ul><p>And from an employer&#8217;s perspective?</p><p><strong>You look unfocused.</strong></p><div class="callout-block" data-callout="true"><p>So, before you spend another dollar on courses or certifications, ask yourself:</p><p>&#8220;Which role am I actually preparing for?&#8221;</p></div><p>Because your entire strategy depends on that answer.</p><div><hr></div><p><strong>If you&#8217;re not sure yet, start here:</strong></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;03c5e13f-5165-4565-b8f0-9643f7e4e171&quot;,&quot;caption&quot;:&quot;Do you want to break into cybersecurity, but feel confused by all the different roles?&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;How to Choose the Right Cybersecurity Role Before You Waste Time and Money on the Wrong Certifications&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-01-14T11:11:59.523Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hrEi!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4c9060ba-5ff4-4778-95c3-3f399d0dfdda_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/how-to-choose-the-right-cybersecurity&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:184030241,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:48,&quot;comment_count&quot;:28,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><p><em>(This will give you the clarity most people skip and pay for later.)</em></p><div><hr></div><div class="callout-block" data-callout="true"><p><strong>Question: </strong>What is your direction?</p><p>If you leave a comment, I will send you free study resources based on your dream role!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/entry-level-cybersecurity-jobs-dont/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/entry-level-cybersecurity-jobs-dont/comments"><span>Leave a comment</span></a></p></div><h2>3 Specific Steps You Should Focus On</h2><p>Great, now you have the direction. And honestly, this is where most people stop. </p><p>They understand the problem, but they don&#8217;t do anything about it.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!h-b4!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!h-b4!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 424w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 848w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 1272w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!h-b4!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png" width="728" height="181" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:362,&quot;width&quot;:1456,&quot;resizeWidth&quot;:728,&quot;bytes&quot;:376723,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:&quot;&quot;,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194505221?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!h-b4!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 424w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 848w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 1272w, https://substackcdn.com/image/fetch/$s_!h-b4!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F810fdc4b-89cc-407e-8a71-5e6f55fb4b11_4572x1136.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p>In this section, I&#8217;ll break down the <strong>exact 3-steps</strong> you should take to get a job in cybersecurity.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!B1yW!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!B1yW!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 424w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 848w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 1272w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!B1yW!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png" width="1456" height="154" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:154,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:42617,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/194505221?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!B1yW!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 424w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 848w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 1272w, https://substackcdn.com/image/fetch/$s_!B1yW!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe1ecfef8-9002-4c68-a0c8-8b52dd917eaa_2465x261.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div>
      <p>
          <a href="https://www.decodedsecurity.com/p/entry-level-cybersecurity-jobs-dont">
              Read more
          </a>
      </p>
   ]]></content:encoded></item><item><title><![CDATA[Understand Biometric Authentication Like a CISSP Expert in Under 10 Minutes]]></title><description><![CDATA[Biometrics are considered the gold standard of authentication. But if you don&#8217;t understand FRR, FAR, and CER, you will get CISSP questions wrong. Fix that in 10 minutes.]]></description><link>https://www.decodedsecurity.com/p/understand-biometric-authentication</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/understand-biometric-authentication</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Tue, 14 Apr 2026 11:14:15 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/b4afbe57-6418-4603-bdd3-d93e058e3c9f_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>One of the biggest problems in cybersecurity is actually quite simple:</p><p><strong>How do you prove someone is who they claim to be?</strong></p><p>Because if you get this wrong, nothing else matters.</p><p>It doesn&#8217;t matter how well your whole system is set up if you can&#8217;t be sure who you are talking to.</p><p>That&#8217;s why the process of&nbsp;<strong>authentication&nbsp;</strong>is so widely tested during all cybersecurity exams, including the CC, CISSP, and Security+.</p><blockquote><p><strong>Not familiar with the methods of authentication yet? Read this First!</strong></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;b982de8c-cf18-4e11-967d-db6d7249f7ba&quot;,&quot;caption&quot;:&quot;Last time, we learned what hashing is and why it is so important for basically all IT systems. Today, we take a look at another important Cybersecurity topic: Authentication.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Cybersecurity 101: Methods of Authentication&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-04-17T08:50:12.816Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!S22a!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3842a76b-639a-454d-9b5d-960576724e72_620x620.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/cybersecurity-101-methods-of-authentication&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:161522575,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:3,&quot;comment_count&quot;:2,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:false,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div></blockquote><p>Today, we are going to focus on a method that is treated as the <strong>gold standard. </strong></p><p>But just because this method is better than asking for a password, that doesn&#8217;t make it automatically secure.</p><p>And be sure that the exam will test you on that.</p><p>Let&#8217;s get to it!</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Preparing for the CISSP certification exam? Subscribe to <strong>Decoded Security</strong> and learn for FREE!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Biometric authentication</h2><p><strong>Definition: </strong><em>Biometrics</em> verifies an individual&#8217;s identity by analyzing a unique personal characteristic.</p><p>That sounds pretty clear, doesn&#8217;t it? </p><p>You simply take anything that you can reliably analyze and is based on unique personal characteristics and uses instead of a dumb password.</p><p><strong>Well, there is a catch</strong>. But before I tell it to you, let&#8217;s add more definitions to make sure you know everything you need.</p><p><strong>There are two types of biometric authentication:</strong></p><ol><li><p><strong>Physiological: </strong>Uses <strong>physical attributes</strong> unique to an individual</p><ol><li><p>Fingerprints</p></li><li><p>Retina / Iris (<strong>Note:</strong> Privacy issues - PHI)</p></li><li><p>Facial structure</p></li><li><p>Hand geometry</p></li></ol></li><li><p><strong>Behavioral: </strong>Uses <strong>patterns of behavior</strong> unique to an individual</p><ol><li><p>Signature dynamics</p></li><li><p>Keystroke dynamics</p></li><li><p>Voice patterns</p></li></ol></li></ol><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!bqLq!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!bqLq!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 424w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 848w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 1272w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!bqLq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png" width="1456" height="882" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:882,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:152995,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/193969700?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!bqLq!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 424w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 848w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 1272w, https://substackcdn.com/image/fetch/$s_!bqLq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c53853f-367a-4c97-a7cf-d85ebad5f70f_1801x1091.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>Why is this so important?</strong></p><p>Because behavioral characteristics can change over time. We are not machines, and we don&#8217;t always do things the same way. </p><p><strong>Make sure to keep it in mind!</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"><strong>Do you want to break into cybersecurity?</strong> Subscribe to <strong>Decoded Security</strong> and get specific insights from someone who has done it before you!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>&#8220;The Catch&#8221; - Errors </h2><blockquote><p><strong>Exam tip:</strong> This is what you actually need to know</p></blockquote><p>Remember how I mentioned <em>&#8220;the catch&#8221;?</em></p><p>Here it is:</p><blockquote><p><strong>Biometric authentication doesn&#8217;t always work as expected.</strong></p></blockquote><p><strong>With passwords, it&#8217;s simple:</strong></p><ul><li><p>100 % Match &#8594; access granted</p></li><li><p>No match &#8594; access denied</p></li></ul><p>It&#8217;s 100% or nothing.</p><p>But biometrics don&#8217;t work like that.</p><p><strong>You never get a perfect match.</strong></p><p>Instead, the system asks:</p><blockquote><p>&#8220;Is this <em>close enough</em> to be the same person?&#8221;</p></blockquote><p>And that&#8217;s where problems start.</p><p><strong>Because now, two things can happen:</strong></p><h4>1. False Rejection Rate (FRR)</h4><p><strong>Event:</strong> The system rejects a <strong>legitimate user.</strong></p><p><strong>FRR Definition: </strong>The percentage of times a biometric system incorrectly rejects a legitimate user.</p><p><strong>Example: </strong>Your fingerprint is valid, but the system doesn&#8217;t recognize it.</p><h4>2. False Acceptance Rate (FAR)</h4><p><strong>Event: </strong>An attacker is accepted as a legitimate user.</p><p><strong>Definition:</strong><br>The percentage of times a biometric system incorrectly accepts an unauthorized user.</p><h3>Which one is better?</h3><p>Well, that depends on the system.</p><p><strong>If you make the system stricter:</strong></p><ul><li><p>FAR &#8595; (more secure)</p></li><li><p>FRR &#8593; (more users get blocked)</p></li></ul><p><strong>If you make it more lenient:</strong></p><ul><li><p>FRR &#8595; (better usability)</p></li><li><p>FAR &#8593; (less secure)</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!CXNd!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!CXNd!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 424w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 848w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 1272w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!CXNd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png" width="535" height="431" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:431,&quot;width&quot;:535,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:23697,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/193969700?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!CXNd!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 424w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 848w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 1272w, https://substackcdn.com/image/fetch/$s_!CXNd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fab7800db-c9f1-4f7c-99e6-c3ea006ac9c9_535x431.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div></li></ul><p>Without changing the biometric mechanism, you can only decide <strong>which mistake you prefer</strong>.</p><p>Great. Now you understand the main problem with biometric authentication and its sensitivity. </p><p>Now there is one more question to answer: <strong>How do we compare biometric systems?</strong></p><p>Because every system has FRR and FAR.</p><p>And depending on the configuration, you can <strong>tune one&#8230; but worsen the other</strong>.</p><p><strong>So which one matters more?</strong></p><p>FRR or FAR? And at what setting?</p><p>This is exactly why we use the <strong>Crossover Error Rate (CER)</strong>.</p><div class="callout-block" data-callout="true"><p>Are you preparing for a certification exam? Make sure to check the <a href="https://www.decodedsecurity.com/p/certification-hub">Decoded Security Certification Hub</a> for more FREE Resources!</p></div><h4>Crossover Error Rate (CER)</h4><p><strong>Definition:</strong><br>The point at which the <strong>False Rejection Rate (FRR)</strong> equals the <strong>False Acceptance Rate (FAR)</strong>.</p><p>In other words, it&#8217;s the point where the system makes <strong>equal mistakes on both sides</strong>.</p><p>It is a <strong>single number</strong> to compare biometric systems.</p><ul><li><p>Lower CER &#8594; <strong>fewer total errors &#8594; better system</strong></p></li><li><p>Higher CER &#8594; <strong>more errors &#8594; worse system</strong></p></li></ul><p>And that&#8217;s it! You can now compare two biometric systems! </p><h2>Additional Information (Exam Notes)</h2><ul><li><p>Biometrics are based on <strong>probability, not certainty</strong></p></li><li><p><strong>Threshold setting</strong> determines system sensitivity (strict vs lenient)</p></li><li><p>Lower threshold &#8594; <strong>higher FAR</strong>, lower FRR</p></li><li><p>Higher threshold &#8594; <strong>lower FAR</strong>, higher FRR</p></li><li><p><strong>False Acceptance Rate (FAR)</strong> is a bigger security risk than FRR</p></li><li><p><strong>False Rejection Rate (FRR)</strong> mainly affects usability</p></li><li><p><strong>Crossover Error Rate (CER)</strong> is used to compare systems</p></li><li><p>Lower CER = <strong>better overall accuracy</strong></p></li><li><p>Physiological biometrics are generally <strong>more stable</strong> than behavioral ones</p></li><li><p>Some methods raise <strong>privacy concerns</strong> (e.g., retina scan &#8594; PHI)</p></li><li><p><strong>Processing speed matters</strong> (slow systems reduce adoption)</p></li><li><p><strong>BIOMETRIC SYSTEMS ARE EXPENSIVE!</strong></p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Interested in more resources laser-focused on the CISSP, CC, and Security+ exams? Join Decoded Security Community with 1000+ people and learn something new every week!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Conclusion</h2><p>Congratulations! After reading this article, you are ahead of most people.</p><p>You now understand that biometrics isn&#8217;t just about scanning fingerprints.</p><p>You understand both its benefits and its drawbacks, including the errors involved.</p><p>We also covered how to prioritize error types based on system sensitivity and how to compare biometric systems.</p><p>With all of that, you are more prepared than 95% of people claiming to be cybersecurity experts.</p><p>Thanks for reading Decoded Security!</p><p>&#8212; Erich</p><div class="callout-block" data-callout="true"><p>If you&#8217;re preparing for <strong>CISSP, CC, or Security+,</strong> make sure to check the <a href="https://www.decodedsecurity.com/p/certification-hub">Decoded Security Certification Hub</a> for more free resources!</p></div><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><div class="pullquote"><p style="text-align: center;"><em><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap<br></a><br>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></em></p></div>]]></content:encoded></item><item><title><![CDATA[This Is How I Explain The Man-in-the-Middle Attacks To a Beginner]]></title><description><![CDATA[Most people can define a Man-in-the-Middle attack. Almost no one understands how it actually works. In this guide, you&#8217;ll simulate it yourself, capture a real session, and see how attackers work!]]></description><link>https://www.decodedsecurity.com/p/this-is-how-i-explain-the-man-in</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/this-is-how-i-explain-the-man-in</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Sat, 11 Apr 2026 12:01:39 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/04636393-2042-4b7a-b969-d26ee81001bf_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>For years, I was given one question that I thought I could answer perfectly.</p><p>It was the CISSP exam that made me realize that what I know isn&#8217;t enough. </p><p>The question was quite simple:  What is a Man-in-the-Middle attack?</p><p><strong>And I got a very simple answer:</strong> It is a type of attack where an attacker positions himself between two parties who believe they are interacting directly.</p><p>Easy and correct answer, right?</p><p>Well, it is. But if you believe this is enough to pass cybersecurity exams and interviews, you&#8217;re wrong. </p><p>After reading this article, you will know everything you need to know about this attack for CC, Security+, CISSP exams, and in actual real-world scenarios. </p><blockquote><p><strong>Warning:</strong> CC, CISSP, and Security+ relevant topic!</p></blockquote><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Almost 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let&#8217;s grow together!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>What is a MitM Attack?</h2><p>Let&#8217;s start from the beginning and describe what this term means. </p><p>The MitM Attack is a TYPE of attack where <strong>an attacker positions themselves between two parties communicating.</strong></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!l1ZG!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!l1ZG!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 424w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 848w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 1272w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!l1ZG!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png" width="1211" height="831" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:831,&quot;width&quot;:1211,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:92045,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/193554841?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!l1ZG!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 424w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 848w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 1272w, https://substackcdn.com/image/fetch/$s_!l1ZG!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2b1b8b64-7c8b-44b7-98a0-77221baf30eb_1211x831.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>Instead of:</strong><br>Client &#8594; Server</p><p><strong>It becomes:</strong><br>Client &#8594; Attacker &#8594; Server</p><p>And what is so dangerous about it? </p><p>The client probably won&#8217;t even recognize it. Everything works as usual. You open any website, check your emails, and watch YouTube videos.</p><p><strong>But the attacker can now:</strong></p><ul><li><p>Read the traffic</p></li><li><p>Modify it</p></li><li><p>Steal sensitive data</p></li></ul><p>In other words, all <a href="https://www.decodedsecurity.com/p/3-things-you-need-to-know-for-your?r=4abibl">core Cybersecurity objectives of the CIA triad</a> are threatened. </p><p>And yes, you guessed it right, that&#8217;s no good.</p><p>Before we go through a specific example, let&#8217;s answer one more question that is frequently asked in both exams and interviews.</p><p><strong>Question:</strong> How does a MitM attack affect the core cybersecurity objectives?</p><p><strong>Answer: </strong></p><p><strong>CIA Triad</strong></p><ul><li><p>Confidentiality - <strong>Broken</strong></p><ul><li><p><strong>Compromised</strong></p></li><li><p>Without further security controls, the attacker can intercept sensitive data (passwords, emails, tokens)</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!yXaq!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!yXaq!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 424w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 848w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 1272w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!yXaq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png" width="1194" height="615" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/50321881-c4e6-48df-8812-a58b708d604b_1194x615.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:615,&quot;width&quot;:1194,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:64582,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/193554841?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!yXaq!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 424w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 848w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 1272w, https://substackcdn.com/image/fetch/$s_!yXaq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F50321881-c4e6-48df-8812-a58b708d604b_1194x615.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div></li><li><p>Integrity</p><ul><li><p><strong>Compromised</strong></p></li><li><p>An attacker can modify messages in transit</p></li><li><p>&#8594; Data arrives altered without the sender/receiver knowing</p></li></ul></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!MBrA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!MBrA!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 424w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 848w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 1272w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!MBrA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png" width="1456" height="460" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:460,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:61643,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/193554841?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!MBrA!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 424w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 848w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 1272w, https://substackcdn.com/image/fetch/$s_!MBrA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51d038e2-3b3f-4d72-b08f-8d692b74cc89_1525x482.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><ul><li><p>Availability</p><ul><li><p><strong>Usually unaffected (but can be impacted)</strong></p></li><li><p>MitM is primarily passive/stealthy</p></li><li><p>&#8594; In some cases, an attacker may drop or delay packets (DoS-like behavior)</p></li></ul></li></ul><p>So, if you ever get this question, and if you&#8217;re serious about cybersecurity, you probably will, make sure to understand which core cybersecurity objectives are typically the most affected by this type of attack.</p><p>Great! Enough theory!</p><p>Now it&#8217;s time to get some hands-on experience and try this attack by yourself.</p><p>Because that&#8217;s what differentiates people who know just theory, and who actually understand the concept. You can&#8217;t replace hands-on experience with hours of reading.</p><p>And that&#8217;s why I prepared a simple Docker Lab, which will guide you step by step on how to simulate this attack.</p><p>Let&#8217;s get to it! </p><blockquote><p>Are you preparing for the CC, Security+, or CISSP exam? <br><br>Comment &#8220;CYBERSECURITY&#8221; and I will send you a free guide focusing on <strong>Top 10 Cybersecurity Fundamentals</strong>.</p></blockquote><h2>Hands-On Docker Lab: Man-in-the-Middle Attack</h2><h3>How the attack actually happens</h3><p><strong>Let&#8217;s do something most cybersecurity content never shows you:</strong></p><p>Instead of just reading about a Man-in-the-Middle attack, you&#8217;ll <strong>simulate one yourself</strong>.</p><h3>What you&#8217;re about to build</h3><p><strong>You will simulate this exact scenario:</strong></p><pre><code><code>Victim (Browser) &#8594; Attacker (MitM Proxy) &#8594; Web Server</code></code></pre><p>The attacker will sit in the middle and <strong>capture session data in real time</strong>.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Take your <strong>cybersecurity knowledge</strong> to the next level with <strong>Decoded Security</strong>!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>
      <p>
          <a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-the-man-in">
              Read more
          </a>
      </p>
   ]]></content:encoded></item><item><title><![CDATA[[3/3] The 4-Week Security+ Strategy: What to Do Every Single Day]]></title><description><![CDATA[Stop wasting money on expensive cybersecurity courses that don&#8217;t get you results. Here&#8217;s the exact strategy I used to pass cybersecurity exams, broken down into a simple 4-week plan you can follow!]]></description><link>https://www.decodedsecurity.com/p/33-the-4-week-security-strategy-what</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/33-the-4-week-security-strategy-what</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Tue, 07 Apr 2026 13:33:17 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/d73573bd-07de-4d47-a6f5-ad2962ed258f_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>It&#8217;s finally here, the final piece of this series, showing people how anyone can pass the Security+ exam in 4 weeks. </p><p>In the previous articles, we have covered what the exam looks like. Its structure, domains, and the distribution of points between them. </p><p>I also provided you with study resources that are laser-focused on things you need to answer the questions correctly.</p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;506a8c3f-560d-47e8-bd34-bef7971e32a5&quot;,&quot;caption&quot;:&quot;You want to get a job in cybersecurity, and you need to spice up your resume.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;[1/3] How to Pass Security+ in 4 Weeks - Introduction&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-03-25T11:10:11.530Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7d28a3af-e2a1-407a-9594-496f056ae4fe_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:192073061,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:8,&quot;comment_count&quot;:8,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:false,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;79b8b8ed-b67a-4a51-91a2-ce6566e719bd&quot;,&quot;caption&quot;:&quot;Most people fail CompTIA Security+ for one simple reason.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;[2/3] Security+ Domains Explained: What to Study (and What to Ignore)&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-04-02T05:01:15.657Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/aca0bdb0-b4b7-4f48-bc8f-b0b1b4b2f305_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/23-security-domains-explained-what&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:192842249,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:3,&quot;comment_count&quot;:0,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:false,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><p>And after covering all of that, you miss only one last thing to successfully pass the Security+ exam. </p><p>A strategy. Today, we will take all the knowledge and create a plan that will get you where you want to be.</p><p>This article gives you that system.</p><p>A clear plan for what to do every week and every single day.</p><p>So you can stop guessing and start executing.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Almost 1,000 people read <strong>Decoded Security</strong> every week! Join our community and let&#8217;s grow together!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!h6CP!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!h6CP!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 424w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 848w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 1272w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!h6CP!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png" width="1456" height="1096" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1096,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:299264,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/192096471?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!h6CP!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 424w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 848w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 1272w, https://substackcdn.com/image/fetch/$s_!h6CP!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2342938-5b4a-40a3-bb5c-43a0832f6dd1_3061x2304.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>The 4-Week Strategy (Simple, Not Easy)</h2><p><strong>Your entire preparation has 3 phases. </strong>And what I like about it is that it works for almost any exam you will ever take. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!4OGw!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!4OGw!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 424w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 848w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 1272w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!4OGw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png" width="1456" height="539" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:539,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:206208,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/192096471?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!4OGw!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 424w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 848w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 1272w, https://substackcdn.com/image/fetch/$s_!4OGw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7868982b-d87f-4164-bd06-0854e6176681_3285x1217.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h3>Phase 1: Build Understanding (Week 1)</h3><p><strong>Goals: </strong></p><ul><li><p>Understand the concept of the exam</p></li><li><p>List topics for each domain</p></li><li><p><strong>Understand the fundamentals</strong></p></li></ul><p><strong>What you do:</strong></p><ul><li><p>Read the introduction where I describe the exam - <a href="https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks">Exam structure</a></p></li><li><p>Open an Excel or take a piece of paper and list all the main topics for each domain. I made that easy for you: <a href="https://www.decodedsecurity.com/p/23-security-domains-explained-what">Security+ Domains</a></p></li><li><p>Go through the core concepts - Luckily for you, I covered the Top 10 most important concepts in my FREE guide - <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">Top 10 Cybersecurity fundamentals</a></p></li></ul><p>Okay, now you should have a complete overview of what you need to learn. That&#8217;s a great start. </p><p>Start with the topics I listed and make sure to write down all terms that you are not familiar with.</p><p><strong>Outcome of this phase:</strong></p><ul><li><p>A complete list of all topics you need to understand for the exam</p></li><li><p>List of terms you need to be familiar with</p></li><li><p>A mindmap describing how the terms connect together</p></li></ul><div class="callout-block" data-callout="true"><p><strong>Are you preparing for CompTIA Security+?</strong></p><p><strong>Comment &#8220;Security+&#8221; and I&#8217;ll send you a FREE guide describing the TOP 10 most important topics for the exam!</strong></p></div><h3>Phase 2: Connect the Dots And Test Yourself Soon (Week 2&#8211;3)</h3><p>Most people wait for practice tests until the very last moment. </p><p>They are afraid of failing. </p><p>Here is the thing: You are allowed to fail in the preparation phase. That&#8217;s what forces you to learn. </p><p>So, the second you read through the fundamentals, it&#8217;s time to start testing yourself. </p><p>And, very importantly, add the topics from the practice test to your list. That&#8217;s absolutely crucial. </p><p>At the end of week 2, you should be stressed about how big your list got and that you are running out of time. </p><p>If that&#8217;s what you are feeling now, you&#8217;re on the right track! Don&#8217;t stop!</p><p>And if you feel overwhelmed, I&#8217;d recommend using an approach that helped me many times in my life and by which I was able to pass the CISSP exam while working full-time.</p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;a3ebd199-edb8-4aad-83ee-c7f0e78ffac0&quot;,&quot;caption&quot;:&quot;You want to do something for your career. Or mayber you&#8217;re still in school preparing for a difficult exam that&#8217;s coming up.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Get Control Over Your Results: How to Study Efficiently While Being Busy&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-11-03T12:34:07.297Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/939e8254-14af-4a58-8e0b-6f684af7cbfb_1456x1048.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/get-control-over-your-results-how&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:177687976,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:14,&quot;comment_count&quot;:2,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><h4>Divide and Conquer</h4><p>When your list gets overwhelming, don&#8217;t try to fix everything at once.</p><p><strong>Break it down:</strong></p><ul><li><p>Pick one domain</p></li><li><p>Focus only on that</p></li><li><p>Close the gaps</p></li><li><p>Move to the next</p></li></ul><p>Make sure to check the topics in your list and track your progress. That will keep you motivated. Once you check all the topics from one domain, take the practice test again. It will feel good that you know the answers!</p><div class="callout-block" data-callout="true"><p>Want to go beyond passing Security+?</p><p>I created a <strong><a href="https://decodedsecurity.gumroad.com/l/CybersecurityBlueprint">90-day roadmap to land your first cybersecurity job</a></strong><a href="https://decodedsecurity.gumroad.com/l/CybersecurityBlueprint">.</a></p></div><h3>Phase 3: Think Like the Exam (Week 4)</h3><p>Until now, I strongly encouraged you to deep dive into the topics. Truly understand what&#8217;s going on behind the scenes. </p><p>But this is the time to get practical. </p><p>You&#8217;ve spent 3 weeks reading materials, watching tutorials, and connecting the dots. You&#8217;ve got plenty of diagrams, notes, and maybe ANKI cards.</p><p>That will all serve you well in your career. </p><p>But now, you need results. Which means, stop caring about how things work and start giving answers that the exam expects.</p><p>Every exam have different way the questions are phrased, meant, and created. </p><p>You are at a huge disadvantage. The people who created the exam are the ones who set the rules. </p><p>You need to adapt. And the best way to do that is to practice the question as much as possible. </p><p><strong>So here is the recipe for this phase:</strong></p><ul><li><p>Full practice exams daily</p></li><li><p>Timed conditions</p></li><li><p>Focus on weak areas only</p></li><li><p>Light review</p></li></ul><h2>How to Know You&#8217;re Ready</h2><p><strong>Simple:</strong></p><ul><li><p>You consistently score <strong>80%+</strong> on practice exams</p></li><li><p>You understand <em>why</em> the answers are correct</p></li><li><p>You recognize patterns in the practice questions quickly</p></li></ul><p><strong>At that point, it&#8217;s time to take the exam. </strong></p><p>Don&#8217;t wait for confidence.</p><p><strong>Confidence comes after you pass.</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Preparing for any cybersecurity certification exam? Subscribe to <strong>Decoded Security</strong> and learn for FREE!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Conclusion</h2><p>This is how I passed even the most difficult cybersecurity exams there are. </p><p>Having a good strategy is more important than having years of experience. I know many people who have been in the field longer than I have and still failed.</p><p>Stop waiting to be ready. Don&#8217;t listen to people telling you don&#8217;t have a chance.  </p><p>You don&#8217;t need more time. You don&#8217;t need more resources.</p><p><strong>You need:</strong></p><ul><li><p>Focus</p></li><li><p>Consistency</p></li><li><p>Study materials</p></li><li><p>And a system</p></li></ul><p>And I just gave you resources and a system. Now it&#8217;s time for you to add focus and consistency to the equation.</p><p><strong>Follow this for 4 weeks, and you will pass.</strong></p><div class="callout-block" data-callout="true"><p>Here is one more offer. If you get stuck on any topic, you can contact me at erich.winkler@decodedsecurity.com or comment under this post, and I will guide you. </p></div><p>Thanks for reading Decoded Security!</p><p>- Erich</p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><div class="pullquote"><p style="text-align: center;"><em><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap<br></a><br>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></em></p></div><p><strong>Let&#8217;s learn and grow together!</strong></p>]]></content:encoded></item><item><title><![CDATA[[2/3] Security+ Domains Explained: What to Study (and What to Ignore)]]></title><description><![CDATA[How to pass CompTIA Security+ in 4 weeks without years of experience, expensive courses, or wasting time on irrelevant topics! All you need is a plan and 4 weeks of execution.]]></description><link>https://www.decodedsecurity.com/p/23-security-domains-explained-what</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/23-security-domains-explained-what</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Thu, 02 Apr 2026 05:01:15 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/aca0bdb0-b4b7-4f48-bc8f-b0b1b4b2f305_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Most people fail CompTIA Security+ for one simple reason.</p><p>It isn&#8217;t a lack of experience.</p><p>It isn&#8217;t that they are not smart enough.</p><p>It isn&#8217;t even an absence of an $800 course.</p><p>It&#8217;s not knowing what really matters for the exam.</p><p>They treat all topics the same. They try to &#8220;cover everything.&#8221; And naturally, they get lost and fail. </p><div class="pullquote"><p>&#128161; <strong>NOTE: </strong>&#8220;Security+ is not about knowing everything. It&#8217;s about knowing what matters.&#8221;</p></div><p>In Part 1, we talked about what the exam really is.</p><p>Now it&#8217;s time to break it down:</p><p>&#128073; What&#8217;s inside each domain<br>&#128073; What you should actually focus on<br>&#128073; What you can safely ignore</p><p>Let&#8217;s get to it!</p><blockquote><p>WARNING: This article won&#8217;t bring anything exciting, but it will help you bring structure to your preparation for the CompTIA Security+ exam.</p></blockquote><div><hr></div><p><strong>If you&#8217;re just joining: </strong>This is Part 2 of my 3-part series on how to pass CompTIA Security+ in 4 weeks.</p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;8d9222d9-f7ad-460a-8eb2-c86f46b678fc&quot;,&quot;caption&quot;:&quot;You want to get a job in cybersecurity, and you need to spice up your resume.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;[1/3] How to Pass Security+ in 4 Weeks - Introduction&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-03-25T11:10:11.530Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7d28a3af-e2a1-407a-9594-496f056ae4fe_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:192073061,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:8,&quot;comment_count&quot;:8,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><p><strong>In Part 1, I explained:</strong></p><ul><li><p>what the exam actually tests</p></li><li><p>why most people fail</p></li><li><p>how to think about Security+ the right way</p></li></ul><p><strong>Now we focus on what to study, and what to ignore.</strong></p><div><hr></div><h2><strong>The 5 Domains of Security+</strong></h2><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!u46L!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!u46L!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!u46L!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png" width="1080" height="1350" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1350,&quot;width&quot;:1080,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!u46L!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!u46L!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>I have already mentioned this last time, but I think it&#8217;s absolutely crucial to understand this. </p><p><strong>Understanding the exam structure is not optional. </strong>It&#8217;s one of the fastest ways to improve your score.</p><p><strong>The current version (SY0-701) is built around 5 domains. </strong></p><p>And you need to know what hides under the hood of each domain. And yes, you guessed it right, that&#8217;s what I am going to show you today!</p><p>And not only that! I have already explained most of the topics in my 80+ articles here on Decoded Security. So, this is nothing but just a big bank of resources that will help you pass this exam without an $800 course!</p><p>Sounds good, right?</p><p>So let&#8217;s take it domain by domain!</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Preparing for any cybersecurity certificaiton exam? Subscribe to <strong>Decoded Security</strong> and learn for FREE!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3>General Security Concepts (12%)</h3><p>The goal of this chapter is to verify that you understand the fundamental concepts of cybersecurity. Yes, it counts &#8220;only&#8221; for 12% of the exam, but you are going to need those concepts across all domains, so make sure you know them!</p><blockquote><p><strong>Note: Each topic links to a detailed article if you want to go deeper. :) </strong></p></blockquote><h3>What to focus on:</h3><ul><li><p><a href="https://www.decodedsecurity.com/p/threat-risk-vulnerability-why-cissp?utm_source=publication-search">CIA Triad (Confidentiality, Integrity, Availability)</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-aaa-framework-can-your-cowokers?utm_source=publication-search">AAA (Authentication, Authorization, Accounting)</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/cybersecurity-controls-from-zero?utm_source=publication-search">Security controls:</a></p><ul><li><p>Technical</p></li><li><p>Administrative</p></li><li><p>Physical</p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/the-8-security-principles-every-cissp?utm_source=publication-search">Core principles</a>:</p><ul><li><p>Least privilege</p></li><li><p>Zero Trust</p></li><li><p>Defense in depth</p></li></ul></li><li><p>Cryptography basics:</p><ul><li><p><a href="https://www.decodedsecurity.com/p/symmetric-vs-asymmetric-encryption">Symmetric vs asymmetric</a> </p></li><li><p><a href="https://www.decodedsecurity.com/p/hashing-what-it-is-and-why-its-not">Hashing vs encryption</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/diffie-hellman-explained-like-youre?utm_source=publication-search">Diffie-Hellman</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/digital-signatures-explained-with">Digital Signatures</a></p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/7-networking-questions-that-instantly?utm_source=publication-search">Networking Fundamentals:</a></p><ul><li><p><a href="https://www.decodedsecurity.com/p/what-are-the-things-that-keep-our">Network Devices</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/why-most-beginners-dont-understand?">IP addressing</a></p></li></ul><p></p></li></ul><div class="pullquote"><p>Are you preparing for CompTIA Security+?</p><p>Comment <strong>&#8220;Security+&#8221;</strong> and I&#8217;ll send you a FREE guide describing the TOP 10 most important topics for the exam!</p></div><h3>Threats, Vulnerabilities, and Mitigations (22%)</h3><p>The goal of this domain is <strong>to understand how attacks actually work and how to stop them.</strong></p><p>You need to know the types of attacks to recognize them and design systems that are resilient to them. </p><h3>What to focus on:</h3><ul><li><p><strong><a href="https://www.decodedsecurity.com/p/virus-vs-worm-the-malware-basics">Malware</a></strong>:</p><ul><li><p>Ransomware</p></li><li><p>Trojans</p></li><li><p>Worms</p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/the-psychology-of-hacking-why-smart">Social engineering</a>:</p><ul><li><p><a href="https://www.decodedsecurity.com/p/how-phishing-works-in-5-steps">Phishing</a></p></li><li><p>Pretexting</p></li><li><p>Baiting</p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols?">Network protocols</a></p><ul><li><p>TCP/UDP</p></li><li><p>FTP</p></li><li><p>SMTP</p></li><li><p>&#8230;.. (see the article above)</p></li></ul></li><li><p><strong>Network attacks: (in progress)</strong></p><ul><li><p>DoS / DDoS</p></li><li><p>Man-in-the-middle</p></li><li><p>DNS spoofing</p></li></ul></li><li><p><strong>Vulnerabilities: (in progress)</strong></p><ul><li><p>Misconfigurations</p></li><li><p>Unpatched systems</p></li><li><p>Weak passwords</p></li></ul></li><li><p><strong>Mitigation basics: (in progress)</strong></p><ul><li><p>Patching</p></li><li><p>Input validation</p></li><li><p>Segmentation</p></li></ul></li></ul><h3><strong>Security Architecture (18%)</strong></h3><p>This domain focuses on secure design.</p><p>In other words, it teaches you how to <strong>build systems that are secure by default, not systems that need to be fixed later.</strong></p><p>You&#8217;re not reacting to attacks here. You&#8217;re preventing them before they even become possible.</p><p>This includes how networks are structured, how systems communicate, how identities are managed, and how trust is established between components.</p><p><strong>Because once a system is deployed, fixing security issues becomes:</strong><br>- slower<br>- more expensive<br>- and often incomplete</p><p>That&#8217;s why good security professionals think about architecture first.</p><h4>What to focus on:</h4><ul><li><p>Network design:</p><ul><li><p>Segmentation (In progress)</p></li><li><p>DMZ (In progress)</p></li><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-dns-to-beginners">DNS</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-complete-guide-to-firewall-types">Firewalls</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/certification-authorities-cas-what">Certification Authority</a></p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/cloud-based-systems">Cloud</a>:</p><ul><li><p><a href="https://www.decodedsecurity.com/p/cloud-based-systems">Shared responsibility model</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/cloud-based-systems">IaaS / PaaS / SaaS</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-nines-arent-enough-the-7-things">Service-level agreement</a></p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/the-8-security-principles-every-cissp">Zero Trust</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols?">Secure protocols:</a></p><ul><li><p>HTTPS / TLS</p></li><li><p>SSH</p></li></ul></li><li><p>Identity &amp; Access Management</p><ul><li><p><a href="https://www.decodedsecurity.com/p/access-controls">Access Control</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/access-control-concepts-101-logical">Access Control Concepts</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-aaa-framework-can-your-cowokers">AAA Framework</a></p></li></ul></li><li><p>System hardening (In progress)</p></li></ul><blockquote><p>Are you preparing for the Security+ exam? Let me know in the comments and let&#8217;s discuss it! </p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/23-security-domains-explained-what/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/23-security-domains-explained-what/comments"><span>Leave a comment</span></a></p></blockquote><h3><strong>Security Operations (28%)</strong>  </h3><p>This is the most important domain on the exam.</p><p>This is where cybersecurity becomes <strong>real work</strong>.</p><p>You&#8217;re not designing systems anymore. You&#8217;re operating them.</p><ul><li><p> detecting attacks</p></li><li><p>responding to incidents</p></li><li><p>minimizing damage</p></li><li><p>recovering systems</p></li></ul><p>Basically, we focus on&nbsp;<strong>what you do when something actually happens.</strong></p><p><strong>Key idea here:</strong><br>You won&#8217;t be judged on preventing every incident.<br>You&#8217;ll be judged on how you handle them.</p><h3>What to focus on:</h3><ul><li><p><strong>Monitoring &amp; logging: (In progress)</strong></p><ul><li><p>SIEM basics</p></li><li><p>Log analysis</p></li></ul></li><li><p><strong><a href="https://www.decodedsecurity.com/p/the-incident-response-mistakes-that">Incident response:</a></strong></p><ul><li><p>Preparation</p></li><li><p>Detection</p></li><li><p>Containment</p></li><li><p>Recovery</p></li><li><p>Reporting</p></li></ul></li><li><p><strong>Vulnerability management (In progress)</strong></p><ul><li><p>Scanning</p></li><li><p>Prioritization</p></li></ul></li><li><p><strong>Tools (high-level):</strong></p><ul><li><p>EDR (In progress)</p></li><li><p><a href="https://www.decodedsecurity.com/i/191237121/question-6-what-is-the-difference-between-ids-and-ips">IDS / IPS</a></p></li></ul></li><li><p>Backup &amp; recovery</p><ul><li><p><a href="https://www.decodedsecurity.com/p/the-storage-mistake-90-of-people">RAID</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-final-goodbye-how-to-dispose">Secure Data Disposal</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/the-data-lifecycle-from-creation">Secure Data Lifecycle</a></p></li></ul></li></ul><blockquote><p>Is there any comment you are struggling with? Just let me know in the comments and I will break it down for you!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/23-security-domains-explained-what/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/23-security-domains-explained-what/comments"><span>Leave a comment</span></a></p></blockquote><h3><strong>Security Program Management and Oversight (20%)</strong>  (My favorite domain!!)</h3><p>This is where cybersecurity becomes a <strong>business decision</strong>.</p><p>It&#8217;s not about tools. It&#8217;s about <strong>managing risk</strong>.</p><p><strong>Because in reality:</strong></p><ul><li><p>You can&#8217;t secure everything</p></li><li><p>You can&#8217;t eliminate all risk</p></li></ul><p>So the goal is to <strong>understand risk and make the right decisions. Because at the end, it&#8217;s all about MONEY.</strong></p><p>Most technical people underestimate this domain. That&#8217;s a mistake.</p><p><strong>Because this is how companies actually decide:</strong></p><ul><li><p>what to protect</p></li><li><p>how much to invest</p></li><li><p>what risks to accept</p></li></ul><p>&#128161; <strong>Key idea:</strong><br>Security is not about eliminating risk. It&#8217;s about managing it.</p><h3>What to focus on:</h3><ul><li><p><a href="https://www.decodedsecurity.com/p/risk-management-managing-risks-in">Risk management:</a></p><ul><li><p>Risk = likelihood &#215; impact</p></li><li><p>Mitigate / Transfer / Accept / Avoid</p></li><li><p><a href="https://www.decodedsecurity.com/p/how-risk-management-frameworks-keep">Risk Management frameworks</a></p></li></ul></li><li><p><a href="https://www.decodedsecurity.com/p/security-policies-standards-and-procedures">Policies, standards, procedures</a></p></li><li><p>Compliance and Privacy:</p><ul><li><p><a href="https://www.decodedsecurity.com/p/gdpr-explained-the-privacy-law-that">GDPR</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/15-laws-every-cissp-candidate-must">HIPAA</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/15-laws-every-cissp-candidate-must">PCI-DSS</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/15-laws-every-cissp-candidate-must">FISMA</a></p></li></ul></li><li><p><strong><a href="https://www.decodedsecurity.com/p/why-we-need-to-be-lawyers-intellectual">Intellectual Property &amp; Compliance</a></strong></p></li><li><p>Third-party risk (In progress)</p></li><li><p>Security awareness (In progress)</p></li></ul><p>This is it. That&#8217;s the list of topics you need to cover to have a chance to pass the exam! <br>I know it might look scary, but trust me. We just made a very important step.</p><p>We put everything we need to know in one place. Which means, now we just start crossing the things off the list. </p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to Decoded Security to learn more every week!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Conclusion</h2><p>This is it! The exam might sound scary at this point, but I promise you&#8212;once you start crossing topics off your list, it will feel better and better.</p><p><strong>You now know:</strong></p><ul><li><p>the structure of the exam</p></li><li><p>what the exam looks like</p></li><li><p>what is in each domain</p></li></ul><p>And you have the resources to help you study.</p><p>You&#8217;re missing one last thing:</p><p>A strategy.</p><p>That&#8217;s what we&#8217;ll dive into next time!</p><p>Thanks for reading Decoded Security!</p><p>- Erich</p><p><strong>PS: If you have any questions, feel free to reach out to me!</strong></p><p><strong>The last part of the series is already available here:</strong> <br></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;5771dd2d-8f19-42b9-8d1d-b6c2c6181fa8&quot;,&quot;caption&quot;:&quot;It&#8217;s finally here, the final piece of this series, showing people how anyone can pass the Security+ exam in 4 weeks.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;[3/3] The 4-Week Security+ Strategy: What to Do Every Single Day&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-04-07T13:33:17.555Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d73573bd-07de-4d47-a6f5-ad2962ed258f_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/33-the-4-week-security-strategy-what&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:192096471,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:1,&quot;comment_count&quot;:0,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><div class="pullquote"><p style="text-align: center;"><em><strong>Email: <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br>LinkedIn: <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br>Gumroad community: <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br>Start Here: <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap<br></a><br>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</strong></em></p></div><p><strong>Let&#8217;s learn and grow together!</strong></p><div class="directMessage button" data-attrs="{&quot;userId&quot;:259197825,&quot;userName&quot;:&quot;Erich Winkler&quot;,&quot;canDm&quot;:null,&quot;dmUpgradeOptions&quot;:null,&quot;isEditorNode&quot;:true}" data-component-name="DirectMessageToDOM"></div><p></p><p></p><h1></h1><p></p>]]></content:encoded></item><item><title><![CDATA[What Actually Happens When You Open a Website]]></title><description><![CDATA[Most people don&#8217;t know what happens when you open a website. And if you can&#8217;t explain what happens when you open a website, you don&#8217;t understand networking, you&#8217;re just memorizing.]]></description><link>https://www.decodedsecurity.com/p/what-actually-happens-when-you-open</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/what-actually-happens-when-you-open</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Sun, 29 Mar 2026 16:57:37 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/c342a60d-14f7-4f17-9896-d095ce3bcc06_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Everybody claims to know exactly how networking works. </p><p>Really..go out and ask people who have anything to do with tech.</p><p>They will all tell you how it&#8217;s easy, and everybody knows it. </p><p>Then ask them to explain the series of events that happen when you open a website. </p><p>That&#8217;s where the confidence disappears.</p><p>Because this isn&#8217;t a trivia question.</p><p>It&#8217;s a test of whether you understand the system or just memorize pieces of it.</p><p>And in cybersecurity, that difference matters.</p><p>Because you can&#8217;t protect what you don&#8217;t fully understand.</p><p>That&#8217;s why this question shows up in interviews.</p><p>And if you can answer it clearly, step by step, you&#8217;re already ahead of most candidates.</p><p><strong>In this article, you&#8217;ll learn exactly that.</strong></p><h3>High-level concept</h3><p>First, you need to understand that opening a website is not a single action.</p><p>It&#8217;s a <strong>chain of dependencies</strong>:</p><pre><code>DNS &#8594; TCP &#8594; TLS &#8594; HTTP &#8594; Rendering</code></pre><p><strong>Each link of this chain solves a different problem:</strong></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!RSSa!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!RSSa!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 424w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 848w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 1272w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!RSSa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png" width="1440" height="966" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:966,&quot;width&quot;:1440,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:84918,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/191237109?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!RSSa!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 424w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 848w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 1272w, https://substackcdn.com/image/fetch/$s_!RSSa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78d82d45-af2c-4d3c-8fd7-e58198d13a0f_1440x966.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><ul><li><p>DNS &#8594; <em>Where is the server? </em><strong>(Application layer)</strong></p></li><li><p>TCP &#8594; <em>Can we communicate reliably? </em><strong>(Transport layer)</strong></p></li><li><p>TLS &#8594; <em>Can I trust you? </em><strong>(Between Application and Transport)</strong></p></li><li><p>HTTP &#8594; <em>Give me the content</em> <strong>(Application layer)</strong></p></li></ul><blockquote><p>Make sure you understand the <a href="https://open.substack.com/pub/cybersecerich/p/introduction-to-the-tcpip-model?utm_campaign=post-expanded-share&amp;utm_medium=web">TCP/IP model</a> and its different layers.</p></blockquote><h2>Step-by-Step (Interview-Level Explanation)</h2><h3>1. URL Parsing</h3><p>Let&#8217;s start from the beginning. <br><strong>When you type:</strong></p><pre><code>https://www.example.com/login?user=admin</code></pre><p><strong>Your browser parse the URL:</strong></p><ul><li><p><strong>Scheme (Protocol)</strong> &#8594; <code>https</code></p></li><li><p><strong>Host (Domain)</strong> &#8594; <code>www.example.com</code></p></li><li><p><strong>Path</strong> &#8594; <code>/login</code></p></li><li><p><strong>Query string</strong> &#8594; <code>user=admin</code></p></li></ul><p>The scheme (<code>https</code>) doesn&#8217;t just define the protocol, it determines the entire communication stack that will be used.</p><p><strong>For example:</strong></p><pre><code><code>https:// &#8594; HTTP over TLS over TCP
http:// &#8594; HTTP over TCP</code></code></pre><p>Okay great. We parsed the URL. What now? We want to send the request to the server, right? </p><p>Well, not so fast. We don&#8217;t even know where the server is yet..</p><h2>2. DNS Resolution - Finding the Server</h2><p>Your browser knows <em>where</em> to go. It doesn&#8217;t know the IP address yet.</p><p>DNS translates <code>example.com</code> into <code>93.184.216.34</code>.</p><p><strong>Here&#8217;s the real lookup chain, and where it stops depends on what&#8217;s already cached:</strong></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!bbqG!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!bbqG!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 424w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 848w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 1272w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!bbqG!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png" width="1440" height="856" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:856,&quot;width&quot;:1440,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:73694,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/191237109?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!bbqG!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 424w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 848w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 1272w, https://substackcdn.com/image/fetch/$s_!bbqG!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F90dadfbb-9e21-4eab-9327-d7767c107009_1440x856.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>The query descends until one level can answer. Most everyday lookups never reach the root, they hit a cache first.</p><blockquote><p>This is very simplified explanation, if you want to know more about how DNS really works, read it HERE: </p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;562b685a-647b-40ee-b72b-954ef0d63544&quot;,&quot;caption&quot;:&quot;I have to confess something here. For years, I didn&#8217;t know how DNS (Domain Name Server) actually works.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;This Is How I Explain DNS To Beginners&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-02-04T21:01:15.604Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/fcef5240-a1b1-436f-a505-9aae44284cd9_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-dns-to-beginners&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:186845933,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:30,&quot;comment_count&quot;:18,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div></blockquote><p>Okay, great! Now we have the IP address and we can make the request, right?</p><p>Well, not yet!</p><h3>Step 3: TCP Handshake (Making the Connection)</h3><p>We need to establish a reliable connection first!</p><p>That&#8217;s the job for the <strong>Transport layer. </strong>In particular, the TCP protocol.</p><p>It establishes a connection between two devices using something called a <strong>three-way handshake</strong>:</p><ol><li><p><strong>SYN</strong> &#8594; Client wants to start communication</p></li><li><p><strong>SYN-ACK</strong> &#8594; Server acknowledges</p></li><li><p><strong>ACK</strong> &#8594; Client confirms</p></li></ol><p>That&#8217;s it. Simple, efficient.</p><blockquote><p>Do you want to know more? I love to hear that! I have covered this topic in one of my previous articles! Read it here: <a href="https://www.decodedsecurity.com/i/188384153/tcp-transmission-control-protocol">TCP protocol.</a></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!vDqV!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!vDqV!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 424w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 848w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 1272w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!vDqV!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png" width="936" height="799" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/df82f607-1688-4526-9de8-05cea52e8386_936x799.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:799,&quot;width&quot;:936,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!vDqV!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 424w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 848w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 1272w, https://substackcdn.com/image/fetch/$s_!vDqV!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdf82f607-1688-4526-9de8-05cea52e8386_936x799.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Okay, okay. So now it&#8217;s finally time to make a request, right? </p><p>Well, we are really almost there! I promise!</p><h3>Step 4: TLS Handshake</h3><p>This is where it gets interesting when it comes to security. </p><p>The TLS protocol lies between the application and transport layers. <br>It has three simple (haha)..ensure <strong>authenticity, integrity, confidentiality </strong>of the connection.</p><p><strong>Here&#8217;s what each step actually does:</strong></p><p><strong>1. Client Hello: </strong>Your browser initiates the handshake by sending:</p><ul><li><p>Supported TLS versions</p></li><li><p>Supported cipher suites</p></li><li><p>Random data (used later for key generation)</p></li></ul><p><strong>2. Server Hello + Certificate</strong></p><p>The server responds with:</p><ul><li><p>The selected cipher suite</p></li><li><p>Its <strong>digital certificate</strong></p></li></ul><p>That certificate contains:</p><ul><li><p>The server&#8217;s <strong>public key</strong></p></li><li><p>A <strong>digital signature</strong> from a trusted Certificate Authority (CA)</p></li></ul><p><strong>3. Certificate Verification</strong></p><p>Your browser validates the certificate:</p><ul><li><p>Is it signed by a trusted CA?</p></li><li><p>Is it expired?</p></li><li><p>Does the domain match?</p></li></ul><blockquote><p>If you don&#8217;t know what a Certification Authority is, I got you covered! </p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;6f82ebec-4292-4c18-930d-00ccb91ceaa4&quot;,&quot;caption&quot;:&quot;&#128216; Essential for anyone preparing for the ISC2 CC exam&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;sm&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;Certification Authorities (CAs): What is it and why do we need it? &quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2025-05-10T09:20:03.374Z&quot;,&quot;cover_image&quot;:&quot;https://substackcdn.com/image/fetch/$s_!SbPa!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa6c22282-6776-4db1-8326-9dbdfe3b8af3_1080x1920.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/certification-authorities-cas-what&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:163231485,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:4,&quot;comment_count&quot;:1,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div></blockquote><p>This is where your <strong>digital signatures article connects directly</strong>.</p><p><strong>Without a valid signature, the browser rejects the connection.</strong></p><p><strong>4. Key Exchange</strong></p><p>The client and server establish a <strong>shared secret</strong>.</p><p>In modern TLS (1.2+ / 1.3), this is typically done using:</p><ul><li><p><strong>(EC)DHE</strong> &#8594; ephemeral key exchange</p></li></ul><p><strong>Important: </strong>The certificate is used for authentication, not for encrypting all traffic directly.</p><p><strong>5. Secure Channel Established</strong></p><p>Both sides derive <strong>session keys</strong>.</p><p><strong>From this point on:</strong></p><ul><li><p>All data is <strong>encrypted</strong></p></li><li><p>All data is <strong>integrity-protected</strong></p></li></ul><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!TI_q!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!TI_q!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 424w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 848w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 1272w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!TI_q!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png" width="1440" height="814" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:814,&quot;width&quot;:1440,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:66358,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/191237109?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!TI_q!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 424w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 848w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 1272w, https://substackcdn.com/image/fetch/$s_!TI_q!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8e27515-7db2-4518-92eb-f2f049d1e248_1440x814.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h3><strong>Step 5: HTTP Request and Response (Finally Asking for Data)</strong></h3><p>Once the secure channel is open, the browser sends:</p><pre><code><code>GET /login HTTP/1.1
Host: example.com</code></code></pre><p>The server processes the request, queries a database if needed, and returns HTML with a <code>200 OK</code> response.</p><h3><strong>Step 6: Browser Rendering (The Part You Actually See)</strong></h3><p>The browser parses the HTML, loads CSS, and executes JavaScript.</p><p>Only now do you see the page.</p><p>Everything before this? Invisible. Automatic. Completed in under a second.</p><p>And almost entirely attackable if any single step is misconfigured.</p><div class="pullquote"><p><strong>If you've made it this far, which step surprised you most?</strong> Drop a comment below. I read every single one!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/what-actually-happens-when-you-open/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://www.decodedsecurity.com/p/what-actually-happens-when-you-open/comments"><span>Leave a comment</span></a></p></div><h2><strong>Hands-On Lab: See the Whole Chain With Docker</strong></h2><p>Congratulations! You now understand the whole process. Which is great! </p><p>But just a theory isn&#8217;t enough. If you want to get ahead of other candidates, you must get that hands-on experience. </p><p>That&#8217;s why I prepared a lab that recreates DNS resolution, HTTP requests, and live TLS negotiation in a contained environment. </p><p><strong>What you need:</strong> Docker Desktop. Nothing else.</p><blockquote><p>If you don&#8217;t know how to use Docker or what it is, I got you covered. <br>&#8594; Download a free step-by-step guide <a href="https://decodedsecurity.gumroad.com/l/Docker_guide">HERE</a>. </p></blockquote>
      <p>
          <a href="https://www.decodedsecurity.com/p/what-actually-happens-when-you-open">
              Read more
          </a>
      </p>
   ]]></content:encoded></item><item><title><![CDATA[[1/3] How to Pass Security+ in 4 Weeks - Introduction]]></title><description><![CDATA[4 weeks. No expensive course. No years of experience required. Just a solid plan, starting with understanding exactly what the Security+ exam is testing you on. That&#8217;s what this article offers!]]></description><link>https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 25 Mar 2026 11:10:11 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/7d28a3af-e2a1-407a-9594-496f056ae4fe_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>You want to get a job in cybersecurity, and you need to spice up your resume. <br>So you decided to take the Security+ exam. </p><p><strong>Good move!</strong> </p><p>Most people will tell you that it is impossible to pass the exam without a $500 course.</p><p>Most people will tell you it doesn&#8217;t make any sense to take the exam if you don&#8217;t have X (choose a random number) years of experience. </p><p>DO NOT LISTEN TO THEM!</p><p>I don&#8217;t know you, but I know that if you dedicate 4 weeks of your life to this, you will pass the exam. All you need to do is have a good plan and take action.</p><p>I can&#8217;t force you to take action, but I can tell you exactly what matters for the exam, thereby reducing your required effort to a bare minimum.</p><p>How am I going to do it? </p><p>In this 3-part series, not only will I provide resources and study materials that will explain the concepts from the exam, but I will also explain how the exam tests you and what to focus on.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to <strong>Decoded Security</strong> and get ready for the Security+ exam!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>What CompTIA Security+ Really Is</h2><p>Before we deep-dive into the details of this exam, let&#8217;s take a moment to talk about what this certification is and what it offers. </p><p><strong>Security+</strong> is an <strong>entry-level</strong> cybersecurity certification from <strong>CompTIA</strong>, one of the most recognized names in IT certifications.</p><p>It's vendor-neutral. Which means it doesn't teach you how to use one specific tool or platform. Instead, it teaches you how to <em>think</em> like a security professional. </p><p>So if you hope to learn how to properly set up <strong>Microsoft Intune</strong>, this is not the right choice.</p><blockquote><p>However, if you're career-switching into cybersecurity, <strong>Security+</strong> is often the first certification hiring managers want to see on your resume. </p></blockquote><p>Simply, it is a smart choice for people who understand that Cybersecurity concepts are not tied to any platform. And since you&#8217;re reading this, I have a feeling you are that kind of person! </p><blockquote><p>Are you preparing for the Security+ exam? Let me know in the comments! </p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks/comments"><span>Leave a comment</span></a></p></blockquote><h2>The 5 Domains of Security+</h2><p>Understanding the exam structure is not optional.</p><p>It&#8217;s one of the fastest ways to improve your score.</p><p>The current version (SY0-701) is built around 5 domains:</p><ol><li><p><strong>General Security Concepts (12%)</strong> &#8594; The fundamentals. Why security exists and the core principles (like CIA) everything is built on.</p></li><li><p><strong>Threats, Vulnerabilities, and Mitigations (22%)</strong> &#8594; What can go wrong, how attackers exploit it, and how you stop them.</p></li><li><p><strong>Security Architecture (18%)</strong> &#8594; How to design systems so they&#8217;re secure from the start, not fixed later.</p></li><li><p><strong>Security Operations (28%)</strong> &#8594; What you actually do day-to-day: monitor, detect, and respond to threats.</p></li><li><p><strong>Security Program Management and Oversight (20%)</strong> &#8594; The business side: managing risk, setting policies, and aligning security with company goals.</p></li></ol><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!u46L!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!u46L!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!u46L!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png" width="1080" height="1350" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1350,&quot;width&quot;:1080,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:276520,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/192073061?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F09b55d6e-16c7-4a8b-96ee-dc7776b16574_1080x1350.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!u46L!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 424w, https://substackcdn.com/image/fetch/$s_!u46L!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 848w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1272w, https://substackcdn.com/image/fetch/$s_!u46L!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fae433e5d-bc4d-4fa7-b54e-3ff469c92d3d_1080x1350.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>It is important to notice that the domains are not equal. </p><p>For example, S<strong>ecurity Operations alone = 28% of the exam</strong></p><p><strong>That means: </strong>You can spend hours memorizing definitions from Domain 1, and still fail because you ignored how security works in practice.</p><blockquote><p>Next week, I&#8217;ll walk you through each domain step-by-step so you can actually apply them in the exam. <strong>Subscribe to follow the full series</strong>.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/subscribe?"><span>Subscribe now</span></a></p></blockquote><h2>Exam details</h2><p>I am not going to go into all the details, as you can easily find them on the CompTIA website. However, I think it is worth mentioning what you should expect. </p><p><strong>Number of questions:</strong> Maximum of 90 questions<br><strong>Time limit:</strong> 90 minutes<br><strong>Passing score:</strong> 750 out of 900<br><strong>Testing options:</strong> Testing center or online-proctored exam</p><p>But the most important thing is the type of questions.<br>The exam combines <strong>performance-based</strong> and <strong>multiple-choice questions</strong>.</p><p>And trust me, the first time you see them, <strong>all 4 answers will look correct</strong>.</p><p>That&#8217;s intentional.</p><p>Your job isn&#8217;t to find <em>a</em> correct answer, it&#8217;s to choose the <strong>best</strong> one.</p><p>And I&#8217;ll help you develop the eye for detail to do exactly that.</p><blockquote><p> <strong>Are you ready to lock in and pass the exam?</strong> <br>Comment &#8220;Security+&#8220; and I will send you a FREE guide that describes TOP 10 Cybersecurity Fundamentals you need for the exam.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/13-how-to-pass-security-in-4-weeks/comments"><span>Leave a comment</span></a></p></blockquote><h2><strong>Conclusion</strong></h2><p>Security+ is a big milestone for people who are new to cybersecurity, but it is not as complicated as people make it.</p><p>What makes it hard is not knowing what to focus on. That&#8217;s the only reason why people spend $1,000s for Security+ courses. </p><p>If you commit the next 4 weeks to this properly, you won&#8217;t just pass the exam.</p><p>You&#8217;ll actually understand the basics of cybersecurity.</p><p>And that&#8217;s what separates people who &#8220;Pass and forget&#8221; from those who build a real career.</p><p>So let&#8217;s do this properly and let&#8217;s do this together!</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">And make sure you&#8217;re subscribed. Next week, we will go through all the domains, and you don&#8217;t want to miss that!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><div class="pullquote"><p><strong>Email:</strong> <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a><br><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a><br><strong>Gumroad community:</strong> <a href="https://decodedsecurity.gumroad.com/">Decoded Security</a><br><strong>Start Here:</strong> <a href="https://www.decodedsecurity.com/p/start-here-decoded-security-roadmap">Decoded Security Roadmap<br></a><br>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</p></div><p><strong>Let&#8217;s learn and grow together!</strong></p><p><strong>Next part is available here:</strong><br></p><div class="digest-post-embed" data-attrs="{&quot;nodeId&quot;:&quot;1e3ad391-62be-4336-9aaf-05b644f68922&quot;,&quot;caption&quot;:&quot;Most people fail CompTIA Security+ for one simple reason.&quot;,&quot;cta&quot;:&quot;Read full story&quot;,&quot;showBylines&quot;:true,&quot;size&quot;:&quot;lg&quot;,&quot;isEditorNode&quot;:true,&quot;title&quot;:&quot;[2/3] Security+ Domains Explained: What to Study (and What to Ignore)&quot;,&quot;publishedBylines&quot;:[{&quot;id&quot;:259197825,&quot;name&quot;:&quot;Erich Winkler&quot;,&quot;bio&quot;:&quot;Cybersecurity Manager | CISSP Associate | Helping people land their first cybersecurity role without a degree or career reset&quot;,&quot;photo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!zLJJ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb404eb9a-cceb-4d1d-86d2-e362bdf449fc_1024x1024.png&quot;,&quot;is_guest&quot;:false,&quot;bestseller_tier&quot;:null}],&quot;post_date&quot;:&quot;2026-04-02T05:01:15.657Z&quot;,&quot;cover_image&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/aca0bdb0-b4b7-4f48-bc8f-b0b1b4b2f305_1536x1024.png&quot;,&quot;cover_image_alt&quot;:null,&quot;canonical_url&quot;:&quot;https://www.decodedsecurity.com/p/23-security-domains-explained-what&quot;,&quot;section_name&quot;:null,&quot;video_upload_id&quot;:null,&quot;id&quot;:192842249,&quot;type&quot;:&quot;newsletter&quot;,&quot;reaction_count&quot;:2,&quot;comment_count&quot;:0,&quot;publication_id&quot;:4708911,&quot;publication_name&quot;:&quot;Decoded Security&quot;,&quot;publication_logo_url&quot;:&quot;https://substackcdn.com/image/fetch/$s_!hqdo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fda8809eb-cbfe-4d76-a2e7-af1df277c77a_500x500.png&quot;,&quot;belowTheFold&quot;:true,&quot;youtube_url&quot;:null,&quot;show_links&quot;:null,&quot;feed_url&quot;:null}"></div>]]></content:encoded></item><item><title><![CDATA[This is how I explain subnetting to a beginner]]></title><description><![CDATA[Subnetting isn&#8217;t hard,you were just taught wrong. This beginner-friendly guide breaks it down using a simple mental model, so you can finally understand how IP addresses and subnet masks really work!]]></description><link>https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Sat, 21 Mar 2026 17:00:48 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/803e4def-67d6-4e2f-ac28-066b36a88e2d_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Subnetting confuses a lot of people. And I completely get it. I was confused too.</p><p>And you know what? <br>I think the only reason why it is confusing for so many people is that it&#8217;s explained incorrectly.</p><p>Most tutorials jump straight into masks, ranges, and formulas&#8230;</p><p>Without explaining what&#8217;s actually underneath.</p><p>And that&#8217;s the problem.</p><p>Because subnetting only makes sense once you understand one thing:</p><p><strong>What an IP address really is</strong>!</p><blockquote><p>Have you struggled with subnetting in the past? Give this article a like and help other people with the same problem discover it!</p></blockquote><h2>What is an IP address? </h2><p>Most people see an IP address like this:</p><p><code>192.168.1.42</code></p><p>And treat it like a label.</p><p>But it&#8217;s not.</p><blockquote><p>It&#8217;s a structured 32-bit number, and every part of it has meaning.</p></blockquote><p>So here is what your IP address actually looks like. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!jg6b!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!jg6b!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 424w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 848w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 1272w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!jg6b!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png" width="1456" height="582" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:582,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:93623,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/191566783?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!jg6b!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 424w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 848w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 1272w, https://substackcdn.com/image/fetch/$s_!jg6b!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5195c8b0-b6b2-416c-bbb7-397b6674abf9_1581x632.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">IP address - Binary</figcaption></figure></div><p></p><p>Those dots between the numbers? That just separates bytes. </p><p>That 192 in your IP address? It&#8217;s actually 11000000 in binary.</p><p><strong>Why am I talking about it?</strong></p><p>Because once you think of an IP address as 4 bytes rather than 4 random numbers, things get a lot easier!</p><p><strong>So the first lecture today is this:</strong></p><blockquote><p>Always think of an IP address as 4 individual bytes. </p></blockquote><p>Now, I am going to show you why it&#8217;s so important.</p><blockquote><p>Have you ever thought of an IP address this way? <br>If not, give this article a like and help other people find it! </p></blockquote><h2>Subnetting - What does it really mean?</h2><p>Let&#8217;s start with the definition.</p><blockquote><p><strong>Definition:</strong> Subnetting is the process of dividing an IP network into smaller sub-networks by splitting the IP address into a network portion and a host portion.</p></blockquote><p>That didn&#8217;t tell you much, huh? <br>Don&#8217;t worry, it didn&#8217;t mean to.</p><p>Let&#8217;s break it down in plain English.</p><p><strong>Subnetting means:</strong></p><blockquote><p><strong>Choosing how many bits identify the network, and how many identify the device.</strong></p></blockquote><p>So when you think of an IP address as a line of bits:</p><pre><code>[ network bits | host bits ]</code></pre><p>Subnetting is simply <strong>deciding where that boundary (&#8220;|&#8221;) sits. </strong></p><p>On the left, we have a fixed number of bits that define the network, and on the right, we have a fixed number of bits that address individual devices.</p><p>Still confusing, right? Let&#8217;s take a look at an example.</p><p>Don&#8217;t give up now! It&#8217;s about to start making sense!</p><h3>Example - Mask /24</h3><p>The last term you need to know here is a &#8220;subnet mask.&#8221;</p><blockquote><p><strong>Here is the definition:</strong> A subnet mask is a 32-bit value that defines which part of an IP address represents the network and which part represents the host.</p></blockquote><p>In other words, it is a simple representation of how many bits you reserve for addressing individual devices. </p><p>Basically, it&#8217;s just a fancy way of saying, put the boundary (&#8220;|&#8221;) here, thank you.</p><p><strong>So, what if you have a /24 mask?</strong> </p><p>That means, you take the first 24 bits from the left and set them to 1.</p><pre><code><code>11111111.11111111.11111111.00000000</code></code></pre><p>In dotted decimal notation, it would look like this:</p><pre><code><code>255.255.255.0</code></code></pre><p>This means the first 24 bits define the network. They are fixed, and only the last 8 bits (last byte) are dedicated to individual devices. </p><pre><code><code>192.168.1.X // X - devices</code></code></pre><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!j4E2!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!j4E2!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 424w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 848w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 1272w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!j4E2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png" width="1456" height="532" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:532,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:197923,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/191566783?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!j4E2!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 424w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 848w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 1272w, https://substackcdn.com/image/fetch/$s_!j4E2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd46ce42e-a574-467b-af64-218b3514ffac_3306x1209.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>So, how many devices do you think you can have in this network?</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting/comments"><span>Leave a comment</span></a></p><p>Have you answered it in the comments?</p><p>No?</p><blockquote><p>This is how you learn, think about it, and give us your answer!</p></blockquote><p>Okay, great. Let&#8217;s see what the correct answer is.</p><p>You have 8 bits, which can hold 2 values: 0 and 1.</p><p>That 2^8 combinations = 256 devices.</p><p>If that was your answer, you&#8217;re <strong>almost</strong> correct.</p><p>The correct answer is 254. Why? Because you have to exclude network and broadcast addresses. <strong>We&#8217;ll talk about it next time!</strong></p><h2>What&#8217;s next</h2><p>First of all, if you don&#8217;t fully understand subnetting now, don&#8217;t worry. It can be a very confusing topic at first. </p><p>Take your time, and read this article twice. Once you do, you can try to create subnets with different masks.</p><pre><code><code>192.168.1.0/25
192.168.1.0/12
192.168.1.0/27</code></code></pre><p>Take a pen and paper and answer the following questions. </p><ul><li><p>What does the network mask actually look like?</p></li><li><p>How many devices can there be? </p></li><li><p>And what would the network and broadcast addresses be? </p></li><li><p>What is the first and last usable address? </p></li></ul><blockquote><p>If you answer these in the comments, I will personally give you feedback!</p></blockquote><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/this-is-how-i-explain-subnetting/comments"><span>Leave a comment</span></a></p><h2>Conclusion</h2><p>Congratulations! You just took a huge step in your cybersecurity journey, and I am proud of you.</p><p>After reading this article, you are now able to design a network with adequate subnets. You know what an IP address actually is and what those funny numbers after &#8220;/&#8221; mean.</p><p>Believe it or not, that puts you way ahead of most people. Really, go ahead and ask around and see for yourself how many people can give you the right answer. I&#8217;ll wait!</p><p>Next time, we will talk about cybersecurity implications.</p><p>So subscribe and learn something new every week!</p><p>Thank you for reading <strong>Decoded Security</strong>!</p><p>Erich</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"><strong>Subscribe</strong> today and get the <a href="https://decodedsecurity.gumroad.com/l/InterviewGuide">Cybersecurity Interview Cheat Sheet</a> for FREE as a welcome gift!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p><p></p><h2><strong>&#8252;&#65039; Free Resource &#128680;</strong></h2><p>If this article helped, I put together a free 80-page guide covering the 10 cybersecurity concepts behind 90% of entry-level interview questions.</p><p>&#128073; <strong>Download it here:</strong> <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts</a></p><h2><strong>Let&#8217;s Connect</strong></h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email:</strong> <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a></p><p><strong>LinkedIn:</strong> Erich Winkler</p><p><strong>Gumroad community:</strong> Decoded Security</p><p><strong>Start Here:</strong> Decoded Security Roadmap</p><p>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</p><p><strong>Let&#8217;s learn and grow together!</strong></p><p></p><p></p><p> </p>]]></content:encoded></item><item><title><![CDATA[7 Networking Questions That Instantly Expose Beginners in Cybersecurity Interviews]]></title><description><![CDATA[If you can&#8217;t answer these 7 networking questions properly, you don&#8217;t understand cybersecurity yet. Here&#8217;s how to think beyond definitions, and start answering like a professional.]]></description><link>https://www.decodedsecurity.com/p/7-networking-questions-that-instantly</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/7-networking-questions-that-instantly</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 18 Mar 2026 05:01:08 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/5baf57bc-67ea-48b7-b87f-a997c4abb10e_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I still remember the moment I realized how little I actually understood about networking.</p><p>It was back in school. I had studied for weeks. I knew what TCP was. I had memorized the OSI model layers. I even felt good about it.</p><p>Then my professor asked me a simple question:</p><p><em>&#8220;Can you explain what actually happens during a three-way handshake, and why it matters from a security perspective?&#8221;</em></p><p><strong>I answered something like:</strong> &#8220;SYN, SYN-ACK, ACK.&#8221;</p><p>Silence.</p><p>That&#8217;s not an explanation. That&#8217;s three acronyms.</p><p>And that&#8217;s the difference between memorizing networking and actually understanding it.</p><p>And since networking is one of the key domains in cybersecurity, you need to actually understand it.</p><p>Here are the 7 networking questions that expose that gap, and what a strong answer actually looks like.</p><p>&#8252;&#65039; <strong>Warning: CC, Security+, and CISSP relevant topic!</strong></p><h2>Why Networking Questions Are Different</h2><p>Most beginners study cybersecurity tools.</p><p>Firewalls. IDS. SIEM. Endpoint protection.</p><p>But tools sit on top of networks.</p><p>If you don&#8217;t understand how networks actually work, how data moves, where it comes from, and where it goes, you don&#8217;t really understand what those tools are protecting.</p><p>And interviewers know that.</p><p>That&#8217;s why networking questions aren&#8217;t just knowledge checks.</p><p>They&#8217;re a test of how you think.</p><p><em>If you&#8217;re not familiar with the basics of network protocols yet, I recommend reading this first: <a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols">Top 5 Most Important Network Protocols for Cybersecurity Beginners</a></em></p><div><hr></div><h2>&#8252;&#65039; Free Resource &#128680;</h2><blockquote><p>If you&#8217;re just starting out in cybersecurity, I know how overwhelming it feels to figure out what to learn first.</p><p>I&#8217;ve been there.</p><p>That&#8217;s why I created a free 80-page guide covering the 10 cybersecurity concepts behind 90% of entry-level interview questions.</p><p>&#128073; Download it for free: <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts</a></p></blockquote><div><hr></div><h2>Question 1: &#8220;What&#8217;s the difference between TCP and UDP?&#8221;</h2><p>This question sounds basic.</p><p>That&#8217;s the point.</p><p>It&#8217;s a filter. If you can&#8217;t explain this clearly and connect it to security, the interviewer already knows the next questions will be harder for you.</p><p><strong>Where beginners go wrong:</strong></p><p>They answer with a definition.</p><p>&#8220;TCP is connection-oriented. UDP is connectionless.&#8221;</p><p>Technically correct. Completely forgettable.</p><p><strong>What a strong answer sounds like:</strong></p><p>Think of TCP like a phone call. Before either person says a word, you both confirm the other is there. If the call drops, you know immediately.</p><p>UDP is more like leaving a voicemail. You send it and assume it arrived. No confirmation. </p><p>That difference matters a lot in security.</p><p>Then you can simple continue with how it matters to cybersecurity:</p><p>TCP&#8217;s connection process is exactly what SYN flood attacks exploit. attackers send thousands of connection requests that they never complete, overwhelming the server with half-open connections.</p><p>UDP, because it has no handshake, gets abused in DNS amplification attacks, small requests generate massive responses, flooding a target with traffic.</p><p><em><strong>I cover TCP and UDP in depth here:</strong> <a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols">Top 5 Most Important Network Protocols for Cybersecurity Beginners</a></em></p><p></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">If this exposed gaps in your understanding, follow <strong>Decoded Security</strong>. This is exactly what we fix here.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><div><hr></div><h2>Question 2: &#8220;Walk me through what happens when you type google.com into your browser.&#8221;</h2><p>This is the most comprehensive networking question.</p><p>It covers DNS, TCP, IP addressing, HTTP, and TLS. All in one answer.</p><p>Interviewers use it to see how deep your knowledge actually goes.</p><p><strong>Where beginners go wrong:</strong></p><p>&#8220;The browser looks up the IP address and loads the page.&#8221;</p><p>That&#8217;s one sentence. There are at least ten distinct steps happening.</p><p><strong>What a strong answer sounds like:</strong></p><p>First, your browser checks its local DNS cache. If it doesn&#8217;t know the IP address for google.com, it asks your operating system, which checks its own cache, then forwards the request to your DNS resolver.</p><p>The resolver works through the DNS hierarchy: root servers, then TLD servers for .com, then Google&#8217;s authoritative name servers, until it gets the IP address back.</p><p>Now your browser has an IP. </p><p>It uses TCP to connect with the target by sending a SYN, receiving a SYN-ACK, and confirming with an ACK.</p><p>If it&#8217;s HTTPS, a TLS handshake happens next. Certificates are exchanged, encryption is negotiated, and a secure session is established.</p><p>Then the HTTP request goes through, the server responds, and your browser renders the page.</p><p>Every single step in that process is a potential attack surface.</p><p>DNS can be poisoned. Certificates can be forged. The TCP handshake can be exploited. </p><p>This answer shows you understand where things can go wrong, not just that they usually go right.</p><p><em>Want to understand the DNS part of this in detail? Read this: <a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-dns-to-beginners">This Is How I Explain DNS To Beginners</a></em></p><div><hr></div><blockquote><p><strong>Do you find this article useful? Give it a like, it helps me understand what topics to cover next!</strong></p></blockquote><div><hr></div><h2>Question 3: &#8220;What is a subnet mask and why does it matter?&#8221;</h2><p>Subnetting confuses more beginners than almost any other networking topic.</p><p>Not because it&#8217;s impossibly hard. But most people memorize the formula without understanding what it&#8217;s actually doing.</p><p><strong>Where beginners go wrong:</strong></p><p>&#8220;255.255.255.0 means a /24 subnet.&#8221;</p><p>Okay. But why? And what does that have to do with security?</p><p><strong>What a strong answer sounds like:</strong></p><p>Think of a city divided into neighborhoods. The subnet mask is what defines those neighborhood boundaries.</p><p><strong>It tells a device:</strong> &#8220;These addresses are local, talk to them directly. Those addresses are outside your network, send that traffic to the router.&#8221;</p><p>A /24 subnet mask means the first 24 bits define the network. The last 8 bits identify individual devices. That gives you 254 usable host addresses within that network.</p><p>From a security perspective, this is the foundation of network segmentation.</p><p>In a well-designed network, your servers, workstations, IoT devices, and guest Wi-Fi are all on separate subnets.</p><p>Why?</p><p>Because if an attacker compromises a guest laptop, the subnet boundary limits how far they can move. They can&#8217;t simply reach your file servers. The network is divided by design.</p><p>That&#8217;s not just a networking concept. That&#8217;s the principle of least privilege applied to infrastructure.</p><p><em>For more on private IP addresses, public addresses, and how network segmentation works in practice, read this: <a href="https://www.decodedsecurity.com/p/why-most-beginners-dont-understand">Why Most Beginners Don&#8217;t Understand How Networks Actually Work</a></em></p><div><hr></div><h2>Question 4: &#8220;What&#8217;s the difference between a hub, a switch, and a router?&#8221;</h2><p>This one catches people who only studied software-side security.</p><p>Network defenders need to understand how traffic flows at the hardware level. This is where attacks become visible, or invisible.</p><p><strong>Where beginners go wrong:</strong></p><p>Treating all three as &#8220;things that connect computers to a network.&#8221;</p><p>They have fundamentally different behaviors. And those differences change how attacks work.</p><p><strong>What a strong answer sounds like:</strong></p><p>A <strong>hub</strong> is the least intelligent device. It receives data on one port and broadcasts it to every other port. Every device on the network sees every packet, even packets not meant for them.</p><p>A <strong>switch</strong> is smarter. It learns which device is connected to which port by tracking MAC addresses. When data arrives, it sends it only to the correct port. Traffic is contained.</p><p>A <strong>router</strong> operates at a different level entirely. It works with IP addresses, not MAC addresses, and it connects different networks together. Your home router connects your local network to the internet.</p><p>Here&#8217;s why that matters for security.</p><p>In a hub-based network, any device can capture all traffic passively, using nothing more than a tool like Wireshark. No special access needed.</p><p>Switches replaced hubs to solve exactly this problem.</p><p>But even on switched networks, an attack called ARP poisoning can trick the switch into flooding traffic everywhere, recreating hub-like behavior for an attacker who knows what they&#8217;re doing.</p><p><em>Want to understand how these devices fit into the bigger picture of network architecture? I cover hubs, switches, routers, proxies, and more in detail here: <a href="https://open.substack.com/pub/cybersecerich/p/what-are-the-things-that-keep-our">What Are the Things That Keep Our Networks Alive?</a></em></p><div><hr></div><h2>Question 5: &#8220;What is a firewall and what can&#8217;t it do?&#8221;</h2><p>Everyone can answer the first half.</p><p>The second half is where most beginners stop cold.</p><p>And stopping there tells the interviewer that you see security tools as magic boxes &#8212; not as components with specific, bounded functions.</p><p><strong>Where beginners go wrong:</strong></p><p>&#8220;A firewall filters traffic based on rules.&#8221;</p><p>True. But incomplete.</p><p><strong>What a strong answer sounds like:</strong></p><p>A firewall is like a security checkpoint at the entrance of a building. It inspects what&#8217;s coming in and going out based on an approved list: IP addresses, ports, protocols.</p><p>Traditional firewalls are excellent at enforcing those perimeter rules. Block all incoming traffic on port 23 (Telnet)? Easy. Allow only HTTPS on port 443? Done.</p><p>But here&#8217;s what a firewall cannot do.</p><p>It cannot inspect encrypted traffic without special capabilities. If an attacker is communicating over HTTPS port 443, the firewall sees a valid connection &#8212; it has no visibility into what&#8217;s inside.</p><p>It cannot stop insider threats. It cannot detect stolen credentials being used correctly. It has no visibility into attacks that originate from inside the network.</p><p>This is why a firewall alone is never enough.</p><p>Understanding the limits of a control is what separates a security professional from someone who just passed a certification exam.</p><p><em>Not all firewalls work the same way, though. Packet filtering, stateful, proxy, and next-generation firewalls each have different capabilities &#8212; and different blind spots. I break them all down here: <a href="https://open.substack.com/pub/cybersecerich/p/the-complete-guide-to-firewall-types">The Complete Guide to Firewall Types: From Packet Filters to Next-Gen</a></em></p><div><hr></div><p>Are you preparing for a cybersecurity interview or certification? Let me know in the comments! I&#8217;d love to know what topics would help you most!</p><div><hr></div><h2>Question 6: &#8220;What is the difference between IDS and IPS?&#8221;</h2><p>These two tools get confused constantly.</p><p>Even by people who have been in IT for years.</p><p><strong>Where beginners go wrong:</strong></p><p>&#8220;IDS detects threats. IPS prevents them.&#8221;</p><p>That&#8217;s the one-liner. It&#8217;s correct but empty.</p><p><strong>What a strong answer sounds like:</strong></p><p>An IDS (Intrusion Detection System) is a passive observer. It watches network traffic, compares it against known patterns and signatures, and raises an alert when something looks suspicious. It sees everything. It stops nothing.</p><p>An IPS (Intrusion Prevention System) is an IDS with authority. It sits inline on the network, meaning all traffic has to pass through it. When it detects a threat, it can drop the packet, block the connection, or quarantine the source. In real time.</p><p><strong>Think of it this way:</strong> an IDS is a security camera. An IPS is a security camera with a locked door attached to it.</p><p>Now here&#8217;s the part most beginners miss.</p><p>An IPS sounds strictly better. So why would you ever choose detection without prevention?</p><p>Because an IPS carries real risk. False positives on an IDS generate alerts. False positives on an IPS block legitimate traffic. A misconfigured IPS can take down business-critical applications.</p><p>In sensitive environments, an IDS is sometimes the right choice precisely because it cannot accidentally break things while it watches.</p><p><strong>Knowing when not to use a control is as important as knowing what the control does.</strong></p><div><hr></div><h2>Question 7: &#8220;What happens during a three-way handshake?&#8221;</h2><p>And finally, let&#8217;s go back to the original question!</p><p>This question appears in almost every entry-level and mid-level security interview.</p><p>And answering it poorly is a red flag, because the follow-up questions about attacks build directly on top of it.</p><p><strong>Where beginners go wrong:</strong></p><p>&#8220;SYN, SYN-ACK, ACK.&#8221;</p><p>Three acronyms are not an explanation.</p><p><strong>What a strong answer sounds like:</strong></p><p>The three-way handshake is how TCP establishes a reliable connection before any data is sent. It&#8217;s the mutual agreement that both sides are ready to communicate.</p><p>Step one: the client sends a SYN packet to the server. It&#8217;s saying: &#8220;I want to connect, and here&#8217;s my starting sequence number.&#8221;</p><p>Step two: the server responds with a SYN-ACK. &#8220;Got it. I&#8217;m ready. Here&#8217;s my sequence number.&#8221;</p><p>Step three: the client sends an ACK back. &#8220;Confirmed. Let&#8217;s communicate.&#8221;</p><p>Now, both sides have synchronized sequence numbers, and a connection is established.</p><p>Here&#8217;s why this matters from an attack perspective.</p><p>A SYN flood attack exploits step one. </p><p>An attacker sends thousands of SYN packets: often using spoofed IP addresses, and never sends the final ACK. </p><p>The server keeps allocating memory and resources, waiting for confirmations that never arrive. </p><p>Eventually, it runs out of capacity to handle legitimate connections.</p><p>This is a classic denial-of-service technique.</p><p><strong>And understanding the handshake is exactly what makes the attack make sense.</strong></p><p><em>I cover TCP in detail as part of this article: <a href="https://www.decodedsecurity.com/p/top-5-most-important-network-protocols">Top 5 Most Important Network Protocols for Cybersecurity Beginners</a></em></p><div><hr></div><h2>Conclusion</h2><p>Read through those seven questions again.</p><p>Notice what every strong answer has in common.</p><p>It&#8217;s not just technical accuracy.</p><p>Every answer connects the concept to a security implication. Every answer shows the interviewer that the candidate isn&#8217;t just reciting a textbook. </p><p>They&#8217;re thinking like someone who has to defend a real network.</p><p>That&#8217;s what the interview is actually testing.</p><p>Not whether you memorized the right definition. But whether you can look at a protocol, a device, or a tool, and immediately see where it breaks, where it gets abused, and why it matters.</p><p>If you can do that consistently, you&#8217;re not a beginner anymore.</p><div><hr></div><h2>Key Takeaways</h2><p><strong>Here&#8217;s what I want you to remember:</strong></p><ul><li><p>Interviewers don&#8217;t want definitions. They want understanding.</p></li><li><p>Every networking concept has a security implication. Always connect the two.</p></li><li><p>TCP and UDP behave differently, and attackers exploit both.</p></li><li><p>Subnetting and IP addressing are the foundation of network segmentation.</p></li><li><p>Every security control has limits. Knowing those limits is what makes you dangerous.</p></li><li><p>The three-way handshake isn&#8217;t trivia. It&#8217;s the foundation of connection-based attacks.</p></li><li><p><strong>Keep going. Foundations take time to build. But they never stop paying off.</strong></p></li></ul><div><hr></div><h2>&#8252;&#65039; Free Resource &#128680;</h2><p><strong>If this article helped, I put together a free 80-page guide covering the 10 cybersecurity concepts behind 90% of entry-level interview questions.</strong></p><p>It&#8217;s free. No catch.</p><p>&#128073; Download it here: <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts</a></p><div><hr></div><h2>Let&#8217;s Connect</h2><p>If you want to collaborate, discuss, or just geek out over networking and cybersecurity, reach out:</p><p><strong>Email:</strong> <a href="mailto:erich.winkler@decodedsecurity.com">erich.winkler@decodedsecurity.com</a></p><p><strong>LinkedIn:</strong> Erich Winkler</p><p><strong>Gumroad community:</strong> Decoded Security</p><p><strong>Start Here:</strong> Decoded Security Roadmap</p><p>Enjoyed this article? Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</p><p><strong>Let&#8217;s learn and grow together!</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"><em>Subscribe to Decoded Security for new cybersecurity lessons every week.</em></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[Why Most Beginners Don’t Understand How Networks Actually Work]]></title><description><![CDATA[Most beginners try to learn cybersecurity tools first. That&#8217;s a mistake. If you don&#8217;t understand private vs public IP addresses and NAT, you don&#8217;t really understand how networks work.]]></description><link>https://www.decodedsecurity.com/p/why-most-beginners-dont-understand</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/why-most-beginners-dont-understand</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Fri, 13 Mar 2026 10:52:17 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!5no6!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<blockquote><p><strong>Networking fundamentals every cybersecurity beginner must understand</strong></p></blockquote><p>After publishing my article about the <strong><a href="https://open.substack.com/pub/cybersecerich/p/top-5-most-important-network-protocols?utm_campaign=post-expanded-share&amp;utm_medium=web">5 most important network protocols every cybersecurity beginner should understand</a>,</strong> many of my subscribers asked me what else people should know about networking.</p><p>That&#8217;s why I&#8217;d like to explain one of the most fundamental concepts of modern networking. </p><p>Because protocols like <strong>HTTP, TCP, UDP, SMTP, and FTP</strong> explain <strong>how systems communicate.</strong></p><p>But there is another question beginners rarely ask:</p><p><strong>Where are these systems actually located?</strong></p><p>Because communication between systems only makes sense if you understand <strong>how networks are structured.</strong></p><p>And that leads us to one of the most important concepts in cybersecurity:</p><p><strong>Private IP addresses, public IP addresses, and network segmentation.</strong></p><p>Understanding this will help you answer a surprising number of interview questions and explain <strong>how attackers move through networks.</strong></p><div class="pullquote"><p>&#8252;&#65039; <strong>Free Resource</strong> &#128680;</p><p>If you&#8217;re new to cybersecurity, figuring out <strong>what to learn first</strong> can be overwhelming. I know because I&#8217;ve been there.</p><p>So I decided to put the <strong>most important concepts in one place</strong>.</p><p>I created a <strong>free 80-page guide</strong> that explains the <strong>10 cybersecurity concepts behind 90% of entry-level interview questions</strong>.</p><p>Now, you don&#8217;t need to spend thousands as I did.</p><p>&#128073; <strong>Download it for free:</strong> <a href="https://decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts">decodedsecurity.gumroad.com/l/Top10_Cybersecurity_Concepts</a></p></div><h2>Quick Recap: Systems Are Always Communicating</h2><p>In the previous article, we talked about protocols like:</p><p>&#8226; HTTP for web traffic<br>&#8226; TCP for reliable communication<br>&#8226; UDP for fast communication<br>&#8226; SMTP for email<br>&#8226; FTP for file transfers</p><p>These protocols define <strong>how systems talk to each other</strong>.</p><p><strong>For example:</strong></p><p>Your browser communicates with a web server using <strong>HTTP over TCP</strong>.</p><p>But before that communication even starts, something else must happen.</p><p>Your computer needs to know:</p><p><strong>Where is the server located?</strong></p><p>And this is where <strong>IP addresses</strong> come in.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"><strong>Subscribe</strong> today and get the <a href="https://decodedsecurity.gumroad.com/l/InterviewGuide">Cybersecurity Interview Cheat Sheet</a> for FREE as a welcome gift!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>What Is an IP Address?</h2><p>An IP address is basically the <strong>network location of a device</strong>.</p><p>Think of it like a <strong>postal address for computers</strong>.</p><p>Example:</p><pre><code>192.168.1.15</code></pre><p>This address allows other systems to send data to your device.</p><p>Without IP addresses, protocols like HTTP or SMTP would have <strong>no idea where to send data</strong>.</p><p>But not all IP addresses behave the same.</p><p>There are two types you absolutely need to understand.</p><blockquote><p><strong>Note:</strong> If you are not familiar with network devices, I recommend reading this article: <strong><a href="https://www.decodedsecurity.com/p/what-are-the-things-that-keep-our?r=4abibl">What are the things that keep our networks alive?</a></strong></p></blockquote><h2>Public IP Addresses</h2><p>A <strong>public IP address</strong> is visible to the entire Internet.</p><p>Anyone can send traffic to it.</p><p>Example:</p><pre><code>8.8.8.8</code></pre><p>This is Google&#8217;s public DNS server.</p><p><strong>Public IP addresses are assigned by:</strong></p><ul><li><p>internet service providers</p></li><li><p>cloud providers</p></li><li><p>hosting companies</p></li></ul><p>From a cybersecurity perspective, this is important because:</p><blockquote><p><strong>Anything with a public IP address is exposed to the internet.</strong></p></blockquote><p>And exposed systems get scanned constantly.</p><p>There are automated bots scanning the internet <strong>24/7</strong> looking for:</p><ul><li><p>vulnerable servers</p></li><li><p>outdated software</p></li><li><p>open ports</p></li><li><p>misconfigured services</p></li></ul><p>Public IP addresses create an <strong>attack surface</strong>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!QYgE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!QYgE!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 424w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 848w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 1272w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!QYgE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png" width="1320" height="1644" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1644,&quot;width&quot;:1320,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:95121,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!QYgE!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 424w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 848w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 1272w, https://substackcdn.com/image/fetch/$s_!QYgE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F12608823-c788-4d4c-b2b0-4d52fee14916_1320x1644.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><blockquote><p>Are you interested in more articles about networking? Let me know in the comments!</p></blockquote><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/why-most-beginners-dont-understand/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/why-most-beginners-dont-understand/comments"><span>Leave a comment</span></a></p><h2>Private IP Addresses</h2><p>Private IP addresses are used inside <strong>internal networks</strong>.</p><p>They <strong>cannot be reached directly from the internet</strong>.</p><p>Why do we need them?</p><p>Because there <strong>aren&#8217;t enough public IPv4 addresses</strong> for every device in the world. Instead of giving every device its own public IP, networks use <strong>private addresses internally</strong>, which can be reused by anyone.</p><p>If you check your home network right now, your devices probably look something like this:</p><pre><code>Router: 192.168.1.1
Laptop: 192.168.1.15
Phone:  192.168.1.22
TV:     192.168.1.40</code></pre><p>These devices communicate internally using private IP addresses.</p><p>But they still access the internet.</p><p>How?</p><p>Through something called <strong>NAT</strong>.</p><h2>NAT: The Translator Between Private and Public Networks</h2><p>Your router has <strong>two identities</strong>.</p><p>Inside the network:</p><pre><code>192.168.1.1</code></pre><p>On the internet:</p><pre><code>203.0.113.24</code></pre><p>When your laptop sends traffic to a website:</p><pre><code>192.168.1.15 &#8594; google.com</code></pre><p>Your router translates it so the internet sees:</p><pre><code>203.0.113.24 &#8594; google.com</code></pre><p>The response then returns to the router, which forwards it to the correct internal device.</p><p>This allows <strong>many devices to share a single public IP address</strong>.</p><p>But here&#8217;s something many beginners misunderstand.</p><blockquote><p><strong>Private IP addresses were created to solve an address shortage problem, not security problems.</strong></p></blockquote><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!5no6!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!5no6!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!5no6!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!5no6!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!5no6!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!5no6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png" width="1456" height="971" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:971,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:3261074,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://www.decodedsecurity.com/i/187377711?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!5no6!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 424w, https://substackcdn.com/image/fetch/$s_!5no6!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 848w, https://substackcdn.com/image/fetch/$s_!5no6!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!5no6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2244d3c6-4c3c-4afa-a825-03502bc90673_1536x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><blockquote><p>If you&#8217;d like to see <strong>how this works in practice</strong>, I can show you how to build a <strong>small simulated network on your own computer</strong>.</p><p>We&#8217;ll create a private network, assign IP addresses, and see <strong>how NAT works in real time</strong>.</p><p>If you&#8217;re interested, let me know in the comments and I&#8217;ll create the lab.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/why-most-beginners-dont-understand/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/why-most-beginners-dont-understand/comments"><span>Leave a comment</span></a></p></blockquote><h1>What Should You Learn Next?</h1><p>If you&#8217;re starting your cybersecurity journey, focus on fundamentals.</p><p>You don&#8217;t need to learn everything at once.</p><p>Start with:</p><ul><li><p><a href="https://open.substack.com/pub/cybersecerich/p/top-5-most-important-network-protocols?utm_campaign=post-expanded-share&amp;utm_medium=web">Network protocols</a></p></li><li><p>IP addressing (Here)</p></li><li><p><a href="https://www.decodedsecurity.com/p/this-is-how-i-explain-dns-to-beginners?r=4abibl">DNS</a> </p></li><li><p><a href="https://www.decodedsecurity.com/p/diffie-hellman-explained-like-youre?r=4abibl">Encryption</a></p></li><li><p><a href="https://www.decodedsecurity.com/p/what-are-the-things-that-keep-our?r=4abibl">Network Devices</a></p></li></ul><p>These concepts appear everywhere in cybersecurity.</p><p>And if you master them, you will already be ahead of most beginners.</p><h3><strong>Let&#8217;s connect</strong></h3><p>If you want to <strong>collaborate, discuss, or just geek out over virtualization and cloud security</strong>, reach out to me:</p><ul><li><p><strong>Email:</strong> erich.winkler@decodedsecurity.com</p></li><li><p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a></p></li><li><p><strong>Gumroad community: </strong><a href="https://decodedsecurity.gumroad.com/">Decoded Security</a></p></li><li><p><strong><a href="https://open.substack.com/pub/cybersecerich/p/start-here-decoded-security-roadmap?utm_campaign=post-expanded-share&amp;utm_medium=web">Start Here: Decoded Security Roadmap</a></strong></p></li></ul><p><strong>Enjoyed this article?</strong> Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</p><p>Let&#8217;s learn and grow together!</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to Decoded Security for FREE.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[Digital Signatures Explained (With a 5-Minute Hands-On Lab)]]></title><description><![CDATA[Learn how digital signatures protect software and data from tampering. In this beginner-friendly guide, you&#8217;ll understand the theory and then build a small Docker lab to sign and verify files yourself]]></description><link>https://www.decodedsecurity.com/p/digital-signatures-explained-with</link><guid isPermaLink="false">https://www.decodedsecurity.com/p/digital-signatures-explained-with</guid><dc:creator><![CDATA[Erich Winkler]]></dc:creator><pubDate>Wed, 11 Mar 2026 12:52:57 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/bbf943f5-487e-4049-878b-84b2522db008_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>When you download software from the internet, how do you know it hasn&#8217;t been modified by an attacker?</p><p>What stops someone from replacing the file with malware?</p><p>This is exactly the problem <strong>digital signatures solve</strong>.</p><p>In this article, I&#8217;ll explain how digital signatures work, and then we&#8217;ll build a <strong>small Docker lab where you can try it yourself in 5 minutes.</strong></p><h1>What You&#8217;ll Learn</h1><p>Before we dive in, here&#8217;s what you&#8217;ll learn in this article:</p><p>&#8226; What <strong>digital signatures</strong> are and why they are important<br>&#8226; How digital signatures protect <strong>integrity and authenticity</strong><br>&#8226; How the <strong>digital signing process</strong> works step by step<br>&#8226; How to <strong>create and verify a digital signature yourself</strong><br>&#8226; How tampering with a file <strong>breaks the signature</strong></p><p>By the end of this article, you won&#8217;t just understand digital signatures in theory, you&#8217;ll <strong>see them working in practice and be able to sign any file</strong>!</p><blockquote><p>If you find this article helpful, consider <strong>liking the post</strong> so more people can discover. I appreciate your time! Thank you!</p></blockquote><h2>The Theory</h2><p>Let&#8217;s start with the theoretical background. I know it sounds boring, but like it or not, if you want a career in cybersecurity, you need to know why you do things, not just how to do them.</p><p><strong>Digital signatures solve two main problems:</strong></p><ol><li><p><strong>Integrity</strong><br>The file was <strong>not modified</strong>.</p></li><li><p><strong>Authenticity</strong><br>The file was <strong>created by the expected sender</strong>.</p></li></ol><p>If you&#8217;re not familiar with those terms, I got you covered: <strong><a href="https://open.substack.com/pub/cybersecerich/p/my-first-week-of-cissp-prep-what?utm_campaign=post-expanded-share&amp;utm_medium=web">CIA Triad</a></strong></p><p>Let&#8217;s look at a simple example.</p><p>Imagine someone sends you a file.</p><p>It contains <strong>payment instructions</strong> for transferring a large amount of money.</p><p>But an attacker intercepts the file and sends you a modified version with <strong>different payment details</strong>.</p><p>The document looks identical.</p><p>You send the money.</p><p>It&#8217;s gone.</p><p>Digital signatures prevent that.</p><p><strong>They allow the receiver to verify that:</strong></p><ul><li><p>The file was <strong>created by the claimed sender</strong></p></li><li><p>The file was <strong>not modified by anyone else</strong></p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">If you enjoy learning cybersecurity this way, subscribe to <strong>Decoded Security</strong> for more simple breakdowns and practical labs.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h3>How does the whole process work?</h3><p>Great, now we know what problem we are solving here. <br>Now let&#8217;s walk through the process step by step.</p><p>As always, we have Alice and Bob, and Alice wants to send a message to Bob, while Bob needs to be sure that the message is really from Alice and wasn&#8217;t modified by anyone else. </p><p><strong>They need to perform the following steps:</strong></p><p><strong>1. Alice creates a message</strong></p><p>For example, the message contains payment information.</p><p><strong>2. The message is hashed</strong></p><p>Alice runs the message through a <strong>hash function</strong>.</p><p>A hash function converts the message into a short fixed-length value called a <strong>hash</strong>. <br>( more information about hashing here: <strong><a href="https://www.decodedsecurity.com/p/hashing-what-it-is-and-why-its-not?r=4abibl">Hashing: What It Is and Why It&#8217;s Not the Same as Encryption</a>)</strong></p><p>Even a tiny change in the message would produce a completely different hash. So that ensures that any changes are discoverable.</p><p><strong>3. Alice signs the hash</strong></p><p>This might be a little tricky. What does it mean to sign the hash? <br>In this case, it means encrypting the hash using <strong>your private key</strong>.</p><blockquote><p>If you&#8217;re not familiar with asymmetric cryptography and its key, I got you covered: <strong><a href="https://www.decodedsecurity.com/p/symmetric-vs-asymmetric-encryption?r=4abibl">Symmetric vs Asymmetric Encryption: What&#8217;s the Difference?</a></strong></p></blockquote><p>So, in our scenario, Alice encrypts the hash using <strong>her private key</strong>.<br>This encrypted hash is called the <strong>digital signature</strong>.</p><p><strong>4. Alice sends the message and the signature</strong></p><p>Alice sends the message along with the digital signature to Bob.</p><p><strong>5. Bob verifies the signature</strong></p><p><strong>Bob performs two checks:</strong></p><ol><li><p> Bob hashes the original message.</p></li><li><p>Bob decrypts the signature using <strong>Alice&#8217;s public key</strong> to obtain the original hash.</p></li></ol><p>Finally, Bob compares the two hashes.</p><p><strong>If they match:</strong></p><ul><li><p>The message was <strong>not modified</strong> (integrity)</p></li><li><p>The message was <strong>signed by Alice</strong> (authenticity)</p></li></ul><p>If the hashes are different, the message was <strong>tampered with</strong>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZYGr!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZYGr!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 424w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 848w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 1272w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZYGr!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png" width="1456" height="731" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:731,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZYGr!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 424w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 848w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 1272w, https://substackcdn.com/image/fetch/$s_!ZYGr!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe99a5102-004e-4633-bbff-00d706f195bb_3428x1720.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Digital signature - Process overview</figcaption></figure></div><h3>Key takeaways</h3><p>Before we move to the practical lab, let&#8217;s summarize the most important points.</p><ul><li><p>Digital signatures protect both integrity and authenticity.</p></li><li><p>They combine hashing and asymmetric cryptography.</p></li><li><p>Only the sender can create a valid signature using the private key.</p></li><li><p>Anyone can verify the signature using the public key.</p></li><li><p>If the hashes don&#8217;t match, the message was tampered with.</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">If you enjoy learning cybersecurity this way, subscribe to <strong>Decoded Security</strong> for more simple breakdowns and practical labs.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Hands-On Lab: Try Digital Signatures Yourself</h2><p>Okay, enough theory! You need to convince people that you are really good at cybersecurity, and the only way to do that is to show them something real.</p><p>Let&#8217;s see how digital signatures work in practice.</p><p><strong>In this short lab, we will:</strong></p><ul><li><p>generate a <strong>private and public key</strong></p></li><li><p>create a <strong>message</strong></p></li><li><p><strong>sign</strong> the message</p></li><li><p><strong>verify</strong> the signature</p></li><li><p>modify the message and watch the verification <strong>fail</strong></p></li></ul><p>To keep things simple, we&#8217;ll run everything inside a <strong>Docker container</strong> with OpenSSL.</p><blockquote><p><strong>If you don&#8217;t know how to use Docker, I have created a simple guide for you for FREE:</strong> <a href="https://decodedsecurity.gumroad.com/l/Docker_guide">Docker Guide</a></p></blockquote><h3>Step 1: Create the Lab Environment</h3><p>Create a new folder for the lab:</p><pre><code>digital-signature-lab</code></pre><p>Inside the folder, create a file called:</p><pre><code>Dockerfile</code></pre><p>Add the following content:</p><pre><code>FROM ubuntu:22.04

RUN apt-get update &amp;&amp; \
    apt-get install -y openssl

WORKDIR /lab

CMD ["/bin/bash"]</code></pre><p>This container simply installs <strong>OpenSSL</strong>, which we&#8217;ll use to create and verify digital signatures.</p><h3>Step 2: Build the Docker Image</h3><p>Build the container:</p><pre><code>docker build -t signature-lab .</code></pre><div><hr></div><h3>Step 3: Start the Container</h3><p>Run the container:</p><pre><code>docker run -it signature-lab</code></pre><p>You are now inside the lab environment.</p><div><hr></div><h3>Step 4: Generate a Key Pair</h3><p>First, we generate a <strong>private key</strong>.</p><pre><code>openssl genrsa -out private.key 2048</code></pre><p>Now extract the <strong>public key</strong> from it:</p><pre><code>openssl rsa -in private.key -pubout -out public.key</code></pre><p>You should now have two files:</p><pre><code>private.key
public.key</code></pre><p>Remember:</p><ul><li><p><strong>Private key &#8594; used to sign</strong></p></li><li><p><strong>Public key &#8594; used to verify</strong></p></li></ul><h3>Step 5: Create a Message</h3><p>Let&#8217;s create a simple message file:</p><pre><code>echo &#8220;Send &#8364;10,000 to account 12345&#8221; &gt; message.txt</code></pre><p>Check the file:</p><pre><code>cat message.txt</code></pre><div><hr></div><h3>Step 6: Sign the Message</h3><p>Now Alice signs the message using her <strong>private key</strong>.</p><pre><code>openssl dgst -sha256 -sign private.key -out signature.bin message.txt</code></pre><p>This command:</p><ol><li><p>hashes the message using <strong>SHA-256</strong></p></li><li><p>encrypts the hash using the <strong>private key</strong></p></li><li><p>creates a <strong>digital signature</strong></p></li></ol><p>You should now have:</p><pre><code>message.txt
signature.bin</code></pre><div><hr></div><h3>Step 7:Verify the Signature</h3><p>Now Bob verifies the message using <strong>Alice&#8217;s public key</strong>.</p><pre><code>openssl dgst -sha256 -verify public.key -signature signature.bin message.txt</code></pre><p>If everything is correct, you will see:</p><pre><code>Verified OK</code></pre><p><strong>This means:</strong></p><ul><li><p>The message was <strong>not modified</strong></p></li><li><p>The signature was created using <strong>Alice&#8217;s private key</strong></p></li></ul><div><hr></div><h3>Step 8: Simulate an Attack</h3><p>Now, let&#8217;s simulate an attacker modifying the message.</p><p><strong>Change the file:</strong></p><pre><code>echo &#8220;Send &#8364;10,000 to account 99999&#8221; &gt; message.txt</code></pre><p><strong>Try to verify the signature again:</strong></p><pre><code>openssl dgst -sha256 -verify public.key -signature signature.bin message.txt</code></pre><p>This time, you should see an error message:</p><pre><code>Verification Failure (or similar)</code></pre><p>Why?</p><p>Because the message changed &#8594; the hash changed &#8594; the signature no longer matches.</p><p>This is exactly how <strong>digital signatures detect tampering</strong>.</p><div class="pullquote"><p>Were you able to reproduce the lab and verify the signature yourself?<br>Let me know in the comments. I&#8217;d love to hear if everything worked or if you ran into any issues.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/digital-signatures-explained-with/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/digital-signatures-explained-with/comments"><span>Leave a comment</span></a></p></div><div><hr></div><h1>What We Just Did</h1><p>In this small lab, you reproduced the <strong>exact process used in real systems</strong>:</p><ol><li><p>Create a message</p></li><li><p>Hash the message</p></li><li><p>Sign the hash with a private key</p></li><li><p>Send message + signature</p></li><li><p>Verify using the public key</p></li></ol><p>This mechanism protects many things you use every day:</p><ul><li><p>software updates</p></li><li><p>code signing</p></li><li><p>secure email</p></li><li><p>TLS certificates</p></li></ul><p>Without digital signatures, <strong>trust on the internet would be extremely difficult</strong>. <br></p><div class="pullquote"><p>Were you able to verify the digital signature? <br>Let me know in the comments!</p></div><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/p/digital-signatures-explained-with/comments&quot;,&quot;text&quot;:&quot;Leave a comment&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://www.decodedsecurity.com/p/digital-signatures-explained-with/comments"><span>Leave a comment</span></a></p><h2>Conclusion</h2><p>Digital signatures are one of the most important building blocks of modern cybersecurity.</p><p>They allow us to verify that the data was <strong>not modified</strong> and that it really came from the <strong>expected sender</strong>.</p><p>This simple idea, <strong>hash the data, sign the hash, verify the signature</strong>, is what protects many systems we use every day.</p><p>Software updates, secure emails, TLS certificates, and signed applications all rely on this mechanism.</p><p>Without digital signatures, trusting software and data on the internet would be extremely difficult.</p><p>Now that you understand how they work, you&#8217;ve taken another step toward thinking like a <strong>cybersecurity professional</strong>.</p><p>See you next time!</p><p>Erich<br>Decoded Security</p><h3><strong>Let&#8217;s connect</strong></h3><p>If you want to <strong>collaborate, discuss, or just geek out over virtualization and cloud security</strong>, reach out to me:</p><ul><li><p><strong>Email:</strong> erich.winkler@decodedsecurity.com</p></li><li><p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/winkleri/">Erich Winkler</a></p></li><li><p><strong>Gumroad community: </strong><a href="https://decodedsecurity.gumroad.com/">Decoded Security</a></p></li><li><p><strong><a href="https://open.substack.com/pub/cybersecerich/p/start-here-decoded-security-roadmap?utm_campaign=post-expanded-share&amp;utm_medium=web">Start Here: Decoded Security Roadmap</a></strong></p></li></ul><p><strong>Enjoyed this article?</strong> Like it or drop a comment. I&#8217;d love to hear your thoughts and questions!</p><p><strong>Let&#8217;s learn and grow together!</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.decodedsecurity.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Subscribe to <strong>Decoded Security</strong> to learn more about cybersecurity for FREE!</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p><p></p>]]></content:encoded></item></channel></rss>