<?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>Forem: Aniket Mishra</title>
    <description>The latest articles on Forem by Aniket Mishra (@aniketmishra).</description>
    <link>https://forem.com/aniketmishra</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F697092%2Fb8ff2b8c-a37f-4083-ba0d-08855c41847b.jpg</url>
      <title>Forem: Aniket Mishra</title>
      <link>https://forem.com/aniketmishra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/aniketmishra"/>
    <language>en</language>
    <item>
      <title>We Built HookRadar: An Open Source Webhook Tester for Faster Debugging</title>
      <dc:creator>Aniket Mishra</dc:creator>
      <pubDate>Sat, 07 Mar 2026 14:38:19 +0000</pubDate>
      <link>https://forem.com/aniketmishra/we-built-hookradar-an-open-source-webhook-tester-for-faster-debugging-2766</link>
      <guid>https://forem.com/aniketmishra/we-built-hookradar-an-open-source-webhook-tester-for-faster-debugging-2766</guid>
      <description>&lt;h1&gt;
  
  
  We Built HookRadar: An Open Source Webhook Tester for Faster Debugging
&lt;/h1&gt;

&lt;p&gt;If you have ever worked with webhooks, you already know the frustrating part is not sending requests.&lt;/p&gt;

&lt;p&gt;It is receiving them.&lt;/p&gt;

&lt;p&gt;Everything looks fine until Stripe, Razorpay, GitHub, Slack, or some other service has to send data back to your local app. And then the usual problems start: localhost is not publicly reachable, debugging is messy, request payloads are hard to inspect, and reproducing failures takes more time than it should.&lt;/p&gt;

&lt;p&gt;That exact pain is why we built &lt;strong&gt;HookRadar&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Live Demo and GitHub
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Live App: &lt;a href="https://hookradar.up.railway.app" rel="noopener noreferrer"&gt;https://hookradar.up.railway.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/aniketmishra-0/Hookradar" rel="noopener noreferrer"&gt;https://github.com/aniketmishra-0/Hookradar&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why we built it
&lt;/h2&gt;

&lt;p&gt;We wanted a tool that could do a few things well:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create instant webhook endpoints&lt;/li&gt;
&lt;li&gt;show incoming requests in real time&lt;/li&gt;
&lt;li&gt;help inspect payloads properly&lt;/li&gt;
&lt;li&gt;replay failed requests&lt;/li&gt;
&lt;li&gt;support forwarding to local or staging environments&lt;/li&gt;
&lt;li&gt;stay open source and self-hostable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A lot of existing tools are useful, but we wanted something we could run ourselves, extend, and keep simple.&lt;/p&gt;

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

&lt;p&gt;HookRadar is an open-source webhook tester and debugger.&lt;/p&gt;

&lt;p&gt;With it, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;generate unique webhook URLs&lt;/li&gt;
&lt;li&gt;see incoming requests live&lt;/li&gt;
&lt;li&gt;inspect headers, query params, body, IP, and response details&lt;/li&gt;
&lt;li&gt;replay captured requests to another URL&lt;/li&gt;
&lt;li&gt;auto-forward webhooks to your own server&lt;/li&gt;
&lt;li&gt;customize status codes, headers, response body, and delay&lt;/li&gt;
&lt;li&gt;filter request history&lt;/li&gt;
&lt;li&gt;use a CLI for terminal-based workflows&lt;/li&gt;
&lt;li&gt;self-host it with Docker&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal was straightforward: make webhook debugging less painful and more visible.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we used to build it
&lt;/h2&gt;

&lt;p&gt;We kept the stack simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;React 19 + Vite&lt;/strong&gt; for the frontend&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Node.js + Express&lt;/strong&gt; for the backend&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;WebSockets&lt;/strong&gt; for live request updates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SQLite&lt;/strong&gt; for persistent storage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We also added an offline webhook analysis layer that can help detect common sources and flag validation or security issues.&lt;/p&gt;

&lt;h2&gt;
  
  
  What makes it useful in practice
&lt;/h2&gt;

&lt;p&gt;The biggest difference is feedback speed.&lt;/p&gt;

&lt;p&gt;As soon as a webhook hits an endpoint, it shows up in the dashboard immediately. You can open the request, inspect the payload, and reproduce it without switching between a bunch of tools.&lt;/p&gt;

&lt;p&gt;That matters a lot when you are debugging:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;payment events&lt;/li&gt;
&lt;li&gt;GitHub webhooks&lt;/li&gt;
&lt;li&gt;Slack integrations&lt;/li&gt;
&lt;li&gt;Shopify events&lt;/li&gt;
&lt;li&gt;internal automations&lt;/li&gt;
&lt;li&gt;staging or QA environments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We also built a CLI because sometimes opening another browser tab is unnecessary. In many cases, listening to requests from the terminal is faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example workflow
&lt;/h2&gt;

&lt;p&gt;Create an endpoint, send a request, and inspect it:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
npm install
npm run dev

curl -X POST http://localhost:3001/hook/YOUR_SLUG \
  -H "Content-Type: application/json" \
  -d '{"event":"payment.completed","amount":99.99}'
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>opensource</category>
      <category>webhook</category>
      <category>node</category>
      <category>react</category>
    </item>
    <item>
      <title>15 In-Demand Cybersecurity Courses</title>
      <dc:creator>Aniket Mishra</dc:creator>
      <pubDate>Fri, 19 Nov 2021 11:44:27 +0000</pubDate>
      <link>https://forem.com/aniketmishra/15-in-demand-cybersecurity-courses-389c</link>
      <guid>https://forem.com/aniketmishra/15-in-demand-cybersecurity-courses-389c</guid>
      <description>&lt;h2&gt;
  
  
  Subscribe My channel
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://youtu.be/PN5tdWupD3I" rel="noopener noreferrer"&gt;YouTube&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;1-Practical Cyber Threat Intelligence&lt;/p&gt;

&lt;p&gt;2-Fundamental of Networking Concepts, Protocols, and Security&lt;/p&gt;

&lt;p&gt;3-Applied Python for Professionals&lt;/p&gt;

&lt;p&gt;4-Beginners Guide to NMAP and Zenmap&lt;/p&gt;

&lt;p&gt;5-Securing Your Network from Attacks&lt;/p&gt;

&lt;p&gt;6-Windows Penetration Testing Essentials&lt;/p&gt;

&lt;p&gt;7-OSINT - Open-source Intelligence&lt;/p&gt;

&lt;p&gt;8-Session Hijacking and Prevention Techniques&lt;/p&gt;

&lt;p&gt;9-Shell Scripting with Bash&lt;/p&gt;

&lt;p&gt;10-Reverse Engineering Part – 1&lt;/p&gt;

&lt;p&gt;11-Reverse Engineering Part – 2&lt;/p&gt;

&lt;p&gt;12-Build Microservices with Spring Cloud and Spring Boot&lt;/p&gt;

&lt;p&gt;13-5G Security Deconstructed&lt;/p&gt;

&lt;p&gt;14-Exploitation with Kali&lt;/p&gt;

&lt;p&gt;15-OSINT Level 2&lt;/p&gt;

&lt;p&gt;16-OWASP Top 10 Security Fundamentals (LIMITED-TIME BONUS)&lt;/p&gt;

&lt;p&gt;17-Mastering Database Reconnaissance and Exploitation (LIMITED-TIME BONUS)&lt;/p&gt;

&lt;p&gt;18-How to succeed in a Data Protection Officer Role (LIMITED-TIME BONUS)&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>python</category>
      <category>networking</category>
      <category>codered</category>
    </item>
    <item>
      <title>My favourite DevOps &amp; cloud native tools By Civo</title>
      <dc:creator>Aniket Mishra</dc:creator>
      <pubDate>Wed, 17 Nov 2021 15:06:25 +0000</pubDate>
      <link>https://forem.com/aniketmishra/my-favourite-devops-cloud-native-tools-by-civo-6cl</link>
      <guid>https://forem.com/aniketmishra/my-favourite-devops-cloud-native-tools-by-civo-6cl</guid>
      <description>&lt;p&gt;Hello everyone,&lt;/p&gt;

&lt;p&gt;since I have been working in the DevOps space for a year now, I thought that it would be interesting to create an overview of my favourite cloud native tool. This is a list of tools that I either currently use or got to use within the previous year.&lt;/p&gt;

&lt;p&gt;I would love to hear from you about your favourite tools — and if I don't know them yet, I might create an overview video so please do reach out.&lt;/p&gt;

&lt;p&gt;All tools are divided by category — now there are maybe some tools that I have not thought of and will later on. Thus, this blog post will likely be a live update of my favourite tools.&lt;/p&gt;

&lt;p&gt;If you prefer the video version of this post, here is the accompanying YouTube video:&lt;/p&gt;

&lt;h2&gt;
  
  
  CI/CD pipelines
&lt;/h2&gt;

&lt;p&gt;The CI/CD pipeline tool that you choose to use, either for your personal development needs or for your business, will highly depend on the version control system that you are already using and the resources that you have available. For instance, if you are already using GitLab, it makes sense to utilise the GitLab ecosystem. Similarly, when you are using GitHub, the GitHub ecosystem will likely be your preferred choice.&lt;/p&gt;

&lt;p&gt;When I started working in the cloud native ecosystem, I was first introduced to Codefresh. Codefresh is a really nice platform that is easy to use and will allow you to cover complex use cases while getting comprehensive insights into your deployments. However, I would argue that for most companies it is going to be an overkill and you would not actually need most of their features. Codefresh provides DevOps specific tools and Dashboards to provide you with additional insights into your deployments. Their platform is constantly evolving and not all features might be supported at the same level. Similarly, you have a chance to get access to an innovative platform that provides you with additional GitOps specific functionality. This is something that you are less likely to find on conventional platforms.&lt;/p&gt;

