<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>PicoCTF 2025 on NullByte Notes</title>
    <link>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/</link>
    <description>Recent content in PicoCTF 2025 on NullByte Notes</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 05 Jun 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title># cookie monster secret recipe</title>
      <link>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/cookie-monster-secret-recipe/</link>
      <pubDate>Fri, 05 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/cookie-monster-secret-recipe/</guid>
      <description>&lt;hr&gt;
&lt;h1 id=&#34;description&#34;&gt;Description&lt;/h1&gt;
&lt;p&gt;Cookie Monster has hidden his top-secret cookie recipe somewhere on his website. As an aspiring cookie detective, your mission is to uncover this delectable secret. Can you outsmart Cookie Monster and find the hidden recipe?
You can access the Cookie Monster here and good luck&lt;/p&gt;
&lt;h2 id=&#34;solution&#34;&gt;solution&lt;/h2&gt;
&lt;p&gt;We should check for HTTP cookies.&lt;/p&gt;
&lt;p&gt;Check the cookies&lt;br&gt;
Start DevTools in the browser by pressing F12 or using Ctrl + Shift + I.&lt;br&gt;
Then select the Application tab and make sure &lt;a href=&#34;http://verbal-sleep.picoctf.net:56241&#34;&gt;http://verbal-sleep.picoctf.net:56241&lt;/a&gt; is selected under Cookies in the menu to the left.&lt;/p&gt;</description>
    </item>
    <item>
      <title># hashcrack</title>
      <link>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/hashcrack/</link>
      <pubDate>Fri, 05 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/hashcrack/</guid>
      <description>&lt;hr&gt;
&lt;h1 id=&#34;description&#34;&gt;Description&lt;/h1&gt;
&lt;p&gt;A company stored a secret message on a server which got breached due to the admin using weakly hashed passwords. Can you gain access to the secret stored within the server?
Access the server using nc verbal-sleep.picoctf.net 57819&lt;/p&gt;
&lt;h1 id=&#34;solution&#34;&gt;solution&lt;/h1&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;┌──(root㉿Harsh)-[/home/jhagan]
└─# nc verbal-sleep.picoctf.net 57819
Welcome!! Looking For the Secret?

We have identified a hash: 482c811da5d5b4bc6d497ffa98491e38
Enter the password for identified hash: password123
Correct! You&amp;#39;ve cracked the MD5 hash with no secret found!

Flag is yet to be revealed!! Crack this hash: b7a875fc1ea228b9061041b7cec4bd3c52ab3ce3
Enter the password for the identified hash: letmein
Correct! You&amp;#39;ve cracked the SHA-1 hash with no secret found!

Almost there!! Crack this hash: 916e8c4f79b25028c9e467f1eb8eee6d6bbdff965f9928310ad30a8d88697745
Enter the password for the identified hash: qwerty098
Correct! You&amp;#39;ve cracked the SHA-256 hash with a secret found.
The flag is: picoCTF{UseStr0nG_h@shEs_&amp;amp;PaSswDs!_869e658e}
&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;
&lt;li&gt;crack the hashes by  &lt;a href=&#34;https://crackstation.net/&#34;&gt;CrackStation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;-1-length-of-the-hash&#34;&gt;🔍 1. Length of the Hash&lt;/h1&gt;
&lt;p&gt;Each hashing algorithm produces a fixed-length output, typically in hexadecimal.&lt;/p&gt;</description>
    </item>
    <item>
      <title># heap-dump</title>
      <link>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/head-dump/</link>
      <pubDate>Fri, 05 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/head-dump/</guid>
      <description>&lt;hr&gt;
&lt;h1 id=&#34;-challenge-description&#34;&gt;🧩 Challenge Description&lt;/h1&gt;
&lt;p&gt;Explore a web application and find an endpoint that exposes a file containing a hidden flag. The application is a blog where one of the articles discusses API documentation. The goal is to find a file generated from the server’s memory that contains the flag.&lt;/p&gt;
&lt;p&gt;A heap dump is a snapshot of a program’s memory (specifically, the heap section) at a particular point in time.
It typically contains:&lt;/p&gt;</description>
    </item>
    <item>
      <title># SSTI1</title>
      <link>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/ssti1/</link>
      <pubDate>Fri, 05 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jhagan-cyber-blog.pages.dev/writeups/picoctf/pico-2025/ssti1/</guid>
      <description>&lt;hr&gt;
&lt;h1 id=&#34;description&#34;&gt;Description:&lt;/h1&gt;
&lt;p&gt;I made a cool website where you can announce whatever you want!
Try it out!
I heard templating is a cool and modular way to build web apps!
Check out my website here!&lt;/p&gt;
&lt;h3 id=&#34;hints&#34;&gt;Hints:&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Server Side Template Injection&lt;/li&gt;
&lt;/ol&gt;
&lt;h1 id=&#34;solution&#34;&gt;Solution&lt;/h1&gt;
&lt;p&gt;Browse to the web site and you will see a web page that includes the text&lt;/p&gt;
&lt;h3 id=&#34;verify-ssti&#34;&gt;Verify SSTI&lt;/h3&gt;
&lt;p&gt;The hint has already given away that the site uses &lt;a href=&#34;https://portswigger.net/web-security/server-side-template-injection&#34;&gt;server-side templates&lt;/a&gt; but we need to verify that and find out the backend technology used.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
