<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Walter White</title>
    <description>The latest articles on DEV Community by Walter White (@heisenberg_blue).</description>
    <link>https://dev.to/heisenberg_blue</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4036768%2F63d3ec5e-5c04-4fd3-b522-0a97c37f26e2.jpg</url>
      <title>DEV Community: Walter White</title>
      <link>https://dev.to/heisenberg_blue</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/heisenberg_blue"/>
    <language>en</language>
    <item>
      <title>Hookbox: a self-hosted webhook inbox with HMAC verification and replay</title>
      <dc:creator>Walter White</dc:creator>
      <pubDate>Sun, 19 Jul 2026 16:43:11 +0000</pubDate>
      <link>https://dev.to/heisenberg_blue/hookbox-a-self-hosted-webhook-inbox-with-hmac-verification-and-replay-3h80</link>
      <guid>https://dev.to/heisenberg_blue/hookbox-a-self-hosted-webhook-inbox-with-hmac-verification-and-replay-3h80</guid>
      <description>&lt;h1&gt;
  
  
  Hookbox: a self-hosted webhook inbox with HMAC verification and replay
&lt;/h1&gt;

&lt;p&gt;Debugging webhooks without a proper inbox is painful: ngrok tabs everywhere, lost payloads, no way to prove a signature was valid.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/mamyan2001-gif/hookbox" rel="noopener noreferrer"&gt;Hookbox&lt;/a&gt;&lt;/strong&gt; is a small self-hosted webhook inbox I built for that workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Create an inbox with a unique capture URL (&lt;code&gt;/h/{id}&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Capture any HTTP method — headers, query, body&lt;/li&gt;
&lt;li&gt;Optional &lt;strong&gt;HMAC&lt;/strong&gt; verification (&lt;code&gt;X-Hub-Signature-256&lt;/code&gt; / &lt;code&gt;X-Signature&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Keep the last 100 events (body capped)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Replay&lt;/strong&gt; a captured event to a target URL&lt;/li&gt;
&lt;li&gt;Cookie / Authorization headers redacted in storage&lt;/li&gt;
&lt;li&gt;SSRF guards on replay targets&lt;/li&gt;
&lt;li&gt;Docker Compose one-command deploy&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/mamyan2001-gif/hookbox.git
&lt;span class="nb"&gt;cd &lt;/span&gt;hookbox
docker compose up &lt;span class="nt"&gt;--build&lt;/span&gt;
&lt;span class="c"&gt;# → http://localhost:5070&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Design notes
&lt;/h2&gt;

&lt;p&gt;I wanted something closer to RequestBin / webhook.site, but:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;easy to run on your own machine or VPS&lt;/li&gt;
&lt;li&gt;explicit about signature verification&lt;/li&gt;
&lt;li&gt;careful about replay (don't become an open SSRF proxy)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you integrate Stripe, GitHub, or custom webhooks often, an inspect + replay loop saves a lot of time.&lt;/p&gt;

&lt;h2&gt;
  
  
  More from the same toolbox
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/seal" rel="noopener noreferrer"&gt;Seal&lt;/a&gt; — one-time secrets (AES-256-GCM)&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/pulseboard" rel="noopener noreferrer"&gt;Pulseboard&lt;/a&gt; — HTTP uptime monitoring&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/dropkit" rel="noopener noreferrer"&gt;Dropkit&lt;/a&gt; — self-hosted file drop&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm Artyom — full-stack (React / Node / TypeScript) in Yerevan, looking for remote work. Stars, issues, and harsh reviews on the SSRF/HMAC bits are all welcome.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/mamyan2001-gif/hookbox" rel="noopener noreferrer"&gt;mamyan2001-gif/hookbox&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>node</category>
      <category>webhooks</category>
      <category>docker</category>
    </item>
    <item>
      <title>I built a self-hosted one-time secrets service in Node — here's the threat model</title>
      <dc:creator>Walter White</dc:creator>
      <pubDate>Sun, 19 Jul 2026 16:43:09 +0000</pubDate>
      <link>https://dev.to/heisenberg_blue/i-built-a-self-hosted-one-time-secrets-service-in-node-heres-the-threat-model-58ak</link>
      <guid>https://dev.to/heisenberg_blue/i-built-a-self-hosted-one-time-secrets-service-in-node-heres-the-threat-model-58ak</guid>
      <description>&lt;h1&gt;
  
  
  I built a self-hosted one-time secrets service in Node — here's the threat model
&lt;/h1&gt;

&lt;p&gt;Sharing an API key in Slack feels wrong. Password managers work great inside a team — less great when you need a one-off secret for a contractor.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;&lt;a href="https://github.com/mamyan2001-gif/seal" rel="noopener noreferrer"&gt;Seal&lt;/a&gt;&lt;/strong&gt;: paste a secret, get a link, burn after read.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;AES-256-GCM ciphertext on disk&lt;/li&gt;
&lt;li&gt;Optional passphrase (bcrypt gate)&lt;/li&gt;
&lt;li&gt;Expiry + max views&lt;/li&gt;
&lt;li&gt;Shared rate limits across processes&lt;/li&gt;
&lt;li&gt;CSP + secret scrubbing in the UI&lt;/li&gt;
&lt;li&gt;Docker Compose one-command deploy&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What it is &lt;em&gt;not&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;It is &lt;strong&gt;not&lt;/strong&gt; zero-knowledge. If you run the server, you hold &lt;code&gt;SEAL_MASTER_KEY&lt;/code&gt; and can decrypt. That honesty belongs in the README — and it does.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Trust&lt;/th&gt;
&lt;th&gt;Reality&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Transport&lt;/td&gt;
&lt;td&gt;Use HTTPS in production&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;At rest&lt;/td&gt;
&lt;td&gt;AES-256-GCM with a server master key&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Passphrase&lt;/td&gt;
&lt;td&gt;Gates reveal — does not encrypt the payload by itself&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Server operator&lt;/td&gt;
&lt;td&gt;Can decrypt seals with the master key&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Run it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/mamyan2001-gif/seal.git
&lt;span class="nb"&gt;cd &lt;/span&gt;seal
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;SEAL_MASTER_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;$(&lt;/span&gt;openssl rand &lt;span class="nt"&gt;-hex&lt;/span&gt; 32&lt;span class="si"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
docker compose up &lt;span class="nt"&gt;--build&lt;/span&gt;
&lt;span class="c"&gt;# → http://localhost:5080&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why I care about this shape of project
&lt;/h2&gt;

&lt;p&gt;I'm a full-stack developer in Yerevan (UTC+4), open to remote roles. I like tools that are small enough to understand, honest about security tradeoffs, and runnable in under a minute.&lt;/p&gt;

&lt;p&gt;Related open-source tools I shipped:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/hookbox" rel="noopener noreferrer"&gt;Hookbox&lt;/a&gt; — webhook inbox + HMAC verify + replay&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/pulseboard" rel="noopener noreferrer"&gt;Pulseboard&lt;/a&gt; — self-hosted HTTP uptime monitoring&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mamyan2001-gif/webmask" rel="noopener noreferrer"&gt;WebMask&lt;/a&gt; — OWASP-style website checks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feedback on the threat model and rate-limit design is welcome — especially if you self-host PrivateBin or similar.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/mamyan2001-gif/seal" rel="noopener noreferrer"&gt;mamyan2001-gif/seal&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>node</category>
      <category>docker</category>
      <category>security</category>
    </item>
  </channel>
</rss>