&lt;p&gt;Other than Codefresh, I have worked with GitHub Actions and GitLab CI. For most teams, I would argue that both provide enough functionality to aut7omate your deployments. In this case, I would make it dependent on where your project is hosted. With GitHub Actions, you will have a lot more community supports.&lt;/p&gt;

&lt;p&gt;For further information, have a look at this video I made providing an overview of GitHub Actions.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/3LBLTGfVuj4" rel="noopener noreferrer"&gt;Introduction to GitHub Actions&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Observability
&lt;/h2&gt;

&lt;p&gt;I really really love using Grafana. It takes some time to get started and use it to its "best". However, once you figure out how to set up new dashboards for your data, it allows you to filter your metrics for the data that is useful for your application.&lt;/p&gt;

&lt;p&gt;Below is a gif from this examples tutorial on Katacoda that Bartek and I created a while ago. Try it out yourself! The link to the Katacoda tutorial is in the description of the repository.&lt;/p&gt;

&lt;p&gt;Furthermore, Grafana launched on-call functionality alongside other highly requested features during ObservabilityCON (8th to 10th of November). This, alongside Grafana alerts and other features, makes Grafana the go-to-tool for all things monitoring and observability that you can no longer live without.&lt;/p&gt;

&lt;h2&gt;
  
  
  Kubernetes Provider
&lt;/h2&gt;

&lt;p&gt;I am highly biased here since I am working for Civo. However, if your main interest is Kubernetes clusters and you are looking for a managed solution, Civo has the best user experience. It is really easy to get started with AND your cloud bill will stay low. Many companies are already using Civo in production and you can get started too. Everything that can be built on k8s clusters can also be built on Civo k3s clusters.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/_aZLHlzuG9U" rel="noopener noreferrer"&gt;Civo Cloud Kubernetes Overview&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;For further information, have a look at this video I made providing an overview of Civo.&lt;/p&gt;

&lt;p&gt;Note that with the Prometheus operator on the marketplace, you can spin up your entire observability stack, including Prometheus and Grafana, alongside your Kubernetes cluster in just a few minutes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Kubernetes Configurations and Policy
&lt;/h2&gt;

&lt;p&gt;I have talked about Datree a lot before — first of all, because you get it practically for free. Secondly, Kubernetes is difficult and Datree is THE tool that can make it a little bit easier for you to get started by checking your Kubernetes Manifests for any misconfiguration that might have been introduced. You can set policies and even customise policies to fit your application needs.&lt;/p&gt;

&lt;p&gt;For further information, have a look at this video I made providing an overview of Datree.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/MpdhrabnpYs" rel="noopener noreferrer"&gt;Verify Kubernetes Deployments with Datree&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Infrastructure
&lt;/h2&gt;

&lt;p&gt;I work with Terraform on a daily basis for the past 6 months. The documentation is great. Once you have figured out a flow for your infrastructure setup and deployments, you will basically do the same thing every time you deploy new tools or you introduce any updates. Automating your testing and deployment process can help you save a lot of time in the long term.&lt;/p&gt;

&lt;p&gt;This video shows a simplified version of the flow that we have in place at Civo. If you are interested in what the use of Terraform may look like in production, then have a look at this Civo meetup recording.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/Qq1cfVw1Mx4" rel="noopener noreferrer"&gt;Full Tutorial: Deploying Helm Charts in Kubernetes with Terraform&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cloud Native to the extreme
&lt;/h2&gt;

&lt;p&gt;Those of you who already know me are aware of my constant involvement with Crossplane and how much I like to showcase its use. I've also had the chance to create the Civo-Crossplane provider — so, if you are already using Civo, you might want to have a look at Crossplane on how you can optimise your cloud native infrastructure management. Overall, I like Crossplane because it allows me to show how far cloud native resource management can go. Crossplane helps you to manage your infrastructure as Kubernetes resources, spin up and reconcile infrastructure like you would manage any other Kubernetes resources. If this got you curious, have a look at this overview video:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/Dw0SMLHZvXM" rel="noopener noreferrer"&gt;Tutorial Using Crossplane to Setup Your Azure Kubernetes Service: Day 25 of #100DaysOfKubernetes&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;p&gt;Aqua Sec has several open source tools that allow you to scan your cloud native deployments for vulnerabilities. I am just getting started with Security-related tools. However, if this is something you are interested in, I would suggest having a look at Aqua Sec or Falco. (Maybe I will write a separate blog post about using their tools).&lt;/p&gt;

&lt;p&gt;FYI&lt;/p&gt;

