<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog on JournalCTL</title><link>https://journalctl.io/posts/</link><description>Recent content in Blog on JournalCTL</description><generator>Hugo -- gohugo.io</generator><language>en-AU</language><copyright>© 2026 Pralaya Panta</copyright><lastBuildDate>Sun, 22 Mar 2026 10:51:36 +1000</lastBuildDate><atom:link href="https://journalctl.io/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>How to Build a GIAC Index That Actually Works</title><link>https://journalctl.io/posts/giac-indexing-system/</link><pubDate>Sun, 22 Mar 2026 10:51:36 +1000</pubDate><guid>https://journalctl.io/posts/giac-indexing-system/</guid><description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;GIAC exams are open-book, but time pressure requires a fast, searchable index to pass cleanly.&lt;/li&gt;
&lt;li&gt;A proven 4-phase indexing workflow (Read, Capture, Refine, Test) used to score 90%+ on GSEC and GCIH.&lt;/li&gt;
&lt;li&gt;Focus on high-value keywords, exact command syntaxes, and book page numbers over long summaries.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;&lt;p&gt;Open-book sounds like a gift. In practice, it isn&amp;rsquo;t â€” not if you haven&amp;rsquo;t built a proper GIAC index before walking in.&lt;/p&gt;
&lt;p&gt;GIAC exams are timed, scenario-heavy, and cover material spread across five or more books. If you&amp;rsquo;re stopping to flip through a book every few questions, you&amp;rsquo;ll run out of time long before you run out of questions. As a result, the open-book format rewards people who built an index, not people who skimmed the material and assumed they could just look things up.&lt;/p&gt;</description></item><item><title>PowerShell Basics #2: The Help System</title><link>https://journalctl.io/posts/powershell-help-system/</link><pubDate>Sun, 15 Mar 2026 09:50:35 +1000</pubDate><guid>https://journalctl.io/posts/powershell-help-system/</guid><description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Experts don&amp;rsquo;t memorize thousands of cmdlets â€” they use the built-in help system.&lt;/li&gt;
&lt;li&gt;Always run Update-Help -Force as administrator to download local help documentation.&lt;/li&gt;
&lt;li&gt;Master the 4-step terminal discovery pattern: Get-Command, help, help -Parameter, help -Examples.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;&lt;p&gt;Experts don&amp;rsquo;t memorise thousands of PowerShell commands. Don Jones and Jeff Hicks cite a study in &lt;em&gt;Learn PowerShell in a Month of Lunches&lt;/em&gt; â€” two groups of IT pros, beginners and experts, sat a written test on PowerShell. Scores were similar across both groups. Then they ran the test again with access to a running PowerShell session. The gap between the two groups became significant. The difference? Experts knew how to use the help system to find answers on the fly.&lt;/p&gt;</description></item><item><title>PowerShell Basics #1: Setting Up Your Environment</title><link>https://journalctl.io/posts/get-started-with-powershell/</link><pubDate>Thu, 05 Feb 2026 10:33:22 +1000</pubDate><guid>https://journalctl.io/posts/get-started-with-powershell/</guid><description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PowerShell is a cross-platform, object-oriented shell &amp;amp; scripting language for Windows, Linux, and macOS.&lt;/li&gt;
&lt;li&gt;Install PowerShell 7+ Core via Winget alongside Windows Terminal for the optimal command-line experience.&lt;/li&gt;
&lt;li&gt;Understand the difference between legacy Windows PowerShell 5.1 and modern cross-platform PowerShell 7+.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;&lt;p&gt;PowerShell is a command-line shell and scripting language from Microsoft for Windows, Linux, and macOS. It helps automate administrative tasks and manage infrastructure cleanly.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Command-line shell:&lt;/strong&gt; Interactive prompt with tab completion &amp;amp; predictive IntelliSense&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Scripting language:&lt;/strong&gt; Write complete, reusable scripts (.ps1) to automate complex workflows&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Object-oriented:&lt;/strong&gt; Commands (cmdlets) pass rich .NET objects through the pipeline, not raw text strings&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cross-platform:&lt;/strong&gt; Runs on Windows, Linux, and macOS (PowerShell 7+)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 class="relative group"&gt;Windows PowerShell 5.1 vs. PowerShell 7+
 &lt;div id="windows-powershell-51-vs-powershell-7" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#windows-powershell-51-vs-powershell-7" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Feature&lt;/th&gt;
					&lt;th&gt;Windows PowerShell 5.1&lt;/th&gt;
					&lt;th&gt;PowerShell 7+ (Core)&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Underlying Engine&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;.NET Framework (Windows only)&lt;/td&gt;
					&lt;td&gt;.NET 8+ (Cross-platform)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Supported OS&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;Windows 7 / 10 / 11 / Server&lt;/td&gt;
					&lt;td&gt;Windows, Linux, macOS&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Performance&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;Standard&lt;/td&gt;
					&lt;td&gt;High performance &amp;amp; parallel pipeline (ForEach-Object -Parallel)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;strong&gt;Executable Name&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;powershell.exe&lt;/td&gt;
					&lt;td&gt;pwsh.exe&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Windows PowerShell 5.1 comes built into Windows and will remain for backward compatibility. Modern automation should target &lt;strong&gt;PowerShell 7+ (pwsh.exe)&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>My Journey to GCIH Certification</title><link>https://journalctl.io/posts/my-journey-to-gcih-certification/</link><pubDate>Sun, 01 Feb 2026 11:06:21 +1000</pubDate><guid>https://journalctl.io/posts/my-journey-to-gcih-certification/</guid><description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The SANS GCIH (SEC504) covers incident response, hacker techniques, exploits, and live forensics.&lt;/li&gt;
&lt;li&gt;Preparation requires an in-depth index, hands-on workbook auditing, and strategic practice test timing.&lt;/li&gt;
&lt;li&gt;Passed at 90%+ score as part of the SANS Technology Institute Master&amp;rsquo;s Degree program.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;&lt;p&gt;Passing the SANS GCIH (SEC504) exam was one of the most challenging yet rewarding experiences in my cybersecurity journey. As part of my master&amp;rsquo;s degree program at SANS, I tackled this comprehensive incident handling certification.&lt;/p&gt;</description></item></channel></rss>