<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>appsec.fyi — Snyk</title>
  <link>https://appsec.fyi/tools.html#snyk</link>
  <description>Curated Snyk resources from appsec.fyi</description>
  <language>en-us</language>
  <atom:link href="https://appsec.fyi/feeds/tool/snyk.xml" rel="self" type="application/rss+xml"/>
  <lastBuildDate>Sun, 07 Jun 2026 04:05:35 +0000</lastBuildDate>
  <managingEditor>carl@chs.us (Carl Sampson)</managingEditor>
  <item>
    <title>What is a Software Bill of Materials (SBOM)? (Snyk)</title>
    <link>https://snyk.io/articles/software-bill-of-materials/</link>
    <guid isPermaLink="true">https://snyk.io/articles/software-bill-of-materials/</guid>
    <description>Library for generating and managing Software Bills of Materials (SBOMs), providing formal records of software components and their supply chain relationships. SBOMs enhance transparency, aid in vulnerability management, and support regulatory compliance, especially for software sold to the federal government as mandated by Executive Order 14028. Standards like SPDX, SWID, and OWASP CycloneDX are supported, enabling detailed analysis of dependencies, licenses, and potential exploits, complementing efforts like SLSA for supply chain integrity.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">beginner</category>
    <pubDate>Fri, 17 Apr 2026 14:50:49 +0000</pubDate>
  </item>
  <item>
    <title>Why 28 Million Credentials Leaked on GitHub in 2025 | Snyk</title>
    <link>https://snyk.io/articles/state-of-secrets/</link>
    <guid isPermaLink="true">https://snyk.io/articles/state-of-secrets/</guid>
    <description>Library for detecting and preventing leaked secrets, including API keys, database passwords, cloud IAM credentials, and AI service keys. It addresses accidental commits to Git, insecure .env file practices, supply chain attacks via malicious packages like Shai-Hulud and compromised versions of TruffleHog, and leaks through non-code surfaces such as Slack, Jira, and Docker Hub. The library also highlights the growing risk from AI-assisted development and MCP server credentials, differentiating its secret scanning capabilities from SAST tools by emphasizing the analysis of full Git history, including deleted files.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">news</category>
    <pubDate>Fri, 03 Apr 2026 15:50:53 +0000</pubDate>
  </item>
  <item>
    <title>Go Security cheatsheet | Snyk Blog</title>
    <link>https://snyk.io/blog/go-security-cheatsheet-for-go-developers/</link>
    <guid isPermaLink="true">https://snyk.io/blog/go-security-cheatsheet-for-go-developers/</guid>
    <description>Cheatsheet detailing eight Go security best practices for developers, emphasizing the use of Go Modules for dependency management and scanning dependencies for CVEs with tools like Snyk. It covers employing Go&#x27;s standard crypto packages, utilizing `html/template` to prevent XSS attacks, exercising caution with subshelling, `unsafe`, and `cgo`, using reflection sparingly, and minimizing container attack surfaces.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">beginner</category>
    <pubDate>Thu, 14 Aug 2025 04:39:12 +0000</pubDate>
  </item>
  <item>
    <title>What is SSRF (server-side request forgery)? | Tutorial &amp; examples | Snyk Learn</title>
    <link>https://learn.snyk.io/lesson/ssrf-server-side-request-forgery/</link>
    <guid isPermaLink="true">https://learn.snyk.io/lesson/ssrf-server-side-request-forgery/</guid>
    <description>Tutorial on Server-Side Request Forgery (SSRF) vulnerabilities, detailing how attackers can make arbitrary outbound requests from a server to access internal resources or cloud metadata. It demonstrates exploiting SSRF in a social app by reaching localhost and the AWS metadata endpoint (169.254.169.254), and discusses pivoting into internal networks, referencing CVE-2021-26084. The tutorial also covers prevention techniques like allowlisting and reconsidering dynamic request needs, noting SSRF&#x27;s inclusion in the OWASP Top 10.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">beginner</category>
    <pubDate>Thu, 14 Aug 2025 03:59:39 +0000</pubDate>
  </item>
  <item>
    <title>New #CVE Record: CVE-2025-8020 All #Snyk versions of the package private-ip are #vulnerable to Server-Side Request Forgery (#SSRF) where an attacker can provide an IP or #hostname that resolves to a #multicast IP address (224.0.0.0/4) which is not included as part of the private</title>
    <link>https://x.com/marcin_brz81183/status/1947913994729058729</link>
    <guid isPermaLink="true">https://x.com/marcin_brz81183/status/1947913994729058729</guid>
    <description>The content discusses a new CVE record, CVE-2025-8020, indicating that all Snyk versions of the package private-ip are vulnerable to Server-Side Request Forgery (SSRF). This vulnerability allows an attacker to input an IP or hostname that resolves to a multicast IP address (224.0.0.0/4), not included in the private IP range. This poses a security risk.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">news</category>
    <pubDate>Wed, 23 Jul 2025 07:43:48 +0000</pubDate>
  </item>
  <item>
    <title>DOM Based XSS | Tutorial &amp; Examples | Snyk Learn | Snyk Learn</title>
    <link>https://learn.snyk.io/lesson/dom-based-xss/</link>
    <guid isPermaLink="true">https://learn.snyk.io/lesson/dom-based-xss/</guid>
    <description>Tutorial on DOM XSS vulnerabilities, explaining how attackers manipulate the Document Object Model with client-side code injected via user-controllable sources like `eval()`, `document.write()`, or `innerHTML` sinks. It demonstrates exploiting a personalized profile color feature by escaping URL query parameters and recommends mitigating this by directly assigning color values to `document.body.style.color`, sanitizing input with libraries like `node-esapi`, or employing Content Security Policy (CSP) with nonces.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">beginner</category>
    <pubDate>Mon, 22 Jul 2024 18:50:42 +0000</pubDate>
  </item>
  <item>
    <title>Go Security cheatsheet | Snyk Blog</title>
    <link>https://snyk.io/blog/go-security-cheatsheet-for-go-developers</link>
    <guid isPermaLink="true">https://snyk.io/blog/go-security-cheatsheet-for-go-developers</guid>
    <description>Cheatsheet detailing eight Go security best practices for Go developers. It covers using Go Modules for dependency management and scanning dependencies for CVEs with tools like Snyk. The resource recommends using Go&#x27;s standard crypto packages and `html/template` to prevent XSS attacks. It also advises caution with subshelling, the `unsafe` package, and `cgo`, while recommending sparing use of reflection. Finally, it touches on minimizing container attack surfaces.</description>
    <category domain="tool">Snyk</category>
    <category domain="difficulty">beginner</category>
    <pubDate>Mon, 21 Feb 2022 22:59:20 +0000</pubDate>
  </item>
</channel>
</rss>