# SAST

Published articles for SAST.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## When to use SAST versus an LLM security scanner

DevFeed: [When to use SAST versus an LLM security scanner](<https://devfeed.tech/articles/when-to-use-sast-versus-an-llm-security-scanner-31474.md>)

Original publisher: [Read original article](<https://about.gitlab.com/blog/sast-vs-llm-security-scanner/>)

Author: Chris Widstrom

Published: 2026-09-16T00:00:00Z

Content type: comparison

Language: en

Sources: [GitLab](<https://devfeed.tech/sources/gitlab.md>)

Topics: [Security](<https://devfeed.tech/topics/security.md>), [LLM security](<https://devfeed.tech/topics/llm-security.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [Frontier Model](<https://devfeed.tech/topics/frontier-model.md>), [audit trail](<https://devfeed.tech/topics/audit-trail.md>), [business logic](<https://devfeed.tech/topics/business-logic.md>)

Tags: [application-security](<https://devfeed.tech/tags/application-security.md>), [audit-trail](<https://devfeed.tech/tags/audit-trail.md>), [features](<https://devfeed.tech/tags/features.md>), [frontier-model](<https://devfeed.tech/tags/frontier-model.md>), [llm](<https://devfeed.tech/tags/llm.md>), [llm-security](<https://devfeed.tech/tags/llm-security.md>), [product](<https://devfeed.tech/tags/product.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

This comparison explains when to use static application security testing (SAST) and when to use LLM-based security review. SAST provides predictable, repeatable, low-cost scanning across commits, while LLMs can reason about context and identify some intent-based or novel issues. The article recommends using both according to the task and scan scope.

### Source excerpt

You're probably running some version of this experiment already: Point a frontier model at a merge request and ask it to double as a vulnerability scanner. On a single merge request, it often works well. The model reads the code, reasons about what it's supposed to do, and catches real issues, sometimes ones a pattern-based scanner misses entirely. So the next thought is reasonable: If a model reviews one merge request this well, why not let it replace the scanner across your whole pipeline? That's where it breaks down. Running a frontier model as your primary scanner on every commit across an enterprise codebase costs more and behaves less predictably, than asking it to review one merge request. If you run application security for a platform or product team, the decision was never mutually exclusive: static application security testing (SAST) or LLM scanners. It's which one runs where. Get that split right and you keep deterministic coverage on every commit, add reasoning where it earns its place, and avoid both an unpredictable inference bill and gaps in your audit trail. Here's how the two compare: Deterministic scanner (SAST)AI-based review (LLM)CostBetter Fractions of a cent per scan, fixed and predictable. A paid inference call per scan; cost scales with code volume and is hard to forecast.ConsistencyBetter Flags the same vulnerabilities, every time. Can flag or miss different vulnerabilities on the same code, run to run.Audit evidenceBetter Reproducible: same fixed method every time, mapped to a CWE Output can vary between runs, harder to use as standalone audit evidence.Vulnerability typesDepends on the vulnerability type Pattern-based, traceable flaws (injection)Depends on the vulnerability type Intent-based and novel flaws: missing auth checks, broken ownership logic, and issues not yet mapped to a CVE or CWE. Could reason about business logic using context from issues, epics, and docs.Validating a finding Flags potential vulnerabilities; can't confirm whe

## How to Catch Security Vulnerabilities in Code Before They Reach Your Pull Requests

DevFeed: [How to Catch Security Vulnerabilities in Code Before They Reach Your Pull Requests](<https://devfeed.tech/articles/how-to-catch-security-vulnerabilities-in-code-before-they-reach-your-pull-requests-20761.md>)

Original publisher: [Read original article](<https://www.freecodecamp.org/news/catch-security-vulnerabilities-code-pull-requests/>)

Author: Umair Mirza

Published: 2026-09-14T22:23:01Z

Content type: tutorial

Language: en

Sources: [freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More](<https://devfeed.tech/sources/freecodecamp-programming-tutorials-python-javascript-git-more.md>)

Topics: [Application Security](<https://devfeed.tech/topics/application-security.md>), [Security](<https://devfeed.tech/topics/security.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [Secret Scanning](<https://devfeed.tech/topics/secret-scanning.md>), [Git](<https://devfeed.tech/topics/git.md>), [pull-requests](<https://devfeed.tech/topics/pull-requests.md>), [ci](<https://devfeed.tech/topics/ci.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [.NET](<https://devfeed.tech/topics/net.md>), [Python](<https://devfeed.tech/topics/python.md>), [coding](<https://devfeed.tech/topics/coding.md>)

Tags: [application-security](<https://devfeed.tech/tags/application-security.md>), [ci](<https://devfeed.tech/tags/ci.md>), [cli](<https://devfeed.tech/tags/cli.md>), [code](<https://devfeed.tech/tags/code.md>), [devsecops](<https://devfeed.tech/tags/devsecops.md>), [git](<https://devfeed.tech/tags/git.md>), [net](<https://devfeed.tech/tags/net.md>), [pull-requests](<https://devfeed.tech/tags/pull-requests.md>), [python](<https://devfeed.tech/tags/python.md>), [sast](<https://devfeed.tech/tags/sast.md>), [secret-scanning](<https://devfeed.tech/tags/secret-scanning.md>), [security](<https://devfeed.tech/tags/security.md>), [security-vulnerabilities](<https://devfeed.tech/tags/security-vulnerabilities.md>), [software-development](<https://devfeed.tech/tags/software-development.md>), [testing](<https://devfeed.tech/tags/testing.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

This tutorial explains how to shift security checks earlier in development by running SAST locally with Git pre-commit hooks. It demonstrates using the DevSkim CLI to detect insecure coding patterns, pairing it with Gitleaks for dedicated secret scanning, validating the setup with an intentional failure, and enforcing the checks in CI.

### Source excerpt

Security reviews are most effective when developers receive feedback while the code is still fresh in their minds. Waiting until a pull request, CI build, or penetration test to find exposed credentia

## Harness Announces AI-Assisted Security Capabilities for Vulnerability Scanning, Triage, Remediation, and Response

DevFeed: [Harness Announces AI-Assisted Security Capabilities for Vulnerability Scanning, Triage, Remediation, and Response](<https://devfeed.tech/articles/harness-enables-security-at-machine-speed-13401.md>)

Original publisher: [Read original article](<https://www.harness.io/blog/harness-announces-capabilities-that-enable-security-at-machine-speed>)

Author: Rahul Sood

Published: 2026-08-19T00:00:00Z

Content type: release

Language: en

Sources: [Harness Blog](<https://devfeed.tech/sources/harness-blog.md>)

Topics: [Security](<https://devfeed.tech/topics/security.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [automated](<https://devfeed.tech/tags/automated.md>), [blog](<https://devfeed.tech/tags/blog.md>), [report](<https://devfeed.tech/tags/report.md>), [sast](<https://devfeed.tech/tags/sast.md>), [scanner](<https://devfeed.tech/tags/scanner.md>), [security](<https://devfeed.tech/tags/security.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

Harness announces security capabilities using AI SAST, automated vulnerability triage, remediation, zero-day response, and virtual patching. The article discusses how LLM-based scanners can increase vulnerability findings while introducing false positives, latency, and cost concerns.

### Source excerpt

Harness enables security at machine speed with AI SAST, automated vulnerability triage, remediation, zero-day response, and virtual patching. | Blog

## AI SAST: Challenges for Application Security Teams

DevFeed: [AI SAST: Challenges for Application Security Teams](<https://devfeed.tech/articles/ai-sast-explained-what-works-what-doesn-t-and-what-comes-13363.md>)

Original publisher: [Read original article](<https://www.harness.io/blog/ai-sast-explained-devsecops-guide>)

Author: Nicole Morgan

Published: 2026-08-05T00:00:00Z

Content type: article

Language: en

Sources: [Harness Blog](<https://devfeed.tech/sources/harness-blog.md>)

Topics: [Application Security](<https://devfeed.tech/topics/application-security.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [AI Development](<https://devfeed.tech/topics/ai-development.md>), [software composition analysis](<https://devfeed.tech/topics/software-composition-analysis.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-coding](<https://devfeed.tech/tags/ai-coding.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [sast](<https://devfeed.tech/tags/sast.md>), [sca](<https://devfeed.tech/tags/sca.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

This article discusses how AI-assisted development increases pressure on static application security testing (SAST) programs. It identifies false positives, vulnerability backlogs, low remediation rates, and limited pipeline coverage as obstacles to helping developers address findings quickly.

### Source excerpt

Learn how AI is transforming SAST, reducing security friction, and helping teams secure AI-generated code without slowing delivery. | Blog

## From 750 Hours to 2 Hours: AI-Powered Security Triage at Razorpay

DevFeed: [From 750 Hours to 2 Hours: AI-Powered Security Triage at Razorpay](<https://devfeed.tech/articles/from-750-hours-to-2-hours-ai-powered-security-triage-at-razorpay-24038.md>)

Original publisher: [Read original article](<https://engineering.razorpay.com/from-750-hours-to-2-hours-ai-powered-security-triage-at-razorpay-c8baeac3a1d3?source=rss----6407ad2e59af---4>)

Author: Prathamesh Joshi

Published: 2026-06-09T14:56:35Z

Content type: article

Language: en

Sources: [Razorpay Engineering - Medium](<https://devfeed.tech/sources/razorpay-engineering-medium.md>)

Topics: [Security](<https://devfeed.tech/topics/security.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [Architecture & Design](<https://devfeed.tech/topics/architecture-design.md>), [Code](<https://devfeed.tech/topics/code.md>), [API](<https://devfeed.tech/topics/api.md>), [GitHub](<https://devfeed.tech/topics/github.md>), [Sanitization](<https://devfeed.tech/topics/sanitization.md>), [API keys](<https://devfeed.tech/topics/api-keys.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [api](<https://devfeed.tech/tags/api.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [code](<https://devfeed.tech/tags/code.md>), [credentials](<https://devfeed.tech/tags/credentials.md>), [github](<https://devfeed.tech/tags/github.md>), [hardcoded-credentials](<https://devfeed.tech/tags/hardcoded-credentials.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

Razorpay describes an AI-powered security triage system built to reduce the manual workload caused by large volumes of SAST, dependency, and secret-detection alerts. Its first live layer retrieves issue context, source code, data flows, and sanitization logic to distinguish genuine vulnerabilities from false positives, with reported accuracy of 75-80%.

### Source excerpt

Co-authors: Mahlaqahaque Mh, Keertiv, Hari Prasad Pujari How we taught AI to read code like a senior security engineer Every day, Razorpay engineers ship thousands of lines of code. Every line births new security findings. SAST scanners flag suspicious patterns. Dependency checkers find vulnerable libraries. Secret detection tools catch hardcoded credentials. The alerts pile up. Hundreds become thousands. The backlog becomes noise. We hit a breaking point. Developers faced security ticket counts climbing into the thousands, with most of them turning out to be false positives. The classic "alert that cried wolf" scenario played out daily. When everything is marked critical, nothing is. Developers stopped trusting security findings altogether. Security engineers weren't having a better time. Validating issues manually while fielding constant ad-hoc requests from frustrated developers. Trying to stop a waterfall with a teaspoon. The human bottleneck became the limiting factor in our security posture. The core problem was simple. Traditional static analysis tools excel at finding patterns that might be vulnerabilities. They lack context. They can't distinguish between a properly sanitized SQL query and a vulnerable one. Between a test API key and a production secret. Between a dangerous data flow and one protected by business logic. For every 10 alerts, 7-8 were false positives. Manual triage became the bottleneck. Security couldn't scale with engineering velocity. That's when we built what we call the Autonomous Security Special Ops system. An AI-powered engine that handles the heavy lifting so humans can focus on what actually matters. The Three-layer Intelligence System Rather than throwing more human hours at the problem, we built an AI architecture operating in three layers. L1: Context-Aware AI Triage (Live). Our intelligent first responder. Powered by 29 specialized sub-skills , it reads code context like a senior security engineer. When a SAST finding lands, L1

## AI-driven zero-day combinations are challenging software security and open-source consumption

DevFeed: [AI-driven zero-day combinations are challenging software security and open-source consumption](<https://devfeed.tech/articles/the-hardest-fork-13253.md>)

Original publisher: [Read original article](<https://www.chainguard.dev/unchained/the-hardest-fork>)

Published: 2026-05-28T00:00:00Z

Content type: opinion

Language: en

Sources: [Chainguard: Unchained](<https://devfeed.tech/sources/chainguard-unchained.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [open-source-security](<https://devfeed.tech/topics/open-source-security.md>), [Security](<https://devfeed.tech/topics/security.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Machine Learning, Security Attacks](<https://devfeed.tech/topics/machine-learning-security-attacks.md>), [Critical Infrastructure](<https://devfeed.tech/topics/critical-infrastructure.md>), [openssf](<https://devfeed.tech/topics/openssf.md>), [sigstore](<https://devfeed.tech/topics/sigstore.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [anthropic-mythos](<https://devfeed.tech/tags/anthropic-mythos.md>), [chainguard-containers](<https://devfeed.tech/tags/chainguard-containers.md>), [critical-infrastructure](<https://devfeed.tech/tags/critical-infrastructure.md>), [fork](<https://devfeed.tech/tags/fork.md>), [mfa](<https://devfeed.tech/tags/mfa.md>), [mythos](<https://devfeed.tech/tags/mythos.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [open-source-security](<https://devfeed.tech/tags/open-source-security.md>), [openssf](<https://devfeed.tech/tags/openssf.md>), [oss](<https://devfeed.tech/tags/oss.md>), [project-glasswing](<https://devfeed.tech/tags/project-glasswing.md>), [rust](<https://devfeed.tech/tags/rust.md>), [sast](<https://devfeed.tech/tags/sast.md>), [secure-open-source](<https://devfeed.tech/tags/secure-open-source.md>), [security](<https://devfeed.tech/tags/security.md>), [sigstore](<https://devfeed.tech/tags/sigstore.md>)

### AI overview

The article argues that Mythos represents a potential new class of software-security threat: AI-driven combinations of existing issues that can produce more serious attacks than individual scanner findings. It discusses the limits of government regulation and calls for stronger trust infrastructure, coordinated disclosure, and safer open-source consumption.

### Source excerpt

Mythos is changing software security fast. AI-driven zero-days demand new trust infrastructure, coordinated disclosure, and secure open source consumption.

## Security at scale: Preventing thousands of vulnerabilities without developer friction

DevFeed: [Security at scale: Preventing thousands of vulnerabilities without developer friction](<https://devfeed.tech/articles/security-at-scale-preventing-thousands-of-vulnerabilities-without-developer-friction-22557.md>)

Original publisher: [Read original article](<https://medium.com/mercadolibre-tech/security-at-scale-preventing-thousands-of-vulnerabilities-without-developer-friction-b991d049c543?source=rss----5011f85401f0---4>)

Author: Rodrigo Fernandez Apas

Published: 2026-01-06T13:28:53Z

Content type: article

Language: en

Sources: [Mercado Libre Tech](<https://devfeed.tech/sources/mercado-libre-tech.md>)

Topics: [Security](<https://devfeed.tech/topics/security.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [Microservices](<https://devfeed.tech/topics/microservices.md>), [Architecture & Design](<https://devfeed.tech/topics/architecture-design.md>)

Tags: [application-security](<https://devfeed.tech/tags/application-security.md>), [developer](<https://devfeed.tech/tags/developer.md>), [framework](<https://devfeed.tech/tags/framework.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [microservices](<https://devfeed.tech/tags/microservices.md>), [paved-road](<https://devfeed.tech/tags/paved-road.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>), [vulnerability](<https://devfeed.tech/tags/vulnerability.md>)

### AI overview

Mercado Libre describes centralizing security protections in development frameworks and platform layers across an environment of around 20,000 developers and 35,000 microservices. The company reports that about 95% of SSRF, XSS, and CSRF vulnerability reports are now unexploitable without extra developer work.

### Source excerpt

At Mercado Libre's scale, with around 20,000 developers and 35,000 microservices, security can't depend on every developer remembering flags, settings, or patterns. That approach simply doesn't scale. To tackle this, over the past few years, we've centralized our defenses within our development frameworks (such as HTTP clients and frontend frameworks) and underlying platform layers (like the HTTP routing layer). This strategy has let us achieve broad protection against common vulnerabilities such as SSRF (Server-Side Request Forgery), XSS (Cross-Site Scripting), and CSRF (Cross-Site Request Forgery). As a result, about 95% of these types of vulnerability reports are now unexploitable, without extra work from developers. In this post, we'll share our strategy, development pipeline, case studies, and key learnings from rolling out these protections. From "shift left" to "paved road"The root of the issue Many developer tools and APIs aren't designed with security in mind. For example, Java's `DocumentBuilderFactory` for XML parsing is, by default, vulnerable to XML External Entity (XXE) attacks. Preventing XXE requires configuring several additional settings: That's quite a lot to remember! Expecting every developer to recall and apply all these configurations at every stage is a heavy burden. On the other hand, Golang's XML package makes XXE vulnerabilities much less likely. You really need to make an effort to be vulnerable to XXE. You can use it without worrying about adding extra settings. These examples highlight the complex reality developers face: Unexpected insecurity: It's really easy to burn yourself without realizing it. Choice overload: On top of development and design choices, you also have to make the right security decisions. Shifting responsibilities: Developers often get blamed for insecure choices, even when these could be addressed by the platform. Additionally, common security practices pose their own challenges: In our complex environment, SAST (St

## AI Agents and Multi-Agent Systems: A Practical Case for Analyzing and Fixing Code Vulnerabilities

DevFeed: [AI Agents and Multi-Agent Systems: A Practical Case for Analyzing and Fixing Code Vulnerabilities](<https://devfeed.tech/articles/article-24028.md>)

Original publisher: [Read original article](<https://habr.com/ru/companies/redmadrobot/articles/957300/>)

Author: redmadrobot (red\_mad\_robot)

Published: 2025-10-16T15:18:12Z

Content type: tutorial

Language: ru

Sources: [Redmadrobot EN](<https://devfeed.tech/sources/redmadrobot-en.md>), [Redmadrobot RU](<https://devfeed.tech/sources/redmadrobot-ru.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Natural language processing](<https://devfeed.tech/topics/nlp.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>)

Tags: [agents](<https://devfeed.tech/tags/agents.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-agents](<https://devfeed.tech/tags/ai-agents.md>), [graph](<https://devfeed.tech/tags/graph.md>), [llm](<https://devfeed.tech/tags/llm.md>), [nlp](<https://devfeed.tech/tags/nlp.md>), [sast](<https://devfeed.tech/tags/sast.md>), [systems](<https://devfeed.tech/tags/systems.md>), [tag-1605473766c5](<https://devfeed.tech/tags/tag-1605473766c5.md>), [tag-4d5248fd6bfe](<https://devfeed.tech/tags/tag-4d5248fd6bfe.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

### AI overview

The article explains the defining characteristics and autonomy levels of AI agents, focusing on workflow agents and multi-agent systems. It presents a practical case involving a multi-agent environment for automatically analyzing and fixing code vulnerabilities.

### Source excerpt

Привет! Меня зовут Егор Козлов, я работаю NLP-инженером в red_mad_robot. Мы активно внедряем в бизнес AI-агентов -- автономных и полуавтономных программных сущностей, которые самостоятельно выполняют задачи и принимают решения в интересах бизнеса. В статье расскажу о принципах работы AI-агентов -- с особым вниманием к workflow-агентам и мультиагентным системам (MAS). И поделюсь практическим кейсом внедрения мультиагентной среды для автоматического анализа и исправления уязвимостей в коде. Читать далее

## Snyk Named a Leader in the 2025 Forrester SAST Wave: SAST Solutions, Q3 2025

DevFeed: [Snyk Named a Leader in the 2025 Forrester SAST Wave: SAST Solutions, Q3 2025](<https://devfeed.tech/articles/snyk-named-a-leader-in-the-2025-forrester-sast-wave-sast-solutions-q3-2025-8148.md>)

Original publisher: [Read original article](<https://snyk.io/blog/snyk-named-a-leader-in-the-2025-forrester-sast-wave-sast-solutions-q3-2025/>)

Author: Ben Desjardins

Published: 2025-09-09T04:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [snyk](<https://devfeed.tech/topics/snyk.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [Securing AI](<https://devfeed.tech/topics/securing-ai.md>), [Developer experience](<https://devfeed.tech/topics/developer-experience.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-security](<https://devfeed.tech/tags/ai-security.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code-security](<https://devfeed.tech/tags/code-security.md>), [developer-experience](<https://devfeed.tech/tags/developer-experience.md>), [executive](<https://devfeed.tech/tags/executive.md>), [recognition](<https://devfeed.tech/tags/recognition.md>), [sast](<https://devfeed.tech/tags/sast.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>)

### AI overview

Snyk announces that Forrester recognized it as a Leader in the 2025 Forrester Wave for Static Application Security Testing Solutions. The article attributes this position to Snyk's innovation, AI Security Platform, developer experience, enterprise analytics and visibility, broad Application Security Testing capabilities, and customer impact. It also highlights AI-powered prioritization, autonomous fixes, and the role of Snyk in shift-left security strategies.

### Source excerpt

We're excited to announce that Snyk has been recognized as a Leader in the Forrester Wave™: Static Application Security Testing (SAST) Solutions, Q3 2025.

## Building AI Trust with Snyk Code and Snyk Agent Fix

DevFeed: [Building AI Trust with Snyk Code and Snyk Agent Fix](<https://devfeed.tech/articles/building-ai-trust-with-snyk-code-and-snyk-agent-fix-7853.md>)

Original publisher: [Read original article](<https://snyk.io/blog/building-ai-trust-with-snyk-code-and-snyk-agent-fix/>)

Author: Liqian Lim (林利蒨); Brendan Hann

Published: 2025-06-23T04:00:00Z

Content type: news

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [snyk](<https://devfeed.tech/topics/snyk.md>), [snyk-code](<https://devfeed.tech/topics/snyk-code.md>), [ai security](<https://devfeed.tech/topics/ai-security.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [ai-governance](<https://devfeed.tech/topics/ai-governance.md>), [Securing AI](<https://devfeed.tech/topics/securing-ai.md>), [Pull Request](<https://devfeed.tech/topics/pull-request.md>), [ide](<https://devfeed.tech/topics/ide.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-coding](<https://devfeed.tech/tags/ai-coding.md>), [ai-governance](<https://devfeed.tech/tags/ai-governance.md>), [ai-security](<https://devfeed.tech/tags/ai-security.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [auto-remediation](<https://devfeed.tech/tags/auto-remediation.md>), [autonomous](<https://devfeed.tech/tags/autonomous.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code-security](<https://devfeed.tech/tags/code-security.md>), [compliance](<https://devfeed.tech/tags/compliance.md>), [developer](<https://devfeed.tech/tags/developer.md>), [devops](<https://devfeed.tech/tags/devops.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [pull-requests](<https://devfeed.tech/tags/pull-requests.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-code](<https://devfeed.tech/tags/snyk-code.md>), [snyk-platform](<https://devfeed.tech/tags/snyk-platform.md>)

### AI overview

Snyk describes its AI Security Platform, Snyk Code, and Snyk Agent Fix for governing AI-assisted development. Snyk Agent Fix autonomously generates and validates code-security fixes, offering auto-remediation in IDEs and pull requests, while Snyk Code provides SAST, visibility, prioritization, and policy controls.

### Source excerpt

Secure and accelerate your adoption of AI coding with pre-screened auto-fixes and autonomous code security for modern, developer-loved SAST.

## Snyk Security Solution Now Integrated into Google Cloud's Gemini Code Assist

DevFeed: [Snyk Security Solution Now Integrated into Google Cloud's Gemini Code Assist](<https://devfeed.tech/articles/snyk-security-solution-now-integrated-into-google-cloud-s-gemini-code-assist-8165.md>)

Original publisher: [Read original article](<https://snyk.io/blog/snyk-security-solution-now-integrated-into-google-clouds-gemini-code-assist/>)

Author: Liqian Lim (林利蒨)

Published: 2025-04-09T04:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [snyk](<https://devfeed.tech/topics/snyk.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [code security](<https://devfeed.tech/topics/code-security.md>), [ide](<https://devfeed.tech/topics/ide.md>), [AI Development](<https://devfeed.tech/topics/ai-development.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code-security](<https://devfeed.tech/tags/code-security.md>), [executive](<https://devfeed.tech/tags/executive.md>), [gemini](<https://devfeed.tech/tags/gemini.md>), [google](<https://devfeed.tech/tags/google.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [related-content](<https://devfeed.tech/tags/related-content.md>), [sast](<https://devfeed.tech/tags/sast.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-apprisk](<https://devfeed.tech/tags/snyk-apprisk.md>), [snyk-code](<https://devfeed.tech/tags/snyk-code.md>)

### AI overview

Snyk's security solution is integrated into Google Cloud's Gemini Code Assist, enabling developers to use Snyk security capabilities through natural-language prompts and the coding assistant's chat interface.

### Source excerpt

Secure AI coding with Snyk and Google Gemini. Learn how Snyk Code's SAST integrates with Gemini Code Assist for seamless, secure development workflows.

## Сравнение AI-систем для глубокого анализа данных и исследований

DevFeed: [Сравнение AI-систем для глубокого анализа данных и исследований](<https://devfeed.tech/articles/deep-research-showdown-ai-24010.md>)

Original publisher: [Read original article](<https://habr.com/ru/companies/redmadrobot/articles/891970/>)

Author: kekslop (red\_mad\_robot)

Published: 2025-03-18T12:40:03Z

Content type: comparison

Language: ru

Sources: [Redmadrobot EN](<https://devfeed.tech/sources/redmadrobot-en.md>), [Redmadrobot RU](<https://devfeed.tech/sources/redmadrobot-ru.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Retrieval Augmented Generation (RAG)](<https://devfeed.tech/topics/retrieval-augmented-generation-rag.md>), [Langgraph](<https://devfeed.tech/topics/langgraph.md>), [vllm](<https://devfeed.tech/topics/vllm.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [Claude](<https://devfeed.tech/topics/claude.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-6560afdd46fd](<https://devfeed.tech/tags/ai-6560afdd46fd.md>), [deepresearch](<https://devfeed.tech/tags/deepresearch.md>), [langgraph](<https://devfeed.tech/tags/langgraph.md>), [llm](<https://devfeed.tech/tags/llm.md>), [openai](<https://devfeed.tech/tags/openai.md>), [rag](<https://devfeed.tech/tags/rag.md>), [research](<https://devfeed.tech/tags/research.md>), [sast](<https://devfeed.tech/tags/sast.md>), [structured-output](<https://devfeed.tech/tags/structured-output.md>), [tag-1cd610c0e518](<https://devfeed.tech/tags/tag-1cd610c0e518.md>), [tag-5e27d5297aca](<https://devfeed.tech/tags/tag-5e27d5297aca.md>), [tag-8e9a901cca08](<https://devfeed.tech/tags/tag-8e9a901cca08.md>), [tag-baf5012a40ff](<https://devfeed.tech/tags/tag-baf5012a40ff.md>), [vllm](<https://devfeed.tech/tags/vllm.md>)

### AI overview

The article compares OpenAI, Grok, Perplexity, and the author's NDT Deep Research system on five analytical tasks, including financial-market analysis, technology research, and identifying promising AI startups. NDT Deep Research uses LangGraph, Tavily, multiple language models, Structured Output, vLLM, retrieval-augmented generation, and source analysis. The author reports that system changes reduced generation costs threefold and latency by 40%.

### Source excerpt

Как я сравнил топовые AI-модели для глубокого анализа данных и собственную разработку Привет! Меня зовут Валера Ковальский, я CEO NDT by red_mad_robot. Недавно я протестировал ведущие AI-системы, которые способны проводить глубокие исследования, и делюсь с вами результатами. Читать далее

## Understanding the EU's Cyber Resilience Act (CRA)

DevFeed: [Understanding the EU's Cyber Resilience Act (CRA)](<https://devfeed.tech/articles/understanding-the-eu-s-cyber-resilience-act-cra-8226.md>)

Original publisher: [Read original article](<https://snyk.io/blog/understanding-the-eus-cyber-resilience-act-cra/>)

Author: Ben Desjardins

Published: 2025-01-22T05:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [cyber resilience act](<https://devfeed.tech/topics/cyber-resilience-act.md>), [supply-chain-security](<https://devfeed.tech/topics/supply-chain-security.md>), [Security](<https://devfeed.tech/topics/security.md>), [sdlc](<https://devfeed.tech/topics/sdlc.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [snyk](<https://devfeed.tech/topics/snyk.md>)

Tags: [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [compliance](<https://devfeed.tech/tags/compliance.md>), [cyber-resilience-act](<https://devfeed.tech/tags/cyber-resilience-act.md>), [eu](<https://devfeed.tech/tags/eu.md>), [executive](<https://devfeed.tech/tags/executive.md>), [megawatt](<https://devfeed.tech/tags/megawatt.md>), [sast](<https://devfeed.tech/tags/sast.md>), [sbom](<https://devfeed.tech/tags/sbom.md>), [sca](<https://devfeed.tech/tags/sca.md>), [sdlc](<https://devfeed.tech/tags/sdlc.md>), [secure-by-design](<https://devfeed.tech/tags/secure-by-design.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [software-supply-chain-security](<https://devfeed.tech/tags/software-supply-chain-security.md>), [supply-chain-security](<https://devfeed.tech/tags/supply-chain-security.md>)

### AI overview

The article explains how the EU Cyber Resilience Act (CRA) establishes cybersecurity requirements for products with digital elements. It discusses secure-by-design practices, vulnerability handling throughout the product lifecycle, upcoming reporting and compliance deadlines, and the role of SAST, SCA, and software supply chain security.

### Source excerpt

Find out how the Cyber Resilience Act (CRA) sets new security standards for the EU and how Snyk can help simplify compliance with its developer-friendly tools.

## Top 5 SAST Auto-fixing Tools and How They Compare

DevFeed: [Top 5 SAST Auto-fixing Tools and How They Compare](<https://devfeed.tech/articles/top-5-sast-auto-fixing-tools-and-how-they-compare-8216.md>)

Original publisher: [Read original article](<https://snyk.io/blog/top-5-sast-auto-fixing-tools-how-they-compare/>)

Author: Liqian Lim (林利蒨)

Published: 2024-10-29T15:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [snyk-code](<https://devfeed.tech/topics/snyk-code.md>), [AI Development](<https://devfeed.tech/topics/ai-development.md>), [Security](<https://devfeed.tech/topics/security.md>), [Development](<https://devfeed.tech/topics/development.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code](<https://devfeed.tech/tags/code.md>), [development](<https://devfeed.tech/tags/development.md>), [llms](<https://devfeed.tech/tags/llms.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [security-tools](<https://devfeed.tech/tags/security-tools.md>), [self-hosted](<https://devfeed.tech/tags/self-hosted.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-code](<https://devfeed.tech/tags/snyk-code.md>), [vulnerabilities](<https://devfeed.tech/tags/vulnerabilities.md>), [vulnerability-detection](<https://devfeed.tech/tags/vulnerability-detection.md>)

### AI overview

This article examines five SAST auto-fixing tools and explains how AI-powered remediation can reduce the time developers spend fixing vulnerable code. It highlights Snyk Agent Fix, a self-hosted language model trained for vulnerability remediation and integrated with Snyk Code.

### Source excerpt

Speed Up Code Remediation with AI-Powered Tools. Learn about the top 5 SAST auto-fixing tools and their features to streamline your development workflow. Discover how Snyk Agent Fix can slash your remediation time by 84% or more.

## A security expert's view on Gartner's generative AI insights - Part 2

DevFeed: [A security expert's view on Gartner's generative AI insights - Part 2](<https://devfeed.tech/articles/a-security-expert-s-view-on-gartner-s-generative-ai-insights-part-2-7937.md>)

Original publisher: [Read original article](<https://snyk.io/blog/gartners-generative-ai-insights-part-2/>)

Author: Liqian Lim (林利蒨)

Published: 2024-08-08T05:00:00Z

Content type: opinion

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [Security](<https://devfeed.tech/topics/security.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [snyk-code](<https://devfeed.tech/topics/snyk-code.md>), [snyk](<https://devfeed.tech/topics/snyk.md>), [Generative AI](<https://devfeed.tech/topics/generative-ai.md>), [LLM security](<https://devfeed.tech/topics/llm-security.md>), [Code quality](<https://devfeed.tech/topics/code-quality.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code-quality](<https://devfeed.tech/tags/code-quality.md>), [devops](<https://devfeed.tech/tags/devops.md>), [executive](<https://devfeed.tech/tags/executive.md>), [interest](<https://devfeed.tech/tags/interest.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-code](<https://devfeed.tech/tags/snyk-code.md>), [speed](<https://devfeed.tech/tags/speed.md>)

### AI overview

This opinion article discusses Gartner's recommendations for specialized generative AI models in cybersecurity. Snyk argues that its security-focused model, used in Snyk Agent Fix and Snyk Code SAST, produces more reliable code fixes because it is trained specifically for security rather than general code functionality.

### Source excerpt

A recent Gartner report shows that AI transparency is a common issue in many organizations. Snyk Code's hybrid AI-powered SAST is the secret ingredient for AI security & coding.

## Three reasons to invest in an ASPM solution in 2024

DevFeed: [Three reasons to invest in an ASPM solution in 2024](<https://devfeed.tech/articles/three-reasons-to-invest-in-an-aspm-solution-in-2024-8059.md>)

Original publisher: [Read original article](<https://snyk.io/blog/reasons-to-invest-in-an-aspm-solution/>)

Author: Julia Kraut

Published: 2023-12-12T12:55:00Z

Content type: opinion

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [Application Security](<https://devfeed.tech/topics/application-security.md>), [snyk-apprisk](<https://devfeed.tech/topics/snyk-apprisk.md>), [snyk](<https://devfeed.tech/topics/snyk.md>), [Security](<https://devfeed.tech/topics/security.md>), [snyk-platform](<https://devfeed.tech/topics/snyk-platform.md>), [snyk-code](<https://devfeed.tech/topics/snyk-code.md>), [snyk-container](<https://devfeed.tech/topics/snyk-container.md>), [snyk-iac](<https://devfeed.tech/topics/snyk-iac.md>), [snyk-open-source](<https://devfeed.tech/topics/snyk-open-source.md>)

Tags: [acquisition](<https://devfeed.tech/tags/acquisition.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [aspm](<https://devfeed.tech/tags/aspm.md>), [blog](<https://devfeed.tech/tags/blog.md>), [executive](<https://devfeed.tech/tags/executive.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [sast](<https://devfeed.tech/tags/sast.md>), [sca](<https://devfeed.tech/tags/sca.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-apprisk](<https://devfeed.tech/tags/snyk-apprisk.md>), [snyk-container](<https://devfeed.tech/tags/snyk-container.md>), [snyk-iac](<https://devfeed.tech/tags/snyk-iac.md>), [snyk-open-source](<https://devfeed.tech/tags/snyk-open-source.md>), [snyk-platform](<https://devfeed.tech/tags/snyk-platform.md>)

### AI overview

This guide presents three reasons to invest in an application security posture management solution: consolidating security vendors, improving application security tool coverage, and managing security and compliance controls. It specifically promotes Snyk AppRisk and its integration with the Snyk platform.

### Source excerpt

Learn three compelling reasons to invest in an application security posture management (ASPM) solution like Snyk AppRisk.

## Improving product reliability by imposing constraints as a part of CI/CD process

DevFeed: [Improving product reliability by imposing constraints as a part of CI/CD process](<https://devfeed.tech/articles/improving-product-reliability-by-imposing-constraints-as-a-part-of-ci-cd-process-26344.md>)

Original publisher: [Read original article](<https://medium.com/revolut/improving-product-reliability-by-imposing-constraints-as-a-part-of-ci-cd-process-597cf2307224?source=rss----44c5ac415e14---4>)

Author: Pedro Moura

Published: 2023-11-03T14:26:59Z

Content type: article

Language: en

Sources: [Revolut Engineering](<https://devfeed.tech/sources/revolut-engineering.md>)

Topics: [CI/CD](<https://devfeed.tech/topics/cicd.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [Vulnerabilities](<https://devfeed.tech/topics/vulnerabilities.md>), [Data analysis](<https://devfeed.tech/topics/data-analysis.md>)

Tags: [application-security](<https://devfeed.tech/tags/application-security.md>), [blocking](<https://devfeed.tech/tags/blocking.md>), [ci-cd](<https://devfeed.tech/tags/ci-cd.md>), [data-analysis](<https://devfeed.tech/tags/data-analysis.md>), [devsecops](<https://devfeed.tech/tags/devsecops.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [sast](<https://devfeed.tech/tags/sast.md>), [sca](<https://devfeed.tech/tags/sca.md>), [scanners](<https://devfeed.tech/tags/scanners.md>), [security](<https://devfeed.tech/tags/security.md>), [security-vulnerabilities](<https://devfeed.tech/tags/security-vulnerabilities.md>), [software-development](<https://devfeed.tech/tags/software-development.md>)

### AI overview

Revolut describes a CI/CD approach that uses automated risk calculation, data analysis, security scanning, and deployment constraints to improve product reliability. The approach aims to identify vulnerabilities and bugs early, mitigate them, and potentially block high-risk applications from reaching production.

### Source excerpt

At Revolut, we always aim to consistently provide efficient, high-quality, and secure services. Our primary goals are to enhance product quality, increase customer satisfaction, and reduce business risk. To achieve those goals, we should aim to be as proactive -- rather than reactive -- as possible. This means fixing any point of failure before it reaches production by identifying, reporting, and potentially blocking deployments that can impact the reliability of our products. In this article, we'll explain how we achieve those goals using automated risk calculation, data analysis, and imposing constraints to push for the mitigation of open vulnerabilities and the fix of reported bugs identified in our products. Challenges faced by Revolut Each application/service has its own specifications, with different technology stacks and architectures, bringing a diversity of security challenges and different vulnerabilities. That being said, application risk cannot be based only on the reported security vulnerabilities but also in the context of that specific application. Continuous scanning, reporting, visibility, and risk evaluation are essential to providing the best security advice and automated security controls. Nowadays there are several types of security scanners (SAST, SCA, DAST, IaC, etc.) that help security professionals to identify and report vulnerabilities, where each of them can belong to a different third-party provider. For further information on these, read our article on continuous security. Data scraped from different sources creates friction when it's needed to group findings and provide mitigations. This can also decrease mean time to identify vulnerabilities and mean time to provide mitigations. Also, to avoid such negative workflow impact, security must be shifted left. Without a centralised source of truth for security-related application data, most of the time is wasted on searching for information/findings in segmented platforms and finding the corre

## Snyk is named a Strong Performer as a first-time entrant in the Forrester Wave™: Static Application Security Testing (SAST) Q3 2023

DevFeed: [Snyk is named a Strong Performer as a first-time entrant in the Forrester Wave™: Static Application Security Testing (SAST) Q3 2023](<https://devfeed.tech/articles/snyk-is-named-a-strong-performer-as-a-first-time-entrant-in-the-forrester-wavetm-static-application-security-testing-sast-q3-2023-7927.md>)

Original publisher: [Read original article](<https://snyk.io/blog/forrester-sast-wave-2023/>)

Author: Peter McKay

Published: 2023-09-20T12:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [Application Security](<https://devfeed.tech/topics/application-security.md>), [snyk](<https://devfeed.tech/topics/snyk.md>), [DevSecOps](<https://devfeed.tech/topics/devsecops.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [AI-assisted coding](<https://devfeed.tech/topics/ai-assisted-coding.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [aspm](<https://devfeed.tech/tags/aspm.md>), [awareness](<https://devfeed.tech/tags/awareness.md>), [blog](<https://devfeed.tech/tags/blog.md>), [code-security](<https://devfeed.tech/tags/code-security.md>), [devops](<https://devfeed.tech/tags/devops.md>), [devsecops](<https://devfeed.tech/tags/devsecops.md>), [enablement](<https://devfeed.tech/tags/enablement.md>), [executive](<https://devfeed.tech/tags/executive.md>), [interest](<https://devfeed.tech/tags/interest.md>), [pmm](<https://devfeed.tech/tags/pmm.md>), [sast](<https://devfeed.tech/tags/sast.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-platform](<https://devfeed.tech/tags/snyk-platform.md>)

### AI overview

Snyk says it was recognized as a Strong Performer in the Forrester Wave: Static Application Security Testing (SAST) Q3 2023, its first year participating. The article highlights Snyk's developer-first application security approach, DevSecOps practices, developer experience, actionable results, remediation guidance, integrations, and IDE plugins. It also describes how the growing use of AI code generation increases development speed and security challenges.

### Source excerpt

We're thrilled that Snyk has been recognized as a Strong Performer in our first year participating in the Forrester Wave™: Static Application Security Testing (SAST) Q3 2023.