<?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: wxwreak</title>
    <description>The latest articles on DEV Community by wxwreak (@wxwreak).</description>
    <link>https://dev.to/wxwreak</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%2F4060509%2F6e16488b-40b3-4f44-8bdf-5f8815c0f8a7.jpg</url>
      <title>DEV Community: wxwreak</title>
      <link>https://dev.to/wxwreak</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/wxwreak"/>
    <language>en</language>
    <item>
      <title>Introducing Vulnfy: A Lightweight, Multi-Ecosystem Vulnerability Scanner for Your CI/CD Pipeline</title>
      <dc:creator>wxwreak</dc:creator>
      <pubDate>Sun, 16 Aug 2026 17:15:12 +0000</pubDate>
      <link>https://dev.to/wxwreak/introducing-vulnfy-a-lightweight-multi-ecosystem-vulnerability-scanner-for-your-cicd-pipeline-no4</link>
      <guid>https://dev.to/wxwreak/introducing-vulnfy-a-lightweight-multi-ecosystem-vulnerability-scanner-for-your-cicd-pipeline-no4</guid>
      <description>&lt;p&gt;Hey DEV community!👋&lt;br&gt;
As developers, we all know how crucial dependency and container security is. But let's be honest - sometimes heavy enterprise security tools are overkill for side projects, smaller apps, or quick sanity checks. I wanted something lightweight, fast and dead-simple to integrate into Github Actions without complex configurations.&lt;/p&gt;

&lt;p&gt;That's why I build &lt;strong&gt;Vulnfy&lt;/strong&gt; - an open-source, cross-platform dependency and container vulnerability scanner written in Python. It automatically detects project configuration and lock files across multiple langs, queries the OSV API in bulk, and alerts you instantly.&lt;/p&gt;
&lt;h2&gt;
  
  
  What Makes Vulnfy Different?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Ecosystem Support:&lt;/strong&gt; Scans dependencies for Python, Node.js, Go, PHP, Rust, and container base images.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Batch OSV API Integration:&lt;/strong&gt; Efficiently checks packages in bulk using the OSV batch query API.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smart Notifications:&lt;/strong&gt; Automatically sends alerts to Discord or Telegram &lt;strong&gt;only when vulnerabilities match or exceed your configured threshold&lt;/strong&gt;, completely eliminating spam when your codebase is clean.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CI/CD Ready &amp;amp; Threshold Control:&lt;/strong&gt; Use &lt;code&gt;--fail-on &amp;lt;level&amp;gt;&lt;/code&gt; to customize when the build fails (&lt;code&gt;low&lt;/code&gt;, &lt;code&gt;medium&lt;/code&gt;, &lt;code&gt;high&lt;/code&gt;, &lt;code&gt;critical&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vulnerability Suppression (&lt;code&gt;.vulnignore&lt;/code&gt;):&lt;/strong&gt; Easily ignore known or unfixable vulnerabilities directly from your project's root directory to prevent CI blockage and &lt;strong&gt;alert fatigue&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automatic Dependency Resolution:&lt;/strong&gt; Automatically installs missing requirements (&lt;code&gt;requests&lt;/code&gt;, &lt;code&gt;colorama&lt;/code&gt;, &lt;code&gt;PyYAML&lt;/code&gt;) on first run.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured Output:&lt;/strong&gt; Exports all discovered vulnerabilities and associated CVEs into a clean JSON report.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Supported Ecosystems &amp;amp; Files
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Ecosystem&lt;/th&gt;
&lt;th&gt;Files&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Python&lt;/td&gt;
&lt;td&gt;requirements.txt, pyproject.toml&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NPM&lt;/td&gt;
&lt;td&gt;package.json, package-lock.json&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Go&lt;/td&gt;
&lt;td&gt;go.mod&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PHP&lt;/td&gt;
&lt;td&gt;composer.lock&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rust&lt;/td&gt;
&lt;td&gt;Cargo.lock, Cargo.toml&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Docker&lt;/td&gt;
&lt;td&gt;Dockerfile, docker-compose.yml&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;h2&gt;
  
  
  Quick Start &amp;amp; Installation
&lt;/h2&gt;

&lt;p&gt;You can install Vulnfy quickly or pull it directly from Github:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;git+https://github.com/wxwreak/vulnfy.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or run it locally with a simple command in your project directory:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;vulnfy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Github Actions Integration
&lt;/h2&gt;

&lt;p&gt;Adding Vulnfy to your CI/CD workflow takes just a few lines. Create &lt;code&gt;.github/workflows/scan.yaml&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Vulnfy Security Scan&lt;/span&gt;

&lt;span class="na"&gt;on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;push&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;branches&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt; &lt;span class="nv"&gt;main&lt;/span&gt; &lt;span class="pi"&gt;]&lt;/span&gt;
  &lt;span class="na"&gt;workflow_dispatch&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;

&lt;span class="na"&gt;jobs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;vulnfy&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;runs-on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ubuntu-latest&lt;/span&gt;
    &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Checkout repository&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/checkout@v4&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Set up Python&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/setup-python@v5&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;python-version&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;3.11'&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Install Vulnfy&lt;/span&gt;
        &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pip install git+https://github.com/wxwreak/vulnfy.git&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Run Vulnfy Scanner&lt;/span&gt;
        &lt;span class="na"&gt;env&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;DISCORD_WEBHOOK_URL&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.DISCORD_WEBHOOK_URL }}&lt;/span&gt;
          &lt;span class="na"&gt;TELEGRAM_BOT_TOKEN&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.TELEGRAM_BOT_TOKEN }}&lt;/span&gt;
          &lt;span class="na"&gt;TELEGRAM_CHAT_ID&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.TELEGRAM_CHAT_ID }}&lt;/span&gt;
        &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;vulnfy --fail-on high&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Configuration &amp;amp; Alerts
&lt;/h2&gt;

&lt;p&gt;Want to hook it up to Telegram or Discord? Just drop a vulnfy.yaml file into your root directory:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;notifications&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;discord&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;enabled&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;   &lt;span class="c1"&gt;# Set to true for Discord alerts&lt;/span&gt;
  &lt;span class="na"&gt;telegram&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;enabled&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;  &lt;span class="c1"&gt;# Set to true for Telegram alerts&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;(And store your webhooks/tokens securely in Github Secrets/&lt;code&gt;.env&lt;/code&gt; file).&lt;/p&gt;

&lt;h1&gt;
  
  
  🎉 Tackling Alert Fatigue: Big Updates to Vulnfy Security Scanner!
&lt;/h1&gt;

&lt;p&gt;Huge thanks to the community feedback pointing out that lightweight security tools must avoid &lt;strong&gt;alert fatigue&lt;/strong&gt;. Nobody wants a security scanner that pings them for every single low-severity flaw or spam notification when the codebase is clean. &lt;/p&gt;

&lt;p&gt;Based on that feedback, I've just pushed a fresh update to &lt;strong&gt;Vulnfy&lt;/strong&gt;—a lightweight, cross-platform dependency and container vulnerability scanner written in Python. &lt;/p&gt;

&lt;p&gt;Here is what is new in this release:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Smart Notifications &amp;amp; Severity Thresholds
&lt;/h3&gt;

&lt;p&gt;Notifications to Discord and Telegram are now completely customizable. Vulnfy will only send alerts when vulnerabilities &lt;strong&gt;match or exceed your configured threshold&lt;/strong&gt; (e.g., &lt;code&gt;--fail-on medium&lt;/code&gt; or &lt;code&gt;high&lt;/code&gt;), completely eliminating spam.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Multi-Format Reporting
&lt;/h3&gt;

&lt;p&gt;Beyond the default JSON, Vulnfy now natively supports exporting your scan reports into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📄 &lt;strong&gt;HTML&lt;/strong&gt; (with custom styling support)&lt;/li&gt;
&lt;li&gt;📝 &lt;strong&gt;Markdown&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;📊 &lt;strong&gt;CSV&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;⚙️ &lt;strong&gt;YAML&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;📑 &lt;strong&gt;PDF&lt;/strong&gt; (via HTML templates)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Vulnerability Suppression (&lt;code&gt;.vulnignore&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;Got a false positive or a vulnerability you can't fix right this second? Just add the CVE or ID to a &lt;code&gt;.vulnignore&lt;/code&gt; file in your root directory. Ignored items won't trigger CI failures or spam your chat channels.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. CLI Enhancements (&lt;code&gt;--no-cache&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;Added the &lt;code&gt;--no-cache&lt;/code&gt; argument to keep your workspace clean and prevent Python from generating unnecessary &lt;code&gt;__pycache__&lt;/code&gt; and bytecode files during scans.&lt;/p&gt;




&lt;h2&gt;
  
  
  Give it a Try!
&lt;/h2&gt;

&lt;p&gt;Vulnfy is completely open-source, and i'm actively working on improving it.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Check out the repo on Github: &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fwxwreak%2Fvulnfy" alt="wxwreak/vulnfy" width="" height=""&gt; ⭐️&lt;/li&gt;
&lt;li&gt;Let me know what you think in the comments below!&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>security</category>
      <category>python</category>
      <category>opensource</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
