<?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: Sgt.AzureDev</title>
    <description>The latest articles on DEV Community by Sgt.AzureDev (@sgtazuredev).</description>
    <link>https://dev.to/sgtazuredev</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%2F3649875%2F6029bac6-7f53-4c0c-8980-d62a7d9fc7bf.jpeg</url>
      <title>DEV Community: Sgt.AzureDev</title>
      <link>https://dev.to/sgtazuredev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sgtazuredev"/>
    <language>en</language>
    <item>
      <title>My journey building a Cyber Threat Intelligence Agent with Google Kaggle</title>
      <dc:creator>Sgt.AzureDev</dc:creator>
      <pubDate>Sun, 07 Dec 2025 07:17:30 +0000</pubDate>
      <link>https://dev.to/sgtazuredev/my-journey-building-a-cyber-threat-intelligence-agent-with-google-x-kaggle-4137</link>
      <guid>https://dev.to/sgtazuredev/my-journey-building-a-cyber-threat-intelligence-agent-with-google-x-kaggle-4137</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Hey!, I'm a passionate Cybersecurity Threat Intelligence student from India. Recently, I participated in the Google x Kaggle AI Agents Intensive course. For my capstone, I decided to build a Cyber Threat Intelligence (CTI) agent, aiming to automate threat research, correlation, and reporting. In this post I’ll walk through why I chose this project, how I built it, what I learned, and my final results.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a Threat-Intel Agent?
&lt;/h2&gt;

&lt;p&gt;The cybersecurity landscape grows increasingly complex, SOC teams and defenders are overwhelmed by alerts, CVEs, logs and threat data from many sources.&lt;/p&gt;

&lt;p&gt;Manual threat intelligence workflows (looking up vulnerabilities, correlating IOCs, researching threat context, writing reports) are error prone and slow.&lt;/p&gt;

&lt;p&gt;I wanted to explore how modern AI agents could help by automating data gathering, analysis, correlation, and generating structured reports.&lt;/p&gt;

&lt;p&gt;This felt like a problem that would benefit greatly from automation and agent AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  Overview of the Agent
&lt;/h2&gt;

&lt;h3&gt;
  
  
  For the capstone I created the AI Cyber Threat Intel Agent
&lt;/h3&gt;

&lt;p&gt;It uses a multi-agent architecture, a pipeline where sub-agents perform discrete tasks such as intake, analysis, reporting. &lt;/p&gt;

&lt;p&gt;It supports custom security tools e.g. CVE lookup, threat-intel scraping, log parsing. &lt;/p&gt;

&lt;p&gt;It keeps a persistent investigation context / memory (session storage + long-term threat-intel storage) so that accumulated intelligence can be reused. &lt;/p&gt;

&lt;p&gt;As input, you can feed a vulnerability (e.g. a CVE), logs, or threat indicators and the agent will fetch related intel, analyze, correlate, and produce a structured threat report with contextual information and risk assessment. &lt;/p&gt;

&lt;p&gt;I used Python and leveraged the agent framework from the course.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Demo &amp;amp; Results
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Using the AI Cyber Threat Intel Demo notebook
&lt;/h3&gt;

&lt;p&gt;I tested the agent with sample inputs: e.g. CVE lookup (vulnerability), sample security log events (failed logins, suspicious IPs), and threat indicators (e.g. suspicious hashes or domains).&lt;/p&gt;

&lt;p&gt;The agent was able to gather relevant public intel about the vulnerability, threats (CVEs, known exploit campaigns), correlate them with the given log or indicator data, produce a consolidated, threat intelligence report summarizing findings,  what the threat is, historical context, severity, and actionable recommendations (e.g. patching advice, hardening measures).&lt;/p&gt;

&lt;p&gt;This demonstrates how an AI driven workflow can reduce manual effort in early threat intel staging, and give a clean, audit report instantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned from the Intensive Course and My Capstone Work
&lt;/h2&gt;

&lt;p&gt;Building a multi-agent pipeline forced me to think modularly; intake → analysis → reporting, which mirrors real SOC workflows. That modularization makes the system extensible.&lt;/p&gt;

&lt;p&gt;Important to maintain state, context, memory, threat intel often spans multiple sources and events; without memory, there's a risk  of losing correlation across events.&lt;/p&gt;

&lt;p&gt;Combining structured threat data (CVEs, logs) with unstructured readable intel (reports, forums, OSINT feeds). AI agents excel at bridging that gap, parsing, summarizing, correlating.&lt;/p&gt;

&lt;p&gt;Even such a demo shows potential to speed up triage &amp;amp; intelligence workflows, a hint of how AI and human analysts can work together in  cybersecurity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges &amp;amp; What I Would Improve
&lt;/h2&gt;

&lt;p&gt;In reality, data sources are messy, noisy, and sometimes unreliable. I’d need robust validation, error handling, and integration with live threat intel feeds. &lt;/p&gt;

&lt;p&gt;For production, I would need secure handling of credentials, better logging and audit trails, and possibly fine tuned models or retrieval pipelines for accuracy.&lt;/p&gt;

&lt;p&gt;I could expand the agent to more functionalities e.g. periodic automated scanning, integration with security tools (SIEM, EDR), automated alerting, enriched vulnerability context (asset specific risk).&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion &amp;amp; My Thoughts
&lt;/h2&gt;

&lt;p&gt;The capstone project and the course was a powerful learning experience. It helped me understand how agentic AI systems can be applied to cybersecurity challenges.&lt;/p&gt;

&lt;p&gt;By automating data collection, correlation, and reporting, such agents promise to help security teams reduce their workload, leaving room for deeper analysis and response. I believe this hybrid of AI and human oversight is where the future of threat intelligence lies.&lt;/p&gt;

&lt;p&gt;My capstone project is published on Github: &lt;a href="https://github.com/SgtAzureDev/ai-cyber-threat-intel-agent" rel="noopener noreferrer"&gt;https://github.com/SgtAzureDev/ai-cyber-threat-intel-agent&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Demo Kaggle Notebook I made for simulating how the agent works: &lt;a href="https://www.kaggle.com/code/sreelakshmipanicker/ai-cyber-threat-intel-demo" rel="noopener noreferrer"&gt;https://www.kaggle.com/code/sreelakshmipanicker/ai-cyber-threat-intel-demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re thinking of building something similar , or curious about AI for cybersecurity, I encourage you to try! The sky’s the limit..&lt;/p&gt;

</description>
      <category>googleaichallenge</category>
      <category>ai</category>
      <category>agents</category>
      <category>devchallenge</category>
    </item>
  </channel>
</rss>