&lt;p&gt;You might wonder why I am not including any "developer platforms". Hereby, I mean platforms that allow you to deploy containers on Kubernetes clusters with minimum effort. I have a very strong opinion on "end-to-end" platforms. If you would like to hear it, please do let me know and I am happy to make a separate video about it. However, this would detract from the tools that I have outlined in this post.&lt;/p&gt;

&lt;p&gt;Summarising&lt;br&gt;
The CNCF landscape is massive and as you can imagine, there is always "yet another tool to explore". Thus, this list will likely change over the next months or years. Maybe at some point, I will redo it completely. Until then, I hope this gave you some insights into the tools that I like to use (some of them on a daily basis) and the tools that I would generally recommend.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Free Learning Resources</title>
      <dc:creator>Aniket Mishra</dc:creator>
      <pubDate>Tue, 16 Nov 2021 04:13:25 +0000</pubDate>
      <link>https://forem.com/aniketmishra/free-learning-resources-17nm</link>
      <guid>https://forem.com/aniketmishra/free-learning-resources-17nm</guid>
      <description>&lt;h1&gt;
  
  
  TOPICS
&lt;/h1&gt;

&lt;p&gt;Python, C++, Java, Javascript, DATA STRUCTURES &amp;amp; ALGORITHMS, DSA Resources, MOOCS Text Based Learning, Dynamic Programming, Graph Algorithms, Trees,Strategy, Advanced Competitive Programming Hacks, CS Fundamentals, System Design, Book, Practical, ETC.&lt;/p&gt;

&lt;p&gt;First Watch this video - &lt;a href="https://www.youtube.com/watch?v=uvkJe7VldJ4" rel="noopener noreferrer"&gt;Click&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free Learning Resource - &lt;a href="https://aniketmishra0.github.io/Free_Learning/" rel="noopener noreferrer"&gt;Click Now&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click - &lt;a href="https://www.youtube.com/channel/UCMursGf3xLcvYYhcI_7WIng/" rel="noopener noreferrer"&gt;Youtube&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>free</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Microsoft Learn Student Ambassador Program</title>
      <dc:creator>Aniket Mishra</dc:creator>
      <pubDate>Tue, 16 Nov 2021 03:37:01 +0000</pubDate>
      <link>https://forem.com/aniketmishra/microsoft-learn-student-ambassador-program-36e</link>
      <guid>https://forem.com/aniketmishra/microsoft-learn-student-ambassador-program-36e</guid>
      <description>&lt;h2&gt;
  
  
  What Is Microsoft Learn Student Ambassadors Program?
&lt;/h2&gt;

&lt;p&gt;Microsoft Learn Student Ambassador program is aimed at bringing students all over the world who has interest in technology together. These students get the opportunity to connect and interact with others on topics they are passionate about (mostly Microsoft Technologies). Also, they are able to organize events to teach each other various tech stacks.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fniquvej8dxlcm3rqqb85.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fniquvej8dxlcm3rqqb85.png" alt=" " width="800" height="448"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Application Requirements
&lt;/h2&gt;

&lt;p&gt;You must be 16 years or older.&lt;br&gt;
You must be enrolled in an accredited academic institution(eg: college, university).&lt;br&gt;
You must not be a Microsoft or Government employee.&lt;br&gt;
You need to at least have some basic knowledge in coding.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Should You Join?
&lt;/h2&gt;

&lt;p&gt;There are a lot of benefits for joining this amazing program. A few of them are listed below:&lt;/p&gt;

&lt;p&gt;Free Swag Box from Microsoft&lt;br&gt;
Access to Microsoft 365&lt;br&gt;
Access to TechSmith products(i.e Camtasia and Snagit)&lt;br&gt;
Name.com voucher&lt;br&gt;
Azure credits&lt;br&gt;
LinkedIn Learning Voucher&lt;br&gt;
Free access to one or more Microsoft Certification voucher and more.&lt;br&gt;
&lt;strong&gt;NOTE&lt;/strong&gt;: Some of these benefits are given to you based on the milestone you have achieved.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgkytgck47iapu98ep0lf.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgkytgck47iapu98ep0lf.jpeg" alt=" " width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Apply Here
&lt;/h2&gt;

&lt;p&gt;To apply, Use this Link: &lt;a href="https://studentambassadors.microsoft.com/" rel="noopener noreferrer"&gt;Apply for MLSA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope that this was helpful to you. If you have any questions, please drop it in the comment section below and I will make sure to answer all questions you have. Also, you can connect with me on:&lt;br&gt;
&lt;a href="https://twitter.com/aniketmishra0" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;br&gt;
&lt;a href="https://linkedin/in/aniketmishra0" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/p&gt;

</description>
      <category>microsoft</category>
      <category>beginners</category>
      <category>programming</category>
      <category>azure</category>
    </item>
  </channel>
</rss>
