<!DOCTYPE html><html lang="en-US"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">Snyk AI Security Fabric | Secure Code, Models &amp; Agents | Snyk</title><meta name="robots" content="index,follow,max-image-preview:large" data-next-head=""/><meta name="description" content="Snyk is the AI Security Fabric — the independent validator that makes AI-generated code, AI agents, and AI-native applications trustworthy. Unleash AI innovation securely." data-next-head=""/><link rel="alternate" hrefLang="x-default" href="https://snyk.io/" data-next-head=""/><link rel="alternate" hrefLang="en" href="https://snyk.io/" data-next-head=""/><link rel="alternate" hrefLang="de" href="https://snyk.io/de/" data-next-head=""/><link rel="alternate" hrefLang="es" href="https://snyk.io/es/" data-next-head=""/><link rel="alternate" hrefLang="fr" href="https://snyk.io/fr/" data-next-head=""/><link rel="alternate" hrefLang="ja" href="https://snyk.io/jp/" data-next-head=""/><link rel="alternate" hrefLang="pt-BR" href="https://snyk.io/pt-BR/" data-next-head=""/><meta name="twitter:card" content="summary_large_image" data-next-head=""/><meta property="og:title" content="Snyk AI Security Fabric | Secure Code, Models &amp; Agents | Snyk" data-next-head=""/><meta property="og:description" content="Snyk is the AI Security Fabric — the independent validator that makes AI-generated code, AI agents, and AI-native applications trustworthy. Unleash AI innovation securely." data-next-head=""/><meta property="og:url" content="https://snyk.io/" data-next-head=""/><meta property="og:image" content="https://snyk.io/_next/static/media/default-social.8953a9bd.jpg" data-next-head=""/><meta property="og:image:width" content="1200" data-next-head=""/><meta property="og:image:height" content="628" data-next-head=""/><meta property="og:locale" content="en-US" data-next-head=""/><meta property="og:site_name" content="Snyk" data-next-head=""/><link rel="canonical" href="https://snyk.io/" data-next-head=""/><link rel="preload" href="https://res.cloudinary.com/snyk/image/upload/v1781791757/Homepager_Hero_image_aal7qm.svg" as="image" data-next-head=""/><link rel="preload" href="https://res.cloudinary.com/snyk/image/upload/v1769795551/illustration-integrations-home_cgbffw.svg" as="image" data-next-head=""/><link rel="preload" href="/_next/static/media/22a5144ee8d83bca-s.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/7d4881bb7e1bf84d-s.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/css/eb6169864c7deb6d.css" as="style"/><link rel="preload" as="image" imageSrcSet="https://res.cloudinary.com/snyk/image/upload/f_auto,w_384,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 384w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_580,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 580w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_960,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 960w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_1240,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 1240w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_2560,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 2560w" imageSizes="(max-width: 960px) 100vw, 50vw" data-next-head=""/><script id="snyk-qualified-guard" data-nscript="beforeInteractive">
						(function () {
							try {
								if (window.__snykQualifiedGuardInstalled) return;
								window.__snykQualifiedGuardInstalled = true;

								var BLOCK = /js\.qualified\.com\/(qualified|docking)\.js/;
								var ALLOW_ID = "qualified-loader";

								function shouldBlock(node) {
									if (!node || node.tagName !== "SCRIPT") return false; // cheap hot-path early-out
									if (node.id === ALLOW_ID) return false; // the app's own loader is allowed
									var src = node.src || (node.getAttribute && node.getAttribute("src")) || "";
									return BLOCK.test(src);
								}

								function patch(proto, name) {
									var original = proto[name];
									if (typeof original !== "function") return;
									proto[name] = function (node) {
										try {
											if (shouldBlock(node)) return node; // pretend success, don't insert
										} catch (e) { /* fall through to original */ }
										return original.apply(this, arguments);
									};
								}

								patch(Node.prototype, "appendChild");
								patch(Node.prototype, "insertBefore");
							} catch (e) { /* never break the page because of the guard */ }
						})();
					</script><script id="qualified-init" data-nscript="beforeInteractive">
						(function(w,q){w['QualifiedObject']=q;w[q]=w[q]||function(){
						(w[q].q=w[q].q||[]).push(arguments)};})(window,'qualified')
					</script><script id="snyk-qualified-cta-tracking" data-nscript="beforeInteractive">
(function () {
	var HANDLED = "__snykQualifiedCtaHandled";
	var MAX_ATTEMPTS = 20;

	function isQualifiedLink(el) {
		try {
			return /(^|\.)qualified\.com$/i.test(new URL(el.href).hostname);
		} catch (error) {
			return false;
		}
	}

	function getCtaName(el) {
		return (
			el.getAttribute("aria-label") ||
			el.getAttribute("title") ||
			(el.textContent || "").replace(/\s+/g, " ").trim() ||
			"logo-image"
		);
	}

	function track(payload, attempts) {
		if (window.analytics && typeof window.analytics.track === "function") {
			window.analytics.track("cta_click", payload);
		} else if (attempts < MAX_ATTEMPTS) {
			window.setTimeout(function () { track(payload, attempts + 1); }, 500);
		}
	}

	window.addEventListener(
		"click",
		function (event) {
			var el =
				event.target && event.target.closest
					? event.target.closest("a[href]")
					: null;
			if (!el || !isQualifiedLink(el)) return;

			// Defer so React's bubble-phase onClick can run first when Qualified does
			// not block propagation; only emit when it didn't (avoids duplicates).
			window.setTimeout(function () {
				if (event[HANDLED]) return;
				var pageData = window.__snykPageData || {};
				track(
					Object.assign({}, pageData, {
						cta_location: pageData.cta_location || "Content",
						cta_name: getCtaName(el),
						cta_type: "Outbound_link",
						link_url: el.getAttribute("href") || el.href,
						outbound: 1,
					}),
					0,
				);
			}, 0);
		},
		true,
	);
})();
</script><script id="google-tag-manager-datalayer-init" data-nscript="beforeInteractive">
						// create dataLayer
						window.dataLayer = window.dataLayer || [];
						function gtag() {
							dataLayer.push(arguments);
						}
						// set „denied" as default for both ad and analytics storage, as well as ad_user_data and ad_personalization,
						gtag("consent", "default", {
							ad_user_data: "denied",
							ad_personalization: "denied",
							ad_storage: "denied",
							analytics_storage: "denied",
							wait_for_update: 2000 // milliseconds to wait for update
						});
						// Enable ads data redaction by default [optional]
						gtag("set", "ads_data_redaction", true);
					</script><script id="google-tag-manager-init" data-nscript="beforeInteractive">
						// Google Tag Manager
						(function(w, d, s, l, i) {
							w[l] = w[l] || [];
							w[l].push({
								'gtm.start': new Date().getTime(),
								event: 'gtm.js'
								});
							var f = d.getElementsByTagName(s)[0],
							j = d.createElement(s),
							dl = l != 'dataLayer' ? '&l=' + l : '';
							j.async = true;
							j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
							f.parentNode.insertBefore(j, f);
						})(window, document, 'script', 'dataLayer', 'GTM-T8QMQW9');
					</script><link rel="stylesheet" href="/_next/static/css/eb6169864c7deb6d.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" noModule="" src="/_next/static/chunks/polyfills-42372ed130431b0a.js"></script><script defer="" src="/_next/static/chunks/6089.d39a0bd67ba3a52c.js"></script><script defer="" src="/_next/static/chunks/8044.be599eceafea5bb2.js"></script><script defer="" src="/_next/static/chunks/2238.2a60177179e5d29c.js"></script><script defer="" src="/_next/static/chunks/8319.7aabafe27b73a059.js"></script><script defer="" src="/_next/static/chunks/7033.f020e3381bd72749.js"></script><script defer="" src="/_next/static/chunks/2692.681a0b357a51cc67.js"></script><script defer="" src="/_next/static/chunks/2774.0d148b2beaf20bfc.js"></script><script defer="" src="/_next/static/chunks/2827.c7f17ed5128dfdbc.js"></script><script defer="" src="/_next/static/chunks/3912.bcd789ae63364d26.js"></script><script defer="" src="/_next/static/chunks/2597.611b0705ead11ef1.js"></script><script defer="" src="/_next/static/chunks/5794.b03ab08e3f264a29.js"></script><script defer="" src="/_next/static/chunks/6020.42bee40d76d481aa.js"></script><script defer="" src="/_next/static/chunks/7629.bf6ac4e99ad6bb7f.js"></script><script defer="" src="/_next/static/chunks/6493.e2658f1281dd0925.js"></script><script src="/_next/static/chunks/webpack-7f2212eb608f658c.js" defer=""></script><script src="/_next/static/chunks/framework-d4ccebddcb7396a0.js" defer=""></script><script src="/_next/static/chunks/main-2d5a4763049f4677.js" defer=""></script><script src="/_next/static/chunks/pages/_app-85f03a3b4f2da09f.js" defer=""></script><script src="/_next/static/chunks/2186-d0f52385a320c0bc.js" defer=""></script><script src="/_next/static/chunks/5228-0b8acd987bf11f7a.js" defer=""></script><script src="/_next/static/chunks/4656-ccc9c145a1e122c6.js" defer=""></script><script src="/_next/static/chunks/1156-0d9601ca87980c77.js" defer=""></script><script src="/_next/static/chunks/8516-0ae1e99bf031dfdc.js" defer=""></script><script src="/_next/static/chunks/8299-343185cab824809e.js" defer=""></script><script src="/_next/static/chunks/pages/index-19916ff68cda243e.js" defer=""></script><script src="/_next/static/IOS3IUeSWw79umApuwe-6/_buildManifest.js" defer=""></script><script src="/_next/static/IOS3IUeSWw79umApuwe-6/_ssgManifest.js" defer=""></script><style id="__jsx-2908242638">[object Object]
					[object Object]
				</style></head><body id="snyk" class="snyk-brand-ui"><noscript>You need to enable JavaScript to run this app.</noscript><link rel="preload" as="image" href="https://res.cloudinary.com/snyk/image/upload/v1781791757/Homepager_Hero_image_aal7qm.svg"/><link rel="preload" as="image" href="https://res.cloudinary.com/snyk/image/upload/v1769795551/illustration-integrations-home_cgbffw.svg"/><link rel="preload" as="image" imageSrcSet="https://res.cloudinary.com/snyk/image/upload/f_auto,w_384,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 384w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_580,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 580w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_960,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 960w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_1240,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 1240w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_2560,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 2560w" imageSizes="(max-width: 960px) 100vw, 50vw"/><div id="__next"><div class="bg-page dark-mode" data-page-theme="default"><a rel="nofollow" class="sr-focus-only button primary" href="/#main-content">Skip to main content</a><div class="panel-backdrop" aria-hidden="true"></div><header class="brandui-navigation navigation--motion" data-component="Mega Menu Nav"><nav id="primary-navigation" class="navigation wide-container-max"><a class="navigation-logo" aria-label="Snyk home" href="/"><div class="snyk-logo logo-wordmark" data-component="Snyk Logo"></div></a><button type="button" class="toggle-menu" title="Mobile menu trigger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primary-navigation-drawer"></button><div id="primary-navigation-drawer" class="navigation-wrapper"><ul class="navigation-menu"><li class="navigation-item" data-component="Nav Item"><button type="button" class="nav-dropdown w-full" aria-expanded="false"><span class="nav-label">Platform</span></button></li><li class="navigation-item" data-component="Nav Item"><button type="button" class="nav-dropdown w-full" aria-expanded="false"><span class="nav-label">Resources</span></button></li><li class="navigation-item" data-component="Nav Item"><button type="button" class="nav-dropdown w-full" aria-expanded="false"><span class="nav-label">Company</span></button></li><li class="navigation-item" data-component="Nav Item"><a class="nav-link" href="/plans/"><span class="nav-label">Pricing</span></a></li><li class="navigation-item" data-component="Nav Item"><a class="nav-link" href="/evo/"><span class="nav-label new-evo-feature">Evo</span><span class="new-evo-feature-tag">New</span></a></li></ul><div class="navigation-buttons"><div class="locale-selector-wrapper" data-component="Locale Selector"><span class="locale-selector-display" aria-hidden="true"><span class="locale-selector-display-label">EN</span></span><label class="sr-only" for="locale-selector">Select your language</label><select id="locale-selector" name="locale-selector" class="locale-selector"><option value="en-US" selected="">English</option><option value="de">Deutsch</option><option value="es">Español</option><option value="fr">Français</option><option value="jp">日本語</option><option value="pt-BR">Português</option></select></div><div class="navigation-item p-relative nav-login"><button class="nav-dropdown nav-login-label" aria-expanded="false">Login</button><div class="nav-login-menu"><div class="nav-login-accordion navigation-item open"><button class="nav-login-accordion-label" aria-expanded="true" aria-controls="free-login" id="free-login-trigger">Free and Team Plan Customers</button><div class="nav-login-accordion-content" id="free-login"><ul class="nav-login-accordion-links" aria-labelledby="free-login-trigger"><li><a href="https://app.snyk.io" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="false"><i class="general-icon icon-language"></i><div class="login-link-copy"><p class="login-link-label">Snyk</p><p class="login-link-desc">app.snyk.io</p></div></a></li></ul></div></div><div class="nav-login-accordion"><button class="nav-login-accordion-label" aria-expanded="false" aria-controls="enterprise-login" id="enterprise-login-trigger">Enterprise Plan Customers</button><div class="nav-login-accordion-content" id="enterprise-login"><ul class="nav-login-accordion-links" aria-labelledby="enterprise-login-trigger"><li><a href="https://app.snyk.io" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="false"><i class="general-icon">🇺🇸</i><div class="login-link-copy"><p class="login-link-label">Snyk US - 1</p><p class="login-link-desc">app.snyk.io</p></div></a></li><li><a href="https://app.us.snyk.io" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="false"><i class="general-icon">🇺🇸</i><div class="login-link-copy"><p class="login-link-label">Snyk US - 2</p><p class="login-link-desc">app.us.snyk.io</p></div></a></li><li><a href="https://app.eu.snyk.io" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="false"><i class="general-icon">🇪🇺</i><div class="login-link-copy"><p class="login-link-label">Snyk EU</p><p class="login-link-desc">app.eu.snyk.io</p></div></a></li><li><a href="https://app.au.snyk.io" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="false"><i class="general-icon">🇦🇺</i><div class="login-link-copy"><p class="login-link-label">Snyk AU</p><p class="login-link-desc">app.au.snyk.io</p></div></a></li></ul><small class="nav-login-accordion-disclaimer">The region where your data is hosted follows local agreements, and it may not align with your own location.<!-- --> <a href="https://docs.snyk.io/working-with-snyk/regional-hosting-and-data-residency" rel="noopener noreferrer" target="_blank">Find out more</a>.</small></div></div><div class="nav-login-accordion navigation-item"><button class="nav-login-accordion-label" aria-expanded="false" aria-controls="api-web-login" id="api-web-login-trigger" data-is-last="true">Snyk API &amp; Web - All Customers</button><div class="nav-login-accordion-content" id="api-web-login"><ul class="nav-login-accordion-links" aria-labelledby="api-web-login-trigger"><li><a href="https://plus.probely.app/" rel="noopener noreferrer" target="_blank" class="login-link link-external" data-is-last="true"><i class="general-icon icon-language"></i><div class="login-link-copy"><p class="login-link-label">Snyk API &amp; Web (DAST)</p><p class="login-link-desc">plus.probely.app</p></div></a></li></ul></div></div></div></div><a href="https://app.snyk.io/signup" rel="noopener noreferrer" target="_blank" class="button secondary button-small" title="Sign up" data-component="Next Link">Sign up</a><a class="button primary button-small" title="Book a live demo" data-component="Next Link" href="/schedule-a-demo/">Book a live demo</a></div></div><div class="nav-seo-links d-none" aria-hidden="true"><a href="/platform">Explore</a><a href="/integrations/">Integrations</a><a href="/platform/deepcode-ai/">DeepCode AI</a><a href="/evo">Evo Overview</a><a href="/evo/agentic-development-security">Evo Agentic Development Security</a><a href="/evo/aispm">Evo AI-SPM</a><a href="/evo/continuous-offensive-security">Evo Continuous Offensive Security</a><a href="/product/snyk-code/">Snyk Code</a><a href="/product/open-source-security-management/">Snyk Open Source</a><a href="/product/container-vulnerability-management/">Snyk Container</a><a href="/product/infrastructure-as-code-security/">Snyk IaC</a><a href="/product/dast-api-web/">Snyk API &amp; Web (DAST)</a><a href="/solutions/secure-ai-generated-code/">Secure AI-Generated Code</a><a href="/solutions/application-security/">Application Security</a><a href="/solutions/software-supply-chain-security/">Software Supply Chain Security</a><a href="/solutions/zero-day-vulnerability-security/">Zero-Day Vulns</a><a href="/solutions/risk-based-prioritization/">Risk based prioritization</a><a href="/resource-library/">Resource Library</a><a href="/customer-resources/">Customer Resources</a><a href="/lp/snyk-in-30-series/">Snyk in 30 Resource Hub</a><a href="/code-checker/">Code Checker</a><a href="/platform/security-intelligence/">Security Intelligence</a><a href="/blog/">Snyk Blog</a><a href="/podcasts/the-secure-developer/">Snyk&#x27;s Podcasts</a><a href="https://www.youtube.com/snyksec">Snyk’s YouTube</a><a href="/glossaries/ai/">AI Glossary</a><a href="https://labs.snyk.io/">Snyk Labs</a><a href="https://learn.snyk.io">Snyk Learn</a><a href="https://docs.snyk.io/">Snyk User Docs</a><a href="https://support.snyk.io/s/">Snyk Support</a><a href="https://security.snyk.io/">Snyk Vuln Database</a><a href="https://updates.snyk.io/">Snyk Updates</a><a href="https://partners.snyk.io/English/solutions/">Snyk Partner Solutions Directory</a><a href="https://www.aiseceng.io/">AI Security Engineers</a><a href="https://snyk.io/events/black-hat/">Book a meeting</a><a href="/events/">Events &amp; Webinars</a><a href="/snyk-ambassadors/">Ambassadors</a><a href="https://www.vulnvortex.com/">VulnVortex</a><a href="/ai-security/university-program/">AI Security University Program</a><a href="/newsletter/">Subscribe to our newsletter</a><a href="/services/">Our Services</a><a href="/customers/">Our Customers</a><a href="/partners/">Our Partners</a><a href="/case-studies/">Case Studies</a><a href="/news/">Newsroom</a><a href="/contact-us/">Contact Us</a><a href="/careers/">Careers</a><a href="/about/leadership/">Leadership</a><a href="/news/snyk-launches-evo-agentic-development-security/">Read more</a></div></nav></header><main id="main-content" tabindex="-1"><section class="hero hero-title-text homepage"><div class="decorations-wrapper"><div class="decoration-bg dot-wave dot-wave-1 dot-wave-top-left-high"></div></div><div class="hero-title-text-content-wrapper content-block"><div class="marg-h-auto"><div class="announcement-bar rsa" data-component="Announcement Bar"><a class="announcement-link link-arrow" href="/lp/state-of-agentic-ai-adoption-vol-II-dwn-typ/">New Research: What 3,000+ Enterprise Codebases Reveal About AI&#x27;s Hidden Footprint</a></div></div><div class="hero-title-text-content"><hgroup class="d-flex flex-col gap-extra-small items-center"><h1 class="txt-hero-title-large txt-ui-hero" data-component="Title">Unleash AI Innovators — Securely</h1><h2 class="txt-headline-small txt-ui-hero" data-component="Title">Snyk is the AI Security Fabric.</h2></hgroup><div class="txt-body txt-ui-body txt-rich max-w-6 marg-h-auto" data-component="Text"><p>An independent security layer that continuously validates AI-generated code, governs development agents, and secures AI-native applications—so organizations can move fast with AI without losing control.</p></div><div class="buttons marg-h-auto justify-center"><a class="button primary max-content" title="Explore the platform" data-component="Next Link" href="/platform/">Explore the platform</a></div></div></div><div class="media-slot home-page-asset-no-marging"><figure class="w-full" data-component="Media Asset Container"><img alt="Snyk Product Display" width="1229" height="1014" decoding="async" data-nimg="1" class="d-block w-full max-w-10 marg-h-auto" style="color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1781791757/Homepager_Hero_image_aal7qm.svg"/></figure></div></section><section class="brandui-section"><div class="brandui-container"><div class="marker-line-4 marg-h-auto marg-b-small"></div><div class="section-intro solo-title" data-component="Title Text"><h2 class="txt-section-title marg-h-auto" data-component="Title">Three problems defining AI security</h2></div><div class="d-grid grid-cols-3 mobile:grid-cols-1 gap-medium" data-component="Grid"><div class="card-wrapper" data-component="Media Card"><article class="card h-full"><div class="card-banner"><div class="w-full marg-h-auto p-relative aspect-ratio-banner" data-component="Banner"><img alt="attackers accelerating" loading="lazy" decoding="async" data-nimg="fill" class="object-fit-cover" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(min-width: 980px) 50vw, 100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803145%2Fattackers-accelerating_s9nebe.png&amp;w=2560&amp;q=75"/></div></div><div class="card-body"><p class="txt-subhead txt-line-clamp-2" data-component="Title">Automated AI Attacks</p><p class="txt-body txt-ui-body" data-component="Text">Machine-speed threats have eliminated the luxury of backlog. AI attacks chain multiple vulnerabilities autonomously — no human in the loop. What used to be a contained vulnerability becomes a full platform compromise before an analyst finishes reading the alert.</p></div></article></div><div class="card-wrapper" data-component="Media Card"><article class="card h-full"><div class="card-banner"><div class="w-full marg-h-auto p-relative aspect-ratio-banner" data-component="Banner"><img alt="shaping risks record speed" loading="lazy" decoding="async" data-nimg="fill" class="object-fit-cover" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(min-width: 980px) 50vw, 100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769802776%2Fshaping-risks-record-speed_ivfmxp.png&amp;w=2560&amp;q=75"/></div></div><div class="card-body"><p class="txt-subhead txt-line-clamp-2" data-component="Title">Untrusted Agentic Development</p><p class="txt-body txt-ui-body" data-component="Text">65–70% of production code is now AI-generated — and nearly half contains vulnerabilities. AI agents write code, invoke tools, and commit changes with no security checkpoint between inception and production. Security debt is accumulating at machine speed and shrinking at human speed.</p></div></article></div><div class="card-wrapper" data-component="Media Card"><article class="card h-full"><div class="card-banner"><div class="w-full marg-h-auto p-relative aspect-ratio-banner" data-component="Banner"><img alt="attack vectors" loading="lazy" decoding="async" data-nimg="fill" class="object-fit-cover" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(min-width: 980px) 50vw, 100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1769803212%2Fattack-vectors_kensmd.png&amp;w=2560&amp;q=75"/></div></div><div class="card-body"><p class="txt-subhead txt-line-clamp-2" data-component="Title">Ungoverned AI Applications</p><p class="txt-body txt-ui-body" data-component="Text">Security teams have no inventory of the models, workflows, or agents running in production. AI-native components are embedded everywhere — and you cannot enforce policy, pass an audit, or respond to an incident for systems you didn&#x27;t know existed.</p></div></article></div></div></div><div class="decorations-wrapper"><div class="decoration-glow glow-bottom-right glow-theme-solid-tertiary glow-large"></div><div class="decoration-glow glow-bottom-left glow-theme-solid-secondary glow-medium"></div><div class="decoration-bg circuit-tracks circuit-tracks-bottom-left"></div></div></section><section class="brandui-section"><div class="brandui-container"><div class="marker-line-4 marg-h-auto marg-b-small"></div><div class="section-intro" data-component="Title Text"><h2 class="txt-section-title marg-h-auto" data-component="Title">The Snyk AI Security Platform</h2><div class="txt-body-lead txt-ui-body txt-rich" data-component="Text"><p>Snyk is how organizations answer the one question every AI-building team faces: can we trust what we&#x27;re shipping? The AI Security Platform secures the code AI writes, the agents it runs, and the applications it builds — from inception to production.</p></div><div class="buttons marg-h-auto justify-center"><a class="button primary max-content mobile:marg-h-auto" title="Learn More" data-component="Next Link" href="/platform/">Learn More</a></div></div><div class="sticky-media-columns"><div class="sticky-media-scrollable-content grid-cols-2"><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">288%</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">ROI</p></div><p class="txt-body txt-ui-body" data-component="Text">from improved productivity, improved risk posture, and cost savings on consolidated solutions with Snyk</p></div></div><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">80%</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">Faster scan time</p></div><p class="txt-body txt-ui-body" data-component="Text">than solutions used prior to Snyk</p></div></div><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">75%</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">Faster remediation</p></div><p class="txt-body txt-ui-body" data-component="Text">for issues prevented upstream in development with Snyk</p></div></div><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">60%</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">Faster remediation</p></div><p class="txt-body txt-ui-body" data-component="Text">for issues found in runtime with Snyk compared to prior solutions</p></div></div><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">3</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">AppSec solutions </p></div><p class="txt-body txt-ui-body" data-component="Text">that were redundant with Snyk, that customers consolidated onto Snyk’s platform</p></div></div><div class="sticky-media-scrollable-content-item" style="opacity:0.25"><div class="d-flex flex-col gap-extra-small" data-component="Text Grid Statistic"><div class="wrap-anywhere"><p class="txt-hero-title-large txt-theme-gradient" data-component="Title">52%</p><p class="txt-mini-header txt-ui-headline txt-ui-body" data-component="Mini Header">Reduced risk</p></div><p class="txt-body txt-ui-body" data-component="Text">of a data breach with Snyk compared to prior solutions</p></div></div></div><div class="sticky-media-fixed-media"><div class="p-sticky top-huge"><div class="p-relative w-full marg-h-auto"><div class="decorations-wrapper"><div class="decoration-glow glow-top-right glow-theme-solid-primary glow-medium"></div><div class="decoration-glow glow-top-left glow-theme-solid-secondary glow-medium"></div></div><video id="homepage-video-v1_gnssle" width="2940" height="1912" title="homepage video" autoPlay="" controls="" muted="" loop="" playsInline="" class="w-full h-auto radius-small radius-small overflow-hidden p-relative"><source src="https://res.cloudinary.com/snyk/video/upload/q_auto/v1782133964/homepage-video-v1_gnssle.mp4" type="video/mp4"/><p class="pad-small bg-base-warning txt-body-bold txt-warning">Your browser does not support the video tag.</p></video></div></div></div></div></div><div class="decorations-wrapper"><div class="decoration-bg circuit-tracks circuit-tracks-top-right"></div></div></section><section class="brandui-section"><div class="brandui-container card pad-huge tablet:pad-medium"><div class="section-intro solo-title" data-component="Title Text"><h2 class="txt-section-title marg-h-auto" data-component="Title">Why customers trust Snyk</h2></div><div class="tabbed-content-wrapper brandui-scrollbar"><div class="w-fit marg-h-auto tabs" data-component="Tabbed Content" role="tablist"><button class="tab active" data-component="Tab" tabindex="0" id="6aArLWQoos0QowHKIZmQ3s" aria-selected="true" aria-controls="tabpanel-6aArLWQoos0QowHKIZmQ3s" role="tab"><div class="tab-indicator"></div><p class="tab-label">Yalo</p></button><button class="tab" data-component="Tab" tabindex="-1" id="16Wxr1o1OQVmXnguoQC0vk" aria-selected="false" aria-controls="tabpanel-16Wxr1o1OQVmXnguoQC0vk" role="tab"><p class="tab-label">Okta</p></button><button class="tab" data-component="Tab" tabindex="-1" id="40I2aRbJ5vpel3KseKDcDH" aria-selected="false" aria-controls="tabpanel-40I2aRbJ5vpel3KseKDcDH" role="tab"><p class="tab-label">Seismic</p></button><button class="tab" data-component="Tab" tabindex="-1" id="4LtCMooVHfum4nklRVZiZ2" aria-selected="false" aria-controls="tabpanel-4LtCMooVHfum4nklRVZiZ2" role="tab"><p class="tab-label">Komatsu</p></button><button class="tab" data-component="Tab" tabindex="-1" id="4uRP4O36pUR39FLYxl0UL8" aria-selected="false" aria-controls="tabpanel-4uRP4O36pUR39FLYxl0UL8" role="tab"><p class="tab-label">Skechers</p></button></div><div class="tabs-body"><div class="overflow-hidden w-full"><div id="tabpanel-6aArLWQoos0QowHKIZmQ3s" role="tabpanel" aria-labelledby="6aArLWQoos0QowHKIZmQ3s" tabindex="0" style="transform:translateX(0px);opacity:1;filter:blur(0px)"><div class="quote-media-wrapper"><div class="quote-media-item"><div class="w-full"><div class="w-full p-relative radius-small overflow-hidden" data-component="Video Facade"><div class="aspect-ratio-video"><img alt="" loading="lazy" width="1136" height="734" decoding="async" data-nimg="1" class="object-fit-cover" style="color:transparent" sizes="100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-yalo_1_goja0i.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-yalo_1_goja0i.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-yalo_1_goja0i.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-yalo_1_goja0i.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-yalo_1_goja0i.png&amp;w=2560&amp;q=75"/></div><div class="p-absolute inset bg-space-opal-3"></div><div class="toggle-play-wrapper"><button class="toggle-play scale-15" data-component="Play Trigger"><span class="sr-only">Play Video</span></button></div></div></div></div><div class="quote-media-item blockquote"><blockquote class="txt-subhead" data-component="Title"><p>“Every company is moving toward AI, and security has to move with it. Snyk is ready to support our AI initiatives by protecting us as we adopt and experiment with AI. That&#x27;s exactly the kind of partner we want for this next phase.”</p></blockquote><cite class="txt-body txt-ui-body quote-media-source" data-component="Text"><p>Leon Direito </p><p>CISO<!-- -->, Yalo</p></cite></div></div></div><div id="tabpanel-16Wxr1o1OQVmXnguoQC0vk" role="tabpanel" aria-labelledby="16Wxr1o1OQVmXnguoQC0vk" hidden="" tabindex="0" style="transform:translateX(50px);opacity:0;filter:blur(4px)"><div class="quote-media-wrapper"><div class="quote-media-item"><div class="w-full"><div class="w-full p-relative radius-small overflow-hidden" data-component="Video Facade"><div class="aspect-ratio-video"><img alt="" loading="lazy" width="1136" height="734" decoding="async" data-nimg="1" class="object-fit-cover" style="color:transparent" sizes="100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-okta_1_t0flq9.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-okta_1_t0flq9.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-okta_1_t0flq9.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-okta_1_t0flq9.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-okta_1_t0flq9.png&amp;w=2560&amp;q=75"/></div><div class="p-absolute inset bg-space-opal-3"></div><div class="toggle-play-wrapper"><button class="toggle-play scale-15" data-component="Play Trigger"><span class="sr-only">Play Video</span></button></div></div></div></div><div class="quote-media-item blockquote"><blockquote class="txt-subhead" data-component="Title"><p>“The biggest benefit of Snyk has been the ease of use. I would definitely recommend Snyk, especially if you have issues with dependency management.”</p></blockquote><cite class="txt-body txt-ui-body quote-media-source" data-component="Text"><p>Chitra Dharmarajan</p><p>VP, Security &amp; Privacy Engineering<!-- -->, Okta</p></cite></div></div></div><div id="tabpanel-40I2aRbJ5vpel3KseKDcDH" role="tabpanel" aria-labelledby="40I2aRbJ5vpel3KseKDcDH" hidden="" tabindex="0" style="transform:translateX(50px);opacity:0;filter:blur(4px)"><div class="quote-media-wrapper"><div class="quote-media-item"><div class="w-full"><div class="w-full p-relative radius-small overflow-hidden" data-component="Video Facade"><div class="aspect-ratio-video"><img alt="" loading="lazy" width="1136" height="734" decoding="async" data-nimg="1" class="object-fit-cover" style="color:transparent" sizes="100vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-seismic_1_lqzn5f.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-seismic_1_lqzn5f.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-seismic_1_lqzn5f.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-seismic_1_lqzn5f.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-seismic_1_lqzn5f.png&amp;w=2560&amp;q=75"/></div><div class="p-absolute inset bg-space-opal-3"></div><div class="toggle-play-wrapper"><button class="toggle-play scale-15" data-component="Play Trigger"><span class="sr-only">Play Video</span></button></div></div></div></div><div class="quote-media-item blockquote"><blockquote class="txt-subhead" data-component="Title"><p>&quot;We want our developers to be enabled with all the metadata about their known CVEs… and Snyk helps us take a systematic and methodical approach to triage the impact of CVEs in our codebase.&quot;</p></blockquote><cite class="txt-body txt-ui-body quote-media-source" data-component="Text"><p>Ethan Willer</p><p>Senior Information Security Analyst<!-- -->, Seismic</p></cite></div></div></div><div id="tabpanel-4LtCMooVHfum4nklRVZiZ2" role="tabpanel" aria-labelledby="4LtCMooVHfum4nklRVZiZ2" hidden="" tabindex="0" style="transform:translateX(50px);opacity:0;filter:blur(4px)"><div class="quote-media-wrapper"><div class="quote-media-item"><figure class="w-full" data-component="Media Asset Container"><img alt="" loading="lazy" width="1136" height="734" decoding="async" data-nimg="1" class="quote-media-asset" style="color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031219%2Fcustomer-testimonial-komatsu_1_a0gi6o.png&amp;w=2560&amp;q=75"/></figure></div><div class="quote-media-item blockquote"><blockquote class="txt-subhead" data-component="Title"><p>“Compared to our previous tooling, Snyk’s scanning is 2x faster and much more integrated to their tooling and processes.”</p></blockquote><cite class="txt-body txt-ui-body quote-media-source" data-component="Text"><p>Eric Cheng</p><p>Digital Solutions Architect<!-- -->, Komatsu</p></cite><a class="button secondary" title="Read Komatsu&#x27;s case study" data-component="Next Link" href="/case-studies/komatsu/">Read Komatsu&#x27;s case study</a></div></div></div><div id="tabpanel-4uRP4O36pUR39FLYxl0UL8" role="tabpanel" aria-labelledby="4uRP4O36pUR39FLYxl0UL8" hidden="" tabindex="0" style="transform:translateX(50px);opacity:0;filter:blur(4px)"><div class="quote-media-wrapper"><div class="quote-media-item"><figure class="w-full" data-component="Media Asset Container"><img alt="" loading="lazy" width="1136" height="734" decoding="async" data-nimg="1" class="quote-media-asset" style="color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770031218%2Fcustomer-testimonial-skechers_1_r80lml.png&amp;w=2560&amp;q=75"/></figure></div><div class="quote-media-item blockquote"><blockquote class="txt-subhead" data-component="Title"><p>“To innovate securely with AI, companies need to adopt AI thoughtfully and delegate tasks that AI can do best. And I believe Snyk will support that by delivering industry-leading AI models and keeping them on the bleeding edge of security innovation.”</p></blockquote><cite class="txt-body txt-ui-body quote-media-source" data-component="Text"><p>Ramon Borunda</p><p>Sr. Cloud Platform Engineer<!-- -->, Skechers, USA</p></cite></div></div></div></div></div></div></div></section><section class="brandui-section"><div class="brandui-container"><div class="d-flex flex-col gap-extra-large" data-component="Logo Parade"><p class="txt-subhead txt-ui-headline txt-center">Trusted by the world’s most innovative companies. </p><div class="w-full h-extra-large overflow-hidden"><div class="d-flex fit-content"><div class="logo-container centered" data-component="Logo Container"><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1674598632/customer-logos/logo-twilio.svg"/><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964481/website-customer-logos/logo-twilio-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Yalo logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-yalo-darkmode_uksrvt.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1702566793/website-customer-logos/logo-snowflake.svg"/><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964479/website-customer-logos/logo-snowflake-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-jaguar-land-rover-corporate.svg"/><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964451/website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="LabelBox logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-labelbox-darkmode_o1nzse.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg"/><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964473/website-customer-logos/logo-manulife-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1685113188/logo-spotify.svg"/><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-spotify-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-kroger.svg"/><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964452/website-customer-logos/logo-kroger-dark-mode.svg"/></div><div class="logo-container centered" data-component="Logo Container"><img alt="Wex logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-wex-darkmode_ta4qxf.svg"/></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1674598632/customer-logos/logo-twilio.svg"/><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964481/website-customer-logos/logo-twilio-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Yalo logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-yalo-darkmode_uksrvt.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1702566793/website-customer-logos/logo-snowflake.svg"/><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964479/website-customer-logos/logo-snowflake-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-jaguar-land-rover-corporate.svg"/><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964451/website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="LabelBox logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-labelbox-darkmode_o1nzse.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg"/><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964473/website-customer-logos/logo-manulife-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1685113188/logo-spotify.svg"/><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-spotify-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-kroger.svg"/><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964452/website-customer-logos/logo-kroger-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Wex logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-wex-darkmode_ta4qxf.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1674598632/customer-logos/logo-twilio.svg"/><img alt="Twilio logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964481/website-customer-logos/logo-twilio-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Yalo logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-yalo-darkmode_uksrvt.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1702566793/website-customer-logos/logo-snowflake.svg"/><img alt="Snowflake logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964479/website-customer-logos/logo-snowflake-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-jaguar-land-rover-corporate.svg"/><img alt="Jaguar Land Rover logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964451/website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="LabelBox logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-labelbox-darkmode_o1nzse.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg"/><img alt="Manulife logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964473/website-customer-logos/logo-manulife-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1685113188/logo-spotify.svg"/><img alt="Spotify logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-spotify-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-default" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-kroger.svg"/><img alt="Kroger logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1741964452/website-customer-logos/logo-kroger-dark-mode.svg"/></div></div><div class="w-full min-w-1 max-w-1 mobile:max-w-2 marg-small marg-t-none"><div class="logo-container centered" data-component="Logo Container"><img alt="Wex logo" loading="lazy" decoding="async" data-nimg="fill" class="logo-dark" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-wex-darkmode_ta4qxf.svg"/></div></div></div></div><div class="marker-line-4 marg-h-auto"></div><div class="recognition-badges-wrapper"><p class="txt-subhead-small txt-ui-headline txt-center">Named a leader by analysts &amp; customers</p><div class="recognition-badges"><img alt="Forrester Badge" loading="lazy" width="87" height="87" decoding="async" data-nimg="1" style="color:transparent;width:130px" src="/images/badge-forrester-wave-leader-2024.svg"/><img alt="Gartner Badge" loading="lazy" width="98" height="84" decoding="async" data-nimg="1" style="color:transparent;width:140px" src="/images/badge-gartner-pi-customers-choice-2024.svg"/><img alt="G2 Review" loading="lazy" width="145" height="35" decoding="async" data-nimg="1" style="color:transparent;width:160px" src="/images/badge-g2-reviews.svg"/></div></div></div></div></section><section class="brandui-section"><div class="brandui-container"><div class="text-media reverse" data-component="Text Media"><div class="text-media-media d-flex flex-col justify-center items-center"><figure class="w-full" data-component="Media Asset Container"><img alt="illustration integrations home" width="758" height="531" decoding="async" data-nimg="1" class="d-block w-full h-auto" style="color:transparent" src="https://res.cloudinary.com/snyk/image/upload/v1769795551/illustration-integrations-home_cgbffw.svg"/></figure></div><div class="text-media-text"><div class="text-media-text-content reverse"><div class="title-text" data-component="Title Text"><h2 class="txt-section-title" data-component="Title">Security built for how AI teams work</h2><div class="txt-body-lead txt-ui-body txt-rich title-text-left" data-component="Text"><p>The AI Security Fabric is woven into the tools your teams already use — IDEs, CI/CD pipelines, and AI coding assistants, including Claude Code, Cursor, and Codex.</p></div><div class="buttons"><a class="button primary max-content mobile:marg-h-auto" title="View all integrations" data-component="Next Link" href="/integrations/">View all integrations</a></div></div></div></div></div></div></section><section class="brandui-section" data-component="Editorial Grid"><div class="brandui-container"><div class="marker-line-4 marg-h-auto marg-b-small"></div><div class="section-intro" data-component="Title Text"><h2 class="txt-section-title marg-h-auto" data-component="Title">Explore resources</h2><div class="buttons marg-h-auto justify-center"><a class="button primary max-content mobile:marg-h-auto" title="View all here" data-component="Next Link" href="/resource-library/">View all here</a></div></div><div class="d-grid grid-editorial mobile:grid-cols-1 grid-items-3 gap-small"><article class="card-bg-image shadow-outline dark-mode"><img alt="" loading="lazy" decoding="async" data-nimg="fill" class="card-bg-image-asset" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046006%2FCISO-GUIDE_kffrnm.png&amp;w=2560&amp;q=75"/><div class="card-bg-image-content"><p class="txt-mini-header-small txt-ui-headline" data-component="Mini Header">Guide</p><p class="txt-subhead txt-line-clamp-2" data-component="Title">CISO’s Guide to Evolving AppSec in the AI Era: From Reactive Fixing to Proactive Risk Reduction</p><a class="button tertiary max-w-full link-stretched" title="Download Now" data-component="Next Link" href="/lp/cisos-guide-appsec-ai-era/">Download Now</a></div></article><article class="card-bg-image shadow-outline dark-mode"><img alt="" loading="lazy" decoding="async" data-nimg="fill" class="card-bg-image-asset" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770131197%2F2026-ai-report_f65o1i.png&amp;w=2560&amp;q=75"/><div class="card-bg-image-content"><p class="txt-mini-header-small txt-ui-headline" data-component="Mini Header">Report</p><p class="txt-subhead txt-line-clamp-2" data-component="Title">2026 State of Agentic AI Adoption</p><a class="button tertiary max-w-full link-stretched" title="Download Now" data-component="Next Link" href="/lp/state-of-agentic-ai-adoption/">Download Now</a></div></article><article class="card-bg-image shadow-outline dark-mode"><img alt="" loading="lazy" decoding="async" data-nimg="fill" class="card-bg-image-asset" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=384&amp;q=75 384w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=580&amp;q=75 580w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=960&amp;q=75 960w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=1240&amp;q=75 1240w, /_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=2560&amp;q=75 2560w" src="/_next/image/?url=https%3A%2F%2Fres.cloudinary.com%2Fsnyk%2Fimage%2Fupload%2Fv1770046007%2Ftotal-impact-of-snyk_ezjnhm.png&amp;w=2560&amp;q=75"/><div class="card-bg-image-content"><p class="txt-mini-header-small txt-ui-headline" data-component="Mini Header">Forrester study</p><p class="txt-subhead txt-line-clamp-2" data-component="Title">The Total Economic Impact™ of The Snyk AI Trust Platform | Forrester Study</p><a class="button tertiary max-w-full link-stretched" title="Download now" data-component="Next Link" href="/lp/total-economic-impact-snyk/">Download now</a></div></article></div></div></section><section class="brandui-section"><div class="brandui-container"><div class="text-media" data-component="Text Media"><div class="text-media-media d-flex flex-col justify-center items-center"><figure class="w-full" data-component="Media Asset Container"><img alt="Snyk Security Track AI Engineer playlist" width="1280" height="720" decoding="async" data-nimg="1" class="d-block w-full h-auto" style="color:transparent" sizes="(max-width: 960px) 100vw, 50vw" srcSet="https://res.cloudinary.com/snyk/image/upload/f_auto,w_384,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 384w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_580,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 580w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_960,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 960w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_1240,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 1240w, https://res.cloudinary.com/snyk/image/upload/f_auto,w_2560,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg 2560w" src="https://res.cloudinary.com/snyk/image/upload/f_auto,w_2560,q_auto/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg"/></figure></div><div class="text-media-text"><div class="text-media-text-content"><div class="title-text" data-component="Title Text"><p class="txt-mini-header txt-theme-gradient" data-component="Mini Header">Snyk Security Track</p><h2 class="txt-section-title" data-component="Title">AI Engineer World’s Fair</h2><div class="txt-body-lead txt-ui-body txt-rich title-text-left" data-component="Text"><p>Snyk led the first-ever security track at this AI engineering event, putting AI and agentic development security front and center alongside the industry leaders reshaping how software gets built. Watch all recorded tracks now. </p></div><div class="buttons"><a class="button primary max-content mobile:marg-h-auto" title="Watch now" data-component="Next Link" href="/lp/snyk-ai-engineer-worlds-fair/">Watch now</a></div></div></div></div></div></div></section><section class="brandui-section" data-component="Text Grid CTA"><div class="brandui-container"><div class="marker-line-4 marg-h-auto marg-b-small"></div><div class="section-intro" data-component="Title Text"><h2 class="txt-section-title marg-h-auto" data-component="Title">Can you trust what you’re shipping?</h2><div class="txt-body-lead txt-ui-body txt-rich" data-component="Text"><p>Every organization building with AI needs to answer this one question. Get started with Snyk in minutes.</p></div></div><div class="pad-huge card-decorated"><div class="d-flex mobile:flex-col gap-extra-large items-start"><div class="w-full d-flex flex-col gap-large max-w-4 mobile:max-w-full pad-r-extra-large mobile:pad-r-none mobile:txt-center mobile:items-center"><h2 class="txt-headline-small pad-t-extra-small" data-component="Title">Try Snyk for free</h2><div class="txt-body txt-ui-body txt-rich" data-component="Text"><p>Create your free Snyk account to start securing AI-generated code in minutes. </p><p>No credit card required.</p></div><a href="https://app.snyk.io/login" rel="noopener noreferrer" target="_blank" class="button primary max-w-content" title="Get Started" data-component="Next Link" id="4k8Q42vldzL6qr1Zy9gsqw" url="https://app.snyk.io/login" label="Get Started">Get Started</a></div><div class="d-grid grid-cols-2 mobile:grid-cols-1 max-w-8 mobile:max-w-full gap-extra-large" data-component="Grid"><div class="text-grid-item" data-component="Text Grid Item"><hgroup class="d-flex flex-col gap-extra-small"><div class="d-flex gap-extra-small items-center flex-wrap"><h2 class="txt-subhead txt-theme-solid" data-component="Title">See Snyk in action</h2></div></hgroup><div class="txt-body txt-ui-body txt-rich" data-component="Text"><p>See why the world&#x27;s largest engineering organizations trust Snyk as their independent AI security validator.</p></div><a class="button tertiary max-w-full marg-t-auto" title="Book a live demo" data-component="Next Link" href="/schedule-a-demo/">Book a live demo</a></div><div class="text-grid-item" data-component="Text Grid Item"><hgroup class="d-flex flex-col gap-extra-small"><div class="d-flex gap-extra-small items-center flex-wrap"><h2 class="txt-subhead txt-theme-solid" data-component="Title">Get in touch</h2></div></hgroup><div class="txt-body txt-ui-body txt-rich" data-component="Text"><p>Questions about the platform or where to start? We&#x27;d love to talk through your AI security program.</p></div><a class="button tertiary max-w-full marg-t-auto" title="Contact us" data-component="Next Link" href="/contact-us/">Contact us</a></div></div></div><div class="decorations-wrapper card-decorations"><div class="decoration-bg dot-wave dot-wave-3 dot-wave-bottom-right"></div></div></div></div></section></main><footer class="brandui-footer"><div class="footer-content content-block"><nav class="footer-navigation"><div class="footer-column"><h2 class="footer-column-title txt-mini-header-small">Platform</h2><ul class="footer-links"><li><a class="d-block" href="/platform/">Snyk AI Security Platform</a></li><li><a class="d-block" href="/evo/">Evo</a></li><li><a class="d-block" href="/integrations/">Integrations</a></li><li><a class="d-block" href="/platform/deepcode-ai/">DeepCode AI</a></li></ul></div><div class="footer-column"><h2 class="footer-column-title txt-mini-header-small">Our Resources</h2><ul class="footer-links"><li><a class="d-block" href="/resource-library/">Resource Library</a></li><li><a class="d-block" href="/blog/">Blog</a></li><li><a class="d-block" href="/podcasts/the-secure-developer/">Snyk’s Podcasts</a></li><li><a class="d-block" href="/glossaries/ai/">AI Glossary</a></li></ul></div><div class="footer-column"><h2 class="footer-column-title txt-mini-header-small">Knowledge &amp; Docs</h2><ul class="footer-links"><li><a href="https://labs.snyk.io/" rel="noopener noreferrer" target="_blank" class="d-block">Snyk Labs</a></li><li><a class="d-block" href="/platform/snyk-learn/">Snyk Learn</a></li><li><a href="https://docs.snyk.io/" rel="noopener noreferrer" target="_blank" class="d-block">Snyk User Docs</a></li><li><a href="https://support.snyk.io/s/" rel="noopener noreferrer" target="_blank" class="d-block">Snyk Support</a></li><li><a href="https://security.snyk.io/" rel="noopener noreferrer" target="_blank" class="d-block">Snyk Vuln Database</a></li><li><a href="https://updates.snyk.io/" rel="noopener noreferrer" target="_blank" class="d-block">Snyk Updates</a></li><li><a href="https://trust.snyk.io/home" rel="noopener noreferrer" target="_blank" class="d-block">Snyk Trust Center</a></li></ul></div><div class="footer-column"><h2 class="footer-column-title txt-mini-header-small">Company &amp; Community</h2><ul class="footer-links"><li><a class="d-block" href="/about/">About Snyk</a></li><li><a class="d-block" href="/contact-us/">Contact Us</a></li><li><a class="d-block" href="/schedule-a-demo/">Book A Demo</a></li><li><a class="d-block" href="/careers/">Careers</a></li><li><a class="d-block" href="/events/">Events &amp; Webinars</a></li><li><a class="d-block" href="/snyk-ambassadors/">Ambassadors</a></li></ul></div><div class="footer-column"><h2 class="footer-column-title txt-mini-header-small">Why Snyk</h2><ul class="footer-links"><li><a class="d-block" href="/comparison/github-vs-snyk/">Snyk vs GitHub Advanced Security</a></li><li><a class="d-block" href="/comparison/snyk-vs-veracode/">Snyk vs Veracode</a></li><li><a class="d-block" href="/comparison/snyk-vs-checkmarx/">Snyk vs Checkmarx</a></li><li><a class="d-block" href="/comparison/snyk-vs-blackduck/">Snyk vs Black Duck</a></li><li><a class="d-block" href="/comparison/snyk-vs-wiz/">Snyk vs Wiz</a></li><li><a class="d-block" href="/comparison/snyk-vs-aikido/">Snyk vs Aikido</a></li></ul></div></nav><div class="footer-info"><div class="footer-column"><div class="d-grid gap-medium"><div class="max-w-1 w-full snyk-logo logo-wordmark footer-logo" alt="Snyk Logo"></div><ul class="footer-social-links" aria-label="Social Media Links"><li><a href="https://twitter.com/snyksec" target="_blank" rel="noopener" aria-label="twitter"><i title="twitter" class="general-icon icon-twitter share-this-icon"></i></a></li><li><a href="https://www.youtube.com/channel/UCh4dJzctb0NhSibjU-e2P6w" target="_blank" rel="noopener" aria-label="youtube"><i title="youtube" class="general-icon icon-youtube share-this-icon"></i></a></li><li><a href="https://www.linkedin.com/company/snyk" target="_blank" rel="noopener" aria-label="linkedin"><i title="linkedin" class="general-icon icon-linkedin share-this-icon"></i></a></li><li><a href="https://github.com/snyk/" target="_blank" rel="noopener" aria-label="github"><i title="github" class="general-icon icon-github share-this-icon"></i></a></li><li><a href="https://www.npmjs.com/package/snyk" target="_blank" rel="noopener" aria-label="npm"><i title="npm" class="general-icon icon-npm share-this-icon"></i></a></li><li><a href="https://snyk.co/discordcommunity" target="_blank" rel="noopener" aria-label="discord"><i title="discord" class="general-icon icon-discord share-this-icon"></i></a></li></ul></div></div><div class="footer-column"><div class="d-grid gap-extra-small"><h2 class="txt-headline-small txt-ui-text">Patched &amp; Dispatched</h2><p>Your <!-- -->monthly<!-- --> roundup of Snyk content – the latest insights patched in, dispatched straight to your inbox. No fluff. Just the good stuff.</p></div></div><div class="footer-column d-flex justify-center items-center"><a class="button primary marg-b-medium" title="Subscribe to our newsletter" data-component="Next Link" href="/newsletter/">Subscribe to our newsletter</a></div></div><div class="footer-legal"><div class="footer-legal-copyright"><p>© 2026 Snyk Limited<br/>Registered in England and Wales</p></div><ul class="footer-legal-links" aria-label="Legal Links"><li><a href="/policies/terms-of-service/" target="_blank">Legal terms</a></li><li><a href="/policies/privacy/" target="_blank">Privacy Notice</a></li><li><a href="/policies/website-terms-of-use/" target="_blank">Terms of use</a></li><li><a href="https://preferences.snyk.io/dont_sell" target="_blank">California residents: do not sell my information</a></li></ul></div></div></footer><div id="modal-root"></div></div><script type="application/ld+json" id="organization-jsonld-Organization">{"@context":"https://schema.org","@type":"Organization","@id":"https://snyk.io/#organization","name":"Snyk","url":"https://snyk.io","logo":"https://res.cloudinary.com/snyk/image/upload/v1588772106/title-card-vertical-white-1.png","sameAs":["https://www.facebook.com/snyksec/","https://twitter.com/snyksec"]}</script><!--$--><!--/$--></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"page":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"wP7HA5ypyJHXaJT3ofZuM","type":"Entry","createdAt":"2025-03-31T11:13:01.200Z","updatedAt":"2026-07-31T16:14:34.479Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":116,"revision":28,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"templateDefault"}},"locale":"en-US"},"fields":{"internalName":"HOMEPAGE 2025","title":"Snyk AI Security Fabric | Secure Code, Models \u0026 Agents","slug":"snyk-developer-security-platform-or-ai-powered-appsec-tool","uri":"/","pageLocalization":["de","fr","ja","pt-BR","es"],"seoSocialSharing":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"76u8uEbDYY1iI5ptRjljxF","type":"Entry","createdAt":"2025-03-31T11:13:00.754Z","updatedAt":"2026-06-23T09:29:53.337Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":78,"revision":14,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"seo"}},"locale":"en-US"},"fields":{"internalName":"Homepage (new 2025)","title":"Snyk AI Security Fabric | Secure Code, Models \u0026 Agents","description":"Snyk is the AI Security Fabric — the independent validator that makes AI-generated code, AI agents, and AI-native applications trustworthy. Unleash AI innovation securely.","no_index":false,"sitemapChangeFreq":"monthly","sitemapPriority":0.7}},"hero":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4HZI43XbGIhYIdSx9mAp0I","type":"Entry","createdAt":"2025-07-11T17:09:18.452Z","updatedAt":"2026-06-23T11:52:46.769Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":87,"revision":16,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismHeroTitleText"}},"locale":"en-US"},"fields":{"internalName":"New homepage hero Jan 2026","announcement":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6b0Rw9NDYl0NMjrwF5rpDA","type":"Entry","createdAt":"2026-06-23T11:52:46.798Z","updatedAt":"2026-08-03T11:53:25.336Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":15,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeAnnouncementBar"}},"locale":"en-US"},"fields":{"internalName":"Announcement: [New Research: What 3,000+ Enterprise Codebases Reveal About AI's Hidden Footprint]","message":"New Research: What 3,000+ Enterprise Codebases Reveal About AI's Hidden Footprint","url":"/lp/state-of-agentic-ai-adoption-vol-II-dwn-typ/","theme":"rsa"}},"headline":"Unleash AI Innovators — Securely","subHeadline":"Snyk is the AI Security Fabric.","description":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"An independent security layer that continuously validates AI-generated code, governs development agents, and secures AI-native applications—so organizations can move fast with AI without losing control.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1z2LT57YUzPZ6hWwgCoKgF","type":"Entry","createdAt":"2026-02-03T12:37:46.242Z","updatedAt":"2026-06-23T09:29:53.392Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":21,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"Explore the AI Security Fabric - Platform Page","label":"Explore the platform","url":"/platform/","appearance":{"button":{"variant":"primary"}},"copyToClipboard":false}}],"appearance":{"heroTitleText":{}},"mediaSlot":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"ry9qvYMoBdamyDa1ZuZCb","type":"Entry","createdAt":"2026-05-19T12:11:26.693Z","updatedAt":"2026-06-23T09:29:53.407Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":12,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCloudinaryAsset"}},"locale":"en-US"},"fields":{"internalName":"Homepage Asset","asset":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1781791757/Homepager_Hero_image_aal7qm.svg","tags":[],"type":"upload","bytes":2471753,"width":1229,"format":"svg","height":1014,"version":1781791757,"duration":null,"metadata":{},"public_id":"Homepager_Hero_image_aal7qm","created_at":"2026-06-18T14:09:17Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1781791757/Homepager_Hero_image_aal7qm.svg","resource_type":"image"}],"maxWidth":"full","altText":"Snyk Product Display"}},"isHomepage":true,"showFabricAtTop":true,"fabricPosition":"left"}},"sections":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"5p7V09fxc9Gly7ijBifiV1","type":"Entry","createdAt":"2026-02-03T12:37:46.283Z","updatedAt":"2026-06-23T09:29:53.440Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":10,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismMediaCardGrid"}},"locale":"en-US"},"fields":{"internalName":"Organism: Media Card Grid","sectionIntro":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6jagyed7t4AhcX3BPxMmqI","type":"Entry","createdAt":"2026-06-23T09:29:53.455Z","updatedAt":"2026-06-23T09:29:53.455Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":2,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"Three problems defining AI security","headline":"Three problems defining AI security","includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"gridItems":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4RNTb40I03UjsYkFxLci6J","type":"Entry","createdAt":"2026-02-03T12:37:46.334Z","updatedAt":"2026-06-23T09:29:53.469Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":18,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeMediaCard"}},"locale":"en-US"},"fields":{"internalName":"Automated AI Attacks- Media Card","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1769803145/attackers-accelerating_s9nebe.png","tags":[],"type":"upload","bytes":87369,"width":2400,"format":"png","height":1260,"version":1769803145,"duration":null,"metadata":{},"public_id":"attackers-accelerating_s9nebe","created_at":"2026-01-30T19:59:05Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1769803145/attackers-accelerating_s9nebe.png","resource_type":"image"}],"headline":"Automated AI Attacks","excerpt":"Machine-speed threats have eliminated the luxury of backlog. AI attacks chain multiple vulnerabilities autonomously — no human in the loop. What used to be a contained vulnerability becomes a full platform compromise before an analyst finishes reading the alert."}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4uVKQRZOo9sF6lgcxNsJj5","type":"Entry","createdAt":"2026-02-03T12:37:46.303Z","updatedAt":"2026-06-23T09:29:53.482Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":16,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeMediaCard"}},"locale":"en-US"},"fields":{"internalName":"Untrusted Agentic Development - Media Card","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1769802776/shaping-risks-record-speed_ivfmxp.png","tags":[],"type":"upload","bytes":1484760,"width":2400,"format":"png","height":1260,"version":1769802776,"duration":null,"metadata":{},"public_id":"shaping-risks-record-speed_ivfmxp","created_at":"2026-01-30T19:52:56Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1769802776/shaping-risks-record-speed_ivfmxp.png","resource_type":"image"}],"headline":"Untrusted Agentic Development","excerpt":"65–70% of production code is now AI-generated — and nearly half contains vulnerabilities. AI agents write code, invoke tools, and commit changes with no security checkpoint between inception and production. Security debt is accumulating at machine speed and shrinking at human speed."}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3ccE2zMcgBuxAdAphQu4Ex","type":"Entry","createdAt":"2026-02-03T12:37:46.352Z","updatedAt":"2026-06-23T09:29:53.525Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":17,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeMediaCard"}},"locale":"en-US"},"fields":{"internalName":"Ungoverned AI Applications - Media Card","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1769803212/attack-vectors_kensmd.png","tags":[],"type":"upload","bytes":103324,"width":2400,"format":"png","height":1260,"version":1769803212,"duration":null,"metadata":{},"public_id":"attack-vectors_kensmd","created_at":"2026-01-30T20:00:12Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1769803212/attack-vectors_kensmd.png","resource_type":"image"}],"headline":"Ungoverned AI Applications","excerpt":"Security teams have no inventory of the models, workflows, or agents running in production. AI-native components are embedded everywhere — and you cannot enforce policy, pass an audit, or respond to an incident for systems you didn't know existed."}}],"appearance":{"mediaCardGrid":{}},"forceNewTab":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"8rqPz5WaxsxrpHuqF4sGT","type":"Entry","createdAt":"2025-03-31T11:13:01.030Z","updatedAt":"2026-02-03T12:37:46.369Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":26,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismStickyMedia"}},"locale":"en-US"},"fields":{"internalName":"The Snyk AI Security Platform - Sticky media with video","sectionIntro":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6m55oR8HUqdt1l7Wiu0kOd","type":"Entry","createdAt":"2025-03-31T11:13:00.213Z","updatedAt":"2026-06-23T09:29:53.547Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":76,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"The Snyk AI Security Platform - Section Intro - Sticky Media","headline":"The Snyk AI Security Platform","description":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"Snyk is how organizations answer the one question every AI-building team faces: can we trust what we're shipping? The AI Security Platform secures the code AI writes, the agents it runs, and the applications it builds — from inception to production.","marks":[],"data":{}}]}]},"actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2okTECOeLPwzZSat8tmqAM","type":"Entry","createdAt":"2023-02-03T11:04:07.510Z","updatedAt":"2026-04-14T15:38:40.841Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":113,"revision":25,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"Learn More\" - Primary (Global)","label":"Learn More","url":"/platform/","appearance":{"button":{"variant":"primary"}}}}],"includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"stickyMedia":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4FeMjQQXJhhQON7hL1k9X4","type":"Entry","createdAt":"2025-03-31T11:12:59.649Z","updatedAt":"2026-06-23T09:29:53.579Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":14,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCloudinaryAsset"}},"locale":"en-US"},"fields":{"internalName":"\"Snyk platform recording\"  - homepage video","asset":[{"url":"http://res.cloudinary.com/snyk/video/upload/v1782133964/homepage-video-v1_gnssle.mp4","tags":[],"type":"upload","bytes":21597603,"width":2940,"format":"mp4","height":1912,"version":1782133964,"duration":43.9,"metadata":{},"public_id":"homepage-video-v1_gnssle","created_at":"2026-06-22T13:12:44Z","secure_url":"https://res.cloudinary.com/snyk/video/upload/v1782133964/homepage-video-v1_gnssle.mp4","resource_type":"video"}],"maxWidth":"full"}},"scrollableContentHas2Columns":true,"triggerRiveInputOnItemVisible":false,"scrollableContent":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4mP0H66BG3kTmxsNiQUctC","type":"Entry","createdAt":"2025-03-31T11:12:59.750Z","updatedAt":"2026-04-14T15:38:40.858Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":79,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"288%","statValue":"288%","miniHeader":"ROI","description":"from improved productivity, improved risk posture, and cost savings on consolidated solutions with Snyk"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1AxYb85xzALnhXIZYK6cbm","type":"Entry","createdAt":"2025-03-31T11:12:57.968Z","updatedAt":"2026-04-14T15:38:40.881Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":82,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"80%","statValue":"80%","miniHeader":"Faster scan time","description":"than solutions used prior to Snyk"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"7vrwF7sBtJSdaQlQz3hoBL","type":"Entry","createdAt":"2025-03-31T11:13:01.002Z","updatedAt":"2026-04-14T15:38:40.895Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":79,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"75%","statValue":"75%","miniHeader":"Faster remediation","description":"for issues prevented upstream in development with Snyk"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6p4vGfTi3I354b8nEzhbbL","type":"Entry","createdAt":"2025-03-31T11:13:00.276Z","updatedAt":"2026-04-14T15:38:40.911Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":76,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"60%","statValue":"60%","miniHeader":"Faster remediation","description":"for issues found in runtime with Snyk compared to prior solutions"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"BObIjPriv3clqYk6FQp8V","type":"Entry","createdAt":"2025-03-31T11:13:01.058Z","updatedAt":"2026-04-14T15:38:40.942Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":76,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"3","statValue":"3","miniHeader":"AppSec solutions ","description":"that were redundant with Snyk, that customers consolidated onto Snyk’s platform"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3D2L8sO673dovq1cyOWhgJ","type":"Entry","createdAt":"2025-03-31T11:12:59.062Z","updatedAt":"2026-04-14T15:38:40.959Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":74,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentStatistic"}},"locale":"en-US"},"fields":{"internalName":"52%","statValue":"52%","miniHeader":"Reduced risk","description":"of a data breach with Snyk compared to prior solutions"}}]}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3TM8PCkcSTerphSt6mK1W3","type":"Entry","createdAt":"2025-02-14T20:51:07.341Z","updatedAt":"2026-06-24T06:54:50.695Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":36,"revision":8,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismTabbedContent"}},"locale":"en-US"},"fields":{"internalName":"\"Why customers trust Snyk\" - Tabbed Content","sectionIntro":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"5OgGNan76dBlOH7M4xF7hy","type":"Entry","createdAt":"2025-02-18T13:21:30.275Z","updatedAt":"2026-04-14T15:38:41.001Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":91,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"TEMP: \"Why customers trust Snyk\" - TabbedContent Section Header","headline":"Why customers trust Snyk","includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"tabs":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6aArLWQoos0QowHKIZmQ3s","type":"Entry","createdAt":"2026-02-03T12:37:47.299Z","updatedAt":"2026-04-14T15:38:41.047Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":12,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentTab"}},"locale":"en-US"},"fields":{"internalName":"\"Yalo\" Tabbed Content - Tab","label":"Yalo","tabContent":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"5zRSUaV9fBYdmCwP4PJU2j","type":"Entry","createdAt":"2026-02-03T12:37:47.318Z","updatedAt":"2026-04-14T15:38:41.064Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":17,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentQuote"}},"locale":"en-US"},"fields":{"internalName":"Quote: Leon Direito, CISO, Yalo","quote":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"“Every company is moving toward AI, and security has to move with it. Snyk is ready to support our AI initiatives by protecting us as we adopt and experiment with AI. That's exactly the kind of partner we want for this next phase.”","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"source":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4ZP1RiVuRep4UG9SRVX56J","type":"Entry","createdAt":"2026-02-03T12:37:42.775Z","updatedAt":"2026-02-03T12:37:47.351Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":9,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentPerson"}},"locale":"en-US"},"fields":{"internalName":"Leon Direito - Tabbed Content quote","fullName":"Leon Direito ","slug":"leon-direito-1","firstName":"Leon","lastName":"Direito","site":"snyk.io","title":"CISO","company":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"Md0h5BL68c5dNNPXJ73Ol","type":"Entry","createdAt":"2026-02-03T12:37:47.372Z","updatedAt":"2026-02-03T12:37:47.372Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":2,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Yalo","isCustomer":false,"isPartner":false}}}},"customImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-yalo_1_goja0i.png","tags":[],"type":"upload","bytes":298835,"width":1136,"format":"png","height":734,"version":1770031218,"duration":null,"metadata":{},"public_id":"customer-testimonial-yalo_1_goja0i","created_at":"2026-02-02T11:20:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-yalo_1_goja0i.png","resource_type":"image"}],"youtubeId":"-rJiRhRlM48"}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"16Wxr1o1OQVmXnguoQC0vk","type":"Entry","createdAt":"2025-02-18T14:08:43.262Z","updatedAt":"2026-04-14T15:38:41.113Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":90,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentTab"}},"locale":"en-US"},"fields":{"internalName":"\"Okta\" Tabbed Content - Tab","label":"Okta","tabContent":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"33slV20yEpB2QYagQRENc1","type":"Entry","createdAt":"2025-03-31T11:12:58.887Z","updatedAt":"2026-04-14T15:38:41.132Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":78,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentQuote"}},"locale":"en-US"},"fields":{"internalName":"Quote: Chitra Dharmarajan, Okta","quote":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"“The biggest benefit of Snyk has been the ease of use. I would definitely recommend Snyk, especially if you have issues with dependency management.”","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"source":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6nb03mbWsK6yJjD1fe2EhW","type":"Entry","createdAt":"2025-03-31T11:13:00.250Z","updatedAt":"2026-02-03T12:37:47.466Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":9,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentPerson"}},"locale":"en-US"},"fields":{"internalName":"Chitra Dharmarajan - Tabbed Content quote","fullName":"Chitra Dharmarajan","slug":"chitra-dharmarajan","firstName":"Chitra","lastName":"Dharmarajan","title":"VP, Security \u0026 Privacy Engineering","company":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4Gw0zof9TNowiO3SwW1Qo7","type":"Entry","createdAt":"2024-09-13T14:34:45.070Z","updatedAt":"2026-02-03T12:37:47.484Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":8,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Okta","logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1749142331/website-logo-icons/logo-okta-dark-mode.svg","tags":[],"type":"upload","bytes":6883,"width":146,"format":"svg","height":48,"version":1749142331,"duration":null,"metadata":{},"public_id":"website-logo-icons/logo-okta-dark-mode","created_at":"2025-06-05T16:52:11Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1749142331/website-logo-icons/logo-okta-dark-mode.svg","resource_type":"image"}],"logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1726234470/logo-okta.svg","tags":[],"type":"upload","bytes":4610,"width":600,"format":"svg","height":197,"version":1726234470,"duration":null,"metadata":{},"public_id":"logo-okta","created_at":"2024-09-12T12:53:59Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1726234470/logo-okta.svg","resource_type":"image"}],"isCustomer":false,"isPartner":false}}}},"customImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-okta_1_t0flq9.png","tags":[],"type":"upload","bytes":156875,"width":1136,"format":"png","height":734,"version":1770031218,"duration":null,"metadata":{},"public_id":"customer-testimonial-okta_1_t0flq9","created_at":"2026-02-02T11:20:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-okta_1_t0flq9.png","resource_type":"image"}],"youtubeId":"bF6sP-_zsDI"}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"40I2aRbJ5vpel3KseKDcDH","type":"Entry","createdAt":"2025-03-31T11:12:59.595Z","updatedAt":"2026-04-14T15:38:41.181Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":73,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentTab"}},"locale":"en-US"},"fields":{"internalName":"Seismic - TabbedContent - Tab","label":"Seismic","tabContent":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"7vpurSSzZmuO1s33O69vzt","type":"Entry","createdAt":"2025-03-31T11:13:00.986Z","updatedAt":"2026-04-14T15:38:41.197Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":78,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentQuote"}},"locale":"en-US"},"fields":{"internalName":"Quote: Ethan Willer, Seismic - Tabbed Content quote","quote":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"\"We want our developers to be enabled with all the metadata about their known CVEs… and Snyk helps us take a systematic and methodical approach to triage the impact of CVEs in our codebase.\"","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"source":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4mThTkrXrvXzPRtpAbmzbg","type":"Entry","createdAt":"2025-03-31T11:12:59.774Z","updatedAt":"2026-02-03T12:37:47.574Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":7,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentPerson"}},"locale":"en-US"},"fields":{"internalName":"Ethan Willer","fullName":"Ethan Willer","slug":"ethan-willer","firstName":"Ethan","lastName":"Willer","title":"Senior Information Security Analyst","company":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"nFix3ZRX8Ba2loVe9721G","type":"Entry","createdAt":"2022-12-01T15:59:48.978Z","updatedAt":"2026-02-03T12:37:47.594Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":11,"revision":4,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Seismic","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1660155565/wordpress-sync/seismic-logo-color.png","tags":[],"type":"upload","bytes":4337,"width":778,"format":"png","height":146,"context":{"custom":{"guid":"0fb836ebf4aefd1be54b4661ba6a61e8","caption":"seismic-logo-color","cld_wp_plugin":"1"}},"version":1660155565,"duration":null,"metadata":[],"public_id":"wordpress-sync/seismic-logo-color","created_at":"2022-08-10T18:19:25Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1660155565/wordpress-sync/seismic-logo-color.png","original_url":"http://res.cloudinary.com/snyk/image/upload/v1660155565/wordpress-sync/seismic-logo-color.png","resource_type":"image","raw_transformation":"","original_secure_url":"https://res.cloudinary.com/snyk/image/upload/v1660155565/wordpress-sync/seismic-logo-color.png"}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-seismic-dark-mode.svg","tags":[],"type":"upload","bytes":8022,"width":257,"format":"svg","height":48,"version":1741964478,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-seismic-dark-mode","created_at":"2025-03-14T15:01:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-seismic-dark-mode.svg","resource_type":"image"}],"companyUrl":"https://seismic.com/","industry":["tech"],"region":"americas","size":"commercial","isCustomer":true,"isPartner":false}}}},"customImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770031219/customer-testimonial-seismic_1_lqzn5f.png","tags":[],"type":"upload","bytes":175973,"width":1136,"format":"png","height":734,"version":1770031219,"duration":null,"metadata":{},"public_id":"customer-testimonial-seismic_1_lqzn5f","created_at":"2026-02-02T11:20:19Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770031219/customer-testimonial-seismic_1_lqzn5f.png","resource_type":"image"}],"youtubeId":"BZwtNcCBqcY"}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4LtCMooVHfum4nklRVZiZ2","type":"Entry","createdAt":"2025-03-31T11:12:59.736Z","updatedAt":"2026-04-14T15:38:41.246Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":72,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentTab"}},"locale":"en-US"},"fields":{"internalName":"Komatsu - TabbedContent -tab","label":"Komatsu","tabContent":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"50IKV5qynILKGBvQi8eWdI","type":"Entry","createdAt":"2025-03-31T11:12:59.884Z","updatedAt":"2026-04-14T15:38:41.266Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":79,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentQuote"}},"locale":"en-US"},"fields":{"internalName":"Quote: Eric Cheng, Komatsu","quote":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"“Compared to our previous tooling, Snyk’s scanning is 2x faster and much more integrated to their tooling and processes.”","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"source":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4R47OHesdXQIA2auelEy1p","type":"Entry","createdAt":"2022-11-11T20:03:39.043Z","updatedAt":"2026-02-03T12:37:47.679Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":17,"revision":8,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentPerson"}},"locale":"en-US"},"fields":{"internalName":"Eric Cheng","fullName":"Eric Cheng","slug":"eric-cheng","firstName":"Eric","lastName":"Cheng","title":"Digital Solutions Architect","company":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3EWFI7F8R4BNPcDYGDGT1r9","type":"Entry","createdAt":"2022-11-03T11:25:05.912Z","updatedAt":"2026-04-14T15:38:41.294Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":87,"revision":20,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Komatsu","logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964453/website-customer-logos/logo-komatsu-dark-mode.svg","tags":[],"type":"upload","bytes":4560,"width":270,"format":"svg","height":48,"version":1741964453,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-komatsu-dark-mode","created_at":"2025-03-14T15:00:53Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964453/website-customer-logos/logo-komatsu-dark-mode.svg","resource_type":"image"}],"logoHorizontal":[{"width":1200,"format":"png","height":600,"public_id":"wordpress-sync/komatsu-logo","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1530707820/wordpress-sync/komatsu-logo.png","resource_type":"image","raw_transformation":""}],"location":"Australia","region":"asia-pacific-japan","size":"enterprise","description":{"data":{},"content":[{"data":{},"content":[{"data":{"uri":"https://www.komatsu.com.au/"},"content":[{"data":{},"marks":[],"value":"Komatsu Australia","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":" is an industry-leading distributor of equipment, technologies, and services for the construction, forklift, mining, industrial, and forestry markets.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"isCustomer":true,"isPartner":false}}}},"url":"/case-studies/komatsu/","linkLabel":"Read Komatsu's case study","customImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770031219/customer-testimonial-komatsu_1_a0gi6o.png","tags":[],"type":"upload","bytes":100497,"width":1136,"format":"png","height":734,"version":1770031219,"duration":null,"metadata":{},"public_id":"customer-testimonial-komatsu_1_a0gi6o","created_at":"2026-02-02T11:20:19Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770031219/customer-testimonial-komatsu_1_a0gi6o.png","resource_type":"image"}]}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4uRP4O36pUR39FLYxl0UL8","type":"Entry","createdAt":"2025-05-28T11:27:28.208Z","updatedAt":"2026-04-14T15:38:41.425Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":23,"revision":6,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentTab"}},"locale":"en-US"},"fields":{"internalName":"Skechers - TabbedContent - Tab","label":"Skechers","tabContent":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1woDkRBakSPPE6ZXu5djh7","type":"Entry","createdAt":"2025-05-28T11:27:26.075Z","updatedAt":"2026-04-14T15:38:41.444Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":33,"revision":6,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentQuote"}},"locale":"en-US"},"fields":{"internalName":"Quote: Ramon Borunda, Skechers USA","quote":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"“To innovate securely with AI, companies need to adopt AI thoughtfully and delegate tasks that AI can do best. And I believe Snyk will support that by delivering industry-leading AI models and keeping them on the bleeding edge of security innovation.”","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"source":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1s4u1ckkgP9j5tOPxl5Sx2","type":"Entry","createdAt":"2025-05-28T11:27:25.976Z","updatedAt":"2026-02-03T12:37:47.923Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":10,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentPerson"}},"locale":"en-US"},"fields":{"internalName":"Ramon Borunda","fullName":"Ramon Borunda","slug":"ramon-borunda","firstName":"Ramon","lastName":"Borunda","title":"Sr. Cloud Platform Engineer","company":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6TtmJDBiHNLnsCuYh2Utvy","type":"Entry","createdAt":"2025-03-12T21:08:22.244Z","updatedAt":"2026-02-03T12:37:47.943Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":3,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Skechers, USA","isCustomer":false,"isPartner":false}}}},"customImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-skechers_1_r80lml.png","tags":[],"type":"upload","bytes":131725,"width":1136,"format":"png","height":734,"version":1770031218,"duration":null,"metadata":{},"public_id":"customer-testimonial-skechers_1_r80lml","created_at":"2026-02-02T11:20:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770031218/customer-testimonial-skechers_1_r80lml.png","resource_type":"image"}]}}}}]}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2pdznZTTXff5FqknDSV1Za","type":"Entry","createdAt":"2025-09-08T13:10:14.730Z","updatedAt":"2026-06-23T09:29:53.592Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":39,"revision":7,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeLogoParade"}},"locale":"en-US"},"fields":{"internalName":"Homepage logo parade","headline":"Trusted by the world’s most innovative companies. ","logos":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3SMxVisd7uTiWR2zx7FG4M","type":"Entry","createdAt":"2022-11-04T15:42:58.861Z","updatedAt":"2026-07-21T14:48:39.280Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":66,"revision":58,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Twilio","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1674598632/customer-logos/logo-twilio.svg","tags":[],"type":"upload","bytes":8160,"width":160,"format":"svg","height":48,"version":1674598632,"duration":null,"metadata":[],"public_id":"customer-logos/logo-twilio","created_at":"2023-01-24T22:17:12Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1674598632/customer-logos/logo-twilio.svg","resource_type":"image","raw_transformation":""}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964481/website-customer-logos/logo-twilio-dark-mode.svg","tags":[],"type":"upload","bytes":8160,"width":160,"format":"svg","height":48,"version":1741964481,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-twilio-dark-mode","created_at":"2025-03-14T15:01:21Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964481/website-customer-logos/logo-twilio-dark-mode.svg","resource_type":"image"}],"isCustomer":false,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2UZLkui2iuUW3dhwYnZ08o","type":"Entry","createdAt":"2026-02-03T12:37:46.702Z","updatedAt":"2026-02-03T12:37:46.702Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":4,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Yalo","logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770046668/logo-yalo-darkmode_uksrvt.svg","tags":[],"type":"upload","bytes":2581,"width":96,"format":"svg","height":48,"version":1770046668,"duration":null,"metadata":{},"public_id":"logo-yalo-darkmode_uksrvt","created_at":"2026-02-02T15:37:48Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-yalo-darkmode_uksrvt.svg","resource_type":"image"}],"isCustomer":true,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2ynWEzN4ACl3Td0WRwZhgw","type":"Entry","createdAt":"2022-12-28T17:33:30.247Z","updatedAt":"2026-02-03T12:37:46.728Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":11,"revision":6,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Snowflake","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1702566793/website-customer-logos/logo-snowflake.svg","tags":[],"type":"upload","bytes":16873,"width":156,"format":"svg","height":48,"version":1702566793,"duration":null,"metadata":[],"public_id":"website-customer-logos/logo-snowflake","created_at":"2023-12-14T15:13:13Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1702566793/website-customer-logos/logo-snowflake.svg","resource_type":"image"}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964479/website-customer-logos/logo-snowflake-dark-mode.svg","tags":[],"type":"upload","bytes":16874,"width":156,"format":"svg","height":48,"version":1741964479,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-snowflake-dark-mode","created_at":"2025-03-14T15:01:19Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964479/website-customer-logos/logo-snowflake-dark-mode.svg","resource_type":"image"}],"isCustomer":false,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6EWJM9jen4C3bZafdh8Edh","type":"Entry","createdAt":"2024-04-15T14:56:36.231Z","updatedAt":"2026-07-21T14:48:39.340Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":20,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Jaguar Land Rover","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-jaguar-land-rover-corporate.svg","tags":[],"type":"upload","bytes":2411,"width":55,"format":"svg","height":48,"version":1713192738,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-jaguar-land-rover-corporate","created_at":"2024-04-15T14:52:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-jaguar-land-rover-corporate.svg","resource_type":"image"}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964451/website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode.svg","tags":[],"type":"upload","bytes":2413,"width":55,"format":"svg","height":48,"version":1741964451,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode","created_at":"2025-03-14T15:00:51Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964451/website-customer-logos/logo-jaguar-land-rover-corporate-dark-mode.svg","resource_type":"image"}],"companyUrl":"https://www.jaguarlandrover.com/","isCustomer":true,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6QL80JNKdMhozsdvggXvQm","type":"Entry","createdAt":"2025-10-21T19:13:41.441Z","updatedAt":"2026-02-03T12:37:46.764Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":5,"revision":2,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"LabelBox","logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770046668/logo-labelbox-darkmode_o1nzse.svg","tags":[],"type":"upload","bytes":4818,"width":208,"format":"svg","height":48,"version":1770046668,"duration":null,"metadata":{},"public_id":"logo-labelbox-darkmode_o1nzse","created_at":"2026-02-02T15:37:48Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-labelbox-darkmode_o1nzse.svg","resource_type":"image"}],"isCustomer":true,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1Tfn39AHW4ZqrJWe9TYhPV","type":"Entry","createdAt":"2022-11-04T15:44:44.580Z","updatedAt":"2026-07-09T18:53:01.472Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":60,"revision":56,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Manulife","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg","tags":[],"type":"upload","bytes":7034,"width":116,"format":"svg","height":22,"context":{"custom":{"guid":"8bd6851fcaf598ad3717a5c76e798e8e","caption":"Manulife_logo"}},"version":1646597794,"duration":null,"metadata":[],"public_id":"wordpress-sync/Manulife_logo","created_at":"2022-03-06T20:16:34Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg","original_url":"http://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg","resource_type":"image","raw_transformation":"","original_secure_url":"https://res.cloudinary.com/snyk/image/upload/v1646597794/wordpress-sync/Manulife_logo.svg"}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964473/website-customer-logos/logo-manulife-dark-mode.svg","tags":[],"type":"upload","bytes":3193,"width":253,"format":"svg","height":48,"version":1741964473,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-manulife-dark-mode","created_at":"2025-03-14T15:01:13Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964473/website-customer-logos/logo-manulife-dark-mode.svg","resource_type":"image"}],"isCustomer":false,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1rPL5pxeloTM4Aj0FIjMD5","type":"Entry","createdAt":"2023-06-13T17:50:46.088Z","updatedAt":"2026-07-21T14:48:39.386Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":16,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Spotify","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1685113188/logo-spotify.svg","tags":[],"type":"upload","bytes":4500,"width":559,"format":"svg","height":168,"version":1685113188,"duration":null,"metadata":[],"public_id":"logo-spotify","created_at":"2023-05-26T14:59:48Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1685113188/logo-spotify.svg","resource_type":"image","raw_transformation":""}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-spotify-dark-mode.svg","tags":[],"type":"upload","bytes":6516,"width":160,"format":"svg","height":48,"version":1741964478,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-spotify-dark-mode","created_at":"2025-03-14T15:01:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964478/website-customer-logos/logo-spotify-dark-mode.svg","resource_type":"image"}],"isCustomer":false,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"385PyUftDHrwd5AIwVo2KE","type":"Entry","createdAt":"2024-04-15T14:53:22.733Z","updatedAt":"2026-07-21T14:48:39.326Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":16,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Kroger","logoHorizontal":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-kroger.svg","tags":[],"type":"upload","bytes":5550,"width":84,"format":"svg","height":48,"version":1713192738,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-kroger","created_at":"2024-04-15T14:52:18Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1713192738/website-customer-logos/logo-kroger.svg","resource_type":"image"}],"logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1741964452/website-customer-logos/logo-kroger-dark-mode.svg","tags":[],"type":"upload","bytes":5545,"width":84,"format":"svg","height":48,"version":1741964452,"duration":null,"metadata":{},"public_id":"website-customer-logos/logo-kroger-dark-mode","created_at":"2025-03-14T15:00:52Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1741964452/website-customer-logos/logo-kroger-dark-mode.svg","resource_type":"image"}],"companyUrl":"https://www.kroger.com/","isCustomer":true,"isPartner":false}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"7K0ctmkIYWsbOEOHQ3BGe6","type":"Entry","createdAt":"2026-02-03T12:37:47.128Z","updatedAt":"2026-07-21T14:48:39.264Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":12,"revision":9,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCompany"}},"locale":"en-US"},"fields":{"companyName":"Wex","logoHorizontalDark":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770046668/logo-wex-darkmode_ta4qxf.svg","tags":[],"type":"upload","bytes":1930,"width":118,"format":"svg","height":48,"version":1770046668,"duration":null,"metadata":{},"public_id":"logo-wex-darkmode_ta4qxf","created_at":"2026-02-02T15:37:48Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770046668/logo-wex-darkmode_ta4qxf.svg","resource_type":"image"}],"isCustomer":true,"isPartner":false}}],"logoType":"logoHorizontal","isLogoCluster":false,"isScroll":true,"includeRecognitionBadges":true}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"A7hQk5VigpF1YdIUwjLPU","type":"Entry","createdAt":"2025-03-31T11:13:01.044Z","updatedAt":"2026-06-23T09:29:53.625Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":82,"revision":12,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTextMedia"}},"locale":"en-US"},"fields":{"internalName":"\"Security built for how AI teams work\" - text-media","headline":"Security built for how AI teams work","description":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"The AI Security Fabric is woven into the tools your teams already use — IDEs, CI/CD pipelines, and AI coding assistants, including Claude Code, Cursor, and Codex.","marks":[],"data":{}}]}]},"mediaSlot":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2LppQbuoSNCrcKNBfDinYN","type":"Entry","createdAt":"2026-02-03T12:37:47.997Z","updatedAt":"2026-02-03T12:37:47.997Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":3,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCloudinaryAsset"}},"locale":"en-US"},"fields":{"internalName":"illustration-integrations-home - Homepage","asset":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1769795551/illustration-integrations-home_cgbffw.svg","tags":[],"type":"upload","bytes":155693,"width":758,"format":"svg","height":531,"version":1769795551,"duration":null,"metadata":{},"public_id":"illustration-integrations-home_cgbffw","created_at":"2026-01-30T17:52:31Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1769795551/illustration-integrations-home_cgbffw.svg","resource_type":"image"}],"maxWidth":"full"}},"reverse":true,"actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4VwXtyYXCOu31OH0O8pfHE","type":"Entry","createdAt":"2025-03-31T11:12:59.871Z","updatedAt":"2026-04-14T15:38:41.499Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":70,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"View all integrations\" - Primary","label":"View all integrations","url":"/integrations/","appearance":{"button":{"variant":"primary"}}}}],"startTime":0,"appearance":{"textMedia":{}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4M4A54EOA7YYfLg1Oa6KnI","type":"Entry","createdAt":"2025-05-05T19:45:47.335Z","updatedAt":"2026-02-03T15:12:17.507Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":36,"revision":5,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismEditorialGrid"}},"locale":"en-US"},"fields":{"internalName":"\"Explore Resources\" - Homepage resource library featured resources","sectionIntro":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"378c8CBuz2hTWBpL5fBY0f","type":"Entry","createdAt":"2025-03-31T11:12:58.929Z","updatedAt":"2026-04-14T15:38:41.514Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":77,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"\"Explore Resources\" - section intro- homepage featured resources","headline":"Explore resources","actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"7ti7uPeKLqbsmgcWJ7IUSW","type":"Entry","createdAt":"2025-03-31T11:13:00.945Z","updatedAt":"2026-04-14T15:38:41.529Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":70,"revision":11,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"View all here\" - Primary","label":"View all here","url":"/resource-library/","appearance":{"button":{"variant":"primary"}}}}],"includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"items":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6vxWyUObd32IGPivn16nRn","type":"Entry","createdAt":"2026-02-03T12:37:48.075Z","updatedAt":"2026-04-14T15:38:41.544Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":14,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeBgImageCard"}},"locale":"en-US"},"fields":{"backgroundImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770046006/CISO-GUIDE_kffrnm.png","tags":[],"type":"upload","bytes":617969,"width":1200,"format":"png","height":628,"version":1770046006,"duration":null,"metadata":{},"public_id":"CISO-GUIDE_kffrnm","created_at":"2026-02-02T15:26:46Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770046006/CISO-GUIDE_kffrnm.png","resource_type":"image"}],"headline":"CISO’s Guide to Evolving AppSec in the AI Era: From Reactive Fixing to Proactive Risk Reduction","miniHeader":"Guide","linkLabel":"Download Now","url":"/lp/cisos-guide-appsec-ai-era/"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6at5odZoJP234mMdHB844Z","type":"Entry","createdAt":"2026-02-03T15:12:17.544Z","updatedAt":"2026-04-14T15:38:41.557Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":14,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeBgImageCard"}},"locale":"en-US"},"fields":{"backgroundImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770131197/2026-ai-report_f65o1i.png","tags":[],"type":"upload","bytes":282612,"width":1200,"format":"png","height":628,"version":1770131197,"duration":null,"metadata":{},"public_id":"2026-ai-report_f65o1i","created_at":"2026-02-03T15:06:37Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770131197/2026-ai-report_f65o1i.png","resource_type":"image"}],"headline":"2026 State of Agentic AI Adoption","miniHeader":"Report","linkLabel":"Download Now","url":"/lp/state-of-agentic-ai-adoption/"}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"74ANSX70T9j4xLlG0iimFy","type":"Entry","createdAt":"2026-02-03T12:37:48.123Z","updatedAt":"2026-04-14T15:38:41.573Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":14,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeBgImageCard"}},"locale":"en-US"},"fields":{"backgroundImage":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1770046007/total-impact-of-snyk_ezjnhm.png","tags":[],"type":"upload","bytes":349461,"width":1200,"format":"png","height":628,"version":1770046007,"duration":null,"metadata":{},"public_id":"total-impact-of-snyk_ezjnhm","created_at":"2026-02-02T15:26:47Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1770046007/total-impact-of-snyk_ezjnhm.png","resource_type":"image"}],"headline":"The Total Economic Impact™ of The Snyk AI Trust Platform | Forrester Study","miniHeader":"Forrester Study","linkLabel":"Download now","url":"/lp/total-economic-impact-snyk/"}}]}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"5KpIhl6x1MSjveUyHIXyRq","type":"Entry","createdAt":"2026-07-31T16:14:34.541Z","updatedAt":"2026-07-31T16:14:34.541Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":9,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTextMedia"}},"locale":"en-US"},"fields":{"internalName":"Snyk Security Track @ AI Engineer World’s Fair","miniHeader":"Snyk Security Track","headline":"AI Engineer World’s Fair","description":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Snyk led the first-ever security track at this AI engineering event, putting AI and agentic development security front and center alongside the industry leaders reshaping how software gets built. Watch all recorded tracks now. ","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"mediaSlot":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"22JSa4vqRWIEb9K4aSRMZw","type":"Entry","createdAt":"2026-07-31T16:14:34.561Z","updatedAt":"2026-07-31T16:14:34.561Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":4,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"contentCloudinaryAsset"}},"locale":"en-US"},"fields":{"internalName":"Snyk @ AI Engineer","asset":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg","tags":[],"type":"upload","bytes":162677,"width":1280,"format":"jpg","height":720,"version":1785499299,"duration":null,"metadata":{},"public_id":"Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi","created_at":"2026-07-31T12:01:39Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1785499299/Snyk_Security_Track_AI_Engineer_-_playlist_thumbnail_att1mi.jpg","resource_type":"image"}],"maxWidth":"full","title":"Snyk @ AI Engineer"}},"reverse":false,"actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"7foAZlbBHvy4jWI5nrttcP","type":"Entry","createdAt":"2026-07-31T16:14:34.742Z","updatedAt":"2026-07-31T16:14:34.742Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":3,"revision":1,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"Watch now","label":"Watch now","url":"/lp/snyk-ai-engineer-worlds-fair/","appearance":{"button":{}},"copyToClipboard":false}}],"triggerRiveInputOnHover":false,"startTime":0,"appearance":{"textMedia":{}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"x6Mkili9Hl1IAQZPjD5qD","type":"Entry","createdAt":"2025-03-31T11:13:01.242Z","updatedAt":"2026-02-03T12:37:48.244Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":14,"revision":3,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"organismTextGridCta"}},"locale":"en-US"},"fields":{"internalName":"\"Snyk reduces app risk and unleashes...\" - Text Grid CTA","sectionIntro":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"3YNkk3tHHYnRIMIYe3XQqd","type":"Entry","createdAt":"2025-03-31T11:12:59.519Z","updatedAt":"2026-06-23T09:23:39.218Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":82,"revision":14,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"\"Can you trust what you’re shipping?\" - section intro","headline":"Can you trust what you’re shipping?","description":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"Every organization building with AI needs to answer this one question. Get started with Snyk in minutes.","marks":[],"data":{}}]}]},"includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"primaryCta":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1cVLcf76tmls9rPcR8WuCy","type":"Entry","createdAt":"2025-03-31T11:12:57.979Z","updatedAt":"2026-05-06T14:23:27.280Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":82,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTitleText"}},"locale":"en-US"},"fields":{"internalName":"\"Snyk reduces app risk and unleashes ....\" - Text Grid CTA primary cta","headline":"Try Snyk for free","description":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Create your free Snyk account to start securing AI-generated code in minutes. ","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"No credit card required.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"actions":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4k8Q42vldzL6qr1Zy9gsqw","type":"Entry","createdAt":"2025-03-31T11:12:59.701Z","updatedAt":"2026-05-06T14:23:27.384Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":79,"revision":13,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"Get started\" - Primary","label":"Get Started","url":"https://app.snyk.io/login","appearance":{"button":{"variant":"primary"}}}}],"includeFollowUs":false,"hideSocialShare":false,"appearance":{"titleText":{}}}},"gridItems":[{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"6Uds2F19HrG9H0gqQ8HWyC","type":"Entry","createdAt":"2025-03-31T11:13:00.292Z","updatedAt":"2026-06-23T09:23:39.239Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":98,"revision":14,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTextGridItem"}},"locale":"en-US"},"fields":{"internalName":"\"Book a demo\" - text-grid-item","headline":"See Snyk in action","description":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"See why the world's largest engineering organizations trust Snyk as their independent AI security validator.","marks":[],"data":{}}]}]},"action":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"2DUBjt5AOwhdlVoxWX1oYH","type":"Entry","createdAt":"2022-09-13T20:57:38.467Z","updatedAt":"2026-05-06T14:23:26.351Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":578,"revision":169,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"Book a live demo\" - Tertiary","label":"Book a live demo","url":"/schedule-a-demo/","appearance":{"button":{"variant":"tertiary"}}}},"appearance":{"textGridItem":{}}}},{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"4BA4QT6E1oFy5zu0K6MUbS","type":"Entry","createdAt":"2025-03-31T11:12:59.633Z","updatedAt":"2026-06-23T09:23:39.254Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":87,"revision":14,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"moleculeTextGridItem"}},"locale":"en-US"},"fields":{"internalName":" \"Contact us\" - text-grid-item","headline":"Get in touch","description":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"Questions about the platform or where to start? We'd love to talk through your AI security program.","marks":[],"data":{}}]}]},"action":{"metadata":{"tags":[],"concepts":[]},"sys":{"space":{"sys":{"type":"Link","linkType":"Space","id":"oyrbri43adzz"}},"id":"1tvD0isgmh956ckoVjVRzm","type":"Entry","createdAt":"2022-10-22T00:17:14.575Z","updatedAt":"2026-05-06T14:23:27.526Z","environment":{"sys":{"id":"master","type":"Link","linkType":"Environment"}},"publishedVersion":92,"revision":20,"contentType":{"sys":{"type":"Link","linkType":"ContentType","id":"atomButton"}},"locale":"en-US"},"fields":{"internalName":"\"Contact us\" - tertiary","label":"Contact us","url":"/contact-us/","appearance":{"button":{"variant":"tertiary"}}}},"appearance":{"textGridItem":{}}}}],"appearance":{"textGrid":{}}}}]}},"menu":{"__typename":"NavigationPrimary","customLogo":"wordmark","customLogoLink":null,"actions":{"__typename":"NavigationPrimaryActionsCollection","items":[{"sys":{"id":"jZfGXRe3L9UtIHd0zy87C","__typename":"Sys"},"__typename":"AtomButton","label":"Sign up","url":"https://app.snyk.io/signup","appearance":{"button":{"variant":"secondary"}}},{"sys":{"id":"3RA7EHvXO0h0D54sNFwXMD","__typename":"Sys"},"__typename":"AtomButton","label":"Book a live demo","url":"/schedule-a-demo/","appearance":{"button":{"variant":"primary"}}}]},"primaryNavItems":{"__typename":"NavigationPrimaryPrimaryNavItemsCollection","items":[{"sys":{"id":"7cN6K41sLBBOklgNMBT1gG","__typename":"Sys"},"__typename":"NavigationPrimaryNavItem","dropdownMenuCategories":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuCategoriesCollection"},"label":"Platform","url":null,"newFeatureTheme":null,"dropdownMenuColumns":{"__typename":"NavigationPrimaryNavItemDropdownMenuColumnsCollection","items":[{"sys":{"id":"73egINa4euvcWSZJiyl1Lj","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":null,"rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"6YsFabslTwd2nkyghgIhiO","__typename":"Sys"},"__typename":"NavigationPanelFeatureCard","eyebrow":"Platform","title":"Snyk AI Security Platform","icon":{"navItem":{"icon":"shield-ai"}},"ctaLabel":"Explore","ctaUrl":"/platform","ctaButtons":{"__typename":"NavigationPanelFeatureCardCtaButtonsCollection","items":[{"sys":{"id":"3cdMDGI4PN00nVjWp7QB1m","__typename":"Sys"},"__typename":"AtomButton","label":"Integrations","url":"/integrations/"},{"sys":{"id":"7b90OjdebKraekJIvkFiqb","__typename":"Sys"},"__typename":"AtomButton","label":"DeepCode AI","url":"/platform/deepcode-ai/"}]}}]}},{"sys":{"id":"18X3jkf60S2ksYIYckZ8AM","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"purple","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"2aH1MyfxX6Q8i4FZhSnNEM","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Agent Security","spotlightFirstItem":true,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"3tXG9rcVR2FD71EbSSr94U","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Evo Overview","description":"Security and governance for AI Agents","url":"/evo","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"info-scan"}}},{"sys":{"id":"2kDgjujWo3Bg8nRLTWAoib","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Evo Agentic Development Security","description":"Secure software in the age of AI agents","url":"/evo/agentic-development-security","badgeLabel":"New","badgeVariant":"evo","appearance":{"navItem":{"icon":"blocks"}}},{"sys":{"id":"1CC6VFwUtGUcmTON6hux6n","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Evo AI-SPM","description":"Makes AI visible, governable and enforceable","url":"/evo/aispm","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"brain"}}},{"sys":{"id":"1xfsg4vHiRruhsjE541pam","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Evo Continuous Offensive Security","description":"Find what attackers find, before they find it","url":"/evo/continuous-offensive-security","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"insert-chart"}}}]}}]}},{"sys":{"id":"lT82wtnLjPRA0xXDrJQNf","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"magenta","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"1wZdcRnifXs8AB6dzDLPkB","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Security Engines","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"5t9yVDlolAdLWQJnuAbIAw","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Code","description":"Secure your code as it's written","url":"/product/snyk-code/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-code"}}},{"sys":{"id":"4Ms7C8emvCYexxJU7U0nsi","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Open Source","description":"Avoid vulnerable dependencies","url":"/product/open-source-security-management/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-oss"}}},{"sys":{"id":"6SU8Lvyw0X1xpKZfcUCqM5","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Container","description":"Keep your base images secure","url":"/product/container-vulnerability-management/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-container"}}},{"sys":{"id":"22f9W0yyuUjHyRU3QuwuQ2","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk IaC","description":"Fix IaC misconfigurations in-code","url":"/product/infrastructure-as-code-security/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-iac"}}},{"sys":{"id":"3b5gmbdziAsJtA7iCghVef","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk API \u0026 Web (DAST)","description":"Find and test APIs and web apps","url":"/product/dast-api-web/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"api-web"}}}]}}]}},{"sys":{"id":"2rcyC9bhEAbD9mP4CDW4mX","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"teal","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"6RJMKoqj2Y7PbzZ74iI8VJ","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Solutions","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"54ktlEruLFYoojGrjRYtiK","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Secure AI-Generated Code","description":"AI writes, Snyk secures","url":"/solutions/secure-ai-generated-code/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"brain"}}},{"sys":{"id":"S2Mg7oKAddwlwmlrrUjjc","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Application Security","description":"Build secure, stay secure","url":"/solutions/application-security/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"shield"}}},{"sys":{"id":"3CnU1uxYJRpsUXF35QBbmh","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Software Supply Chain Security","description":"Mitigate supply chain risk","url":"/solutions/software-supply-chain-security/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"supply-chain"}}},{"sys":{"id":"Gb6oocCkD1QR3LqWUkw2e","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Zero-Day Vulns","description":"Fix the first day with Snyk ","url":"/solutions/zero-day-vulnerability-security/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"info-warning"}}},{"sys":{"id":"4cwsG2ferSPbLJQZq4dWoz","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Risk based prioritization","description":"Focus on what matters","url":"/solutions/risk-based-prioritization/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"ci-cd"}}}]}}]}}]}},{"sys":{"id":"521D4K8NyGYGMQhDIXVRwU","__typename":"Sys"},"__typename":"NavigationPrimaryNavItem","dropdownMenuCategories":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuCategoriesCollection"},"label":"Resources","url":null,"newFeatureTheme":null,"dropdownMenuColumns":{"__typename":"NavigationPrimaryNavItemDropdownMenuColumnsCollection","items":[{"sys":{"id":"4cX6WUrzF8oluJcjZx2lQl","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"purple","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"jdd6u1ZykuNc2RkvykTcl","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Our resources","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"6Pv6adGOWnt3bXZm5rBvc1","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Resource Library","description":"Browse our extensive database","url":"/resource-library/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"library"}}},{"sys":{"id":"3z2WpGNUBbqHP9ZCtPK08s","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Customer Resources","description":"The one stop shop for customers","url":"/customer-resources/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"booklet"}}},{"sys":{"id":"7FtyYdfTqa8tYosB0GdLcX","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk in 30 Resource Hub","description":"Live and on-demand sessions","url":"/lp/snyk-in-30-series/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"video-bubble"}}},{"sys":{"id":"IES5DRO4RDNIi5lEZfinx","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Code Checker","description":"Write better code for free","url":"/code-checker/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"info-scan"}}},{"sys":{"id":"3EYFR9Df4M8uOkmAy7wT9Z","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Security Intelligence","description":"Comprehensive vulnerability data","url":"/platform/security-intelligence/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"light-bulb"}}}]}},{"sys":{"id":"6U4jpgDbe07kgJDBIeeIN7","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Media","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"6cqTs6A3sL2R3T8K3RyrC5","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Blog","description":null,"url":"/blog/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"blog"}}},{"sys":{"id":"1wOYHJAhDmoerb84GKmnEu","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk's Podcasts","description":null,"url":"/podcasts/the-secure-developer/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"podcast"}}},{"sys":{"id":"5wp8QrsbT2g8aVJLvxtRbl","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk’s YouTube","description":null,"url":"https://www.youtube.com/snyksec","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"youtube"}}},{"sys":{"id":"7xpWlNmwar1SJjhMTucFjl","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"AI Glossary","description":null,"url":"/glossaries/ai/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"glossary"}}}]}}]}},{"sys":{"id":"7G5qVKIZW5eLvoRsYp7dRo","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"magenta","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"3RUwXtv2FcOONPGhCI9cp6","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Knowledge \u0026 Docs","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"6Pua3CMFGjrBPqOij2MG9P","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Labs","description":"Research on AI, vulnerabilities, and DevSecOps","url":"https://labs.snyk.io/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"labs"}}},{"sys":{"id":"3SOxYo2Xt1QCUcPR8zCwkY","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Learn","description":"Security education from Snyk","url":"https://learn.snyk.io","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-learn"}}},{"sys":{"id":"1fMgqMoKw7rdjy8GsjmrRp","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk User Docs","description":"Get started with Snyk","url":"https://docs.snyk.io/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-docs"}}},{"sys":{"id":"7BRsZmfn0eHK2tWpMUAB2e","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Support","description":"How can we help?","url":"https://support.snyk.io/s/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-support"}}},{"sys":{"id":"5zGZbFYKxxb9AvEuzemXJA","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Vuln Database","description":"Find new vulnerabilities","url":"https://security.snyk.io/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"vuln-db"}}},{"sys":{"id":"1HonjOBA0UVDWYLhtOGNna","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Updates","description":"Stay in the loop","url":"https://updates.snyk.io/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"updates"}}},{"sys":{"id":"iAn9tnU9TuI8JcBrIoWkf","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Partner Solutions Directory","description":"Explore Snyk Partner Integrations","url":"https://partners.snyk.io/English/solutions/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"partners"}}},{"sys":{"id":"6TCGTLOZ9Ym7bIpLO4SwWu","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"AI Security Engineers","description":"Join the community to help build secure AI","url":"https://www.aiseceng.io/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"ai-sec-eng-icon"}}}]}}]}},{"sys":{"id":"3fB2QXSjFGAWneUjwffd7b","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"teal","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"Cfwe6sH7rXeSF6IdtIGep","__typename":"Sys"},"__typename":"NavigationPanelPromoCard","eyebrow":"Conference","title":"Join Snyk at Black Hat USA","description":null,"ctaLabel":"Book a meeting","ctaUrl":"https://snyk.io/events/black-hat/","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1782313412/black-hat-nav-background_pyg0qi.png","tags":[],"type":"upload","bytes":151991,"width":320,"format":"png","height":320,"version":1782313412,"duration":null,"metadata":{},"public_id":"black-hat-nav-background_pyg0qi","created_at":"2026-06-24T15:03:32Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1782313412/black-hat-nav-background_pyg0qi.png","resource_type":"image"}]},{"sys":{"id":"Wz6VF0Ms5fA76S7kDcm4Q","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Our community \u0026 games","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"3QYD0R6IMlv720M7rudooL","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Events \u0026 Webinars","description":null,"url":"/events/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"events"}}},{"sys":{"id":"26oqv8XWpf2MsCzTFNhLQe","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Ambassadors","description":null,"url":"/snyk-ambassadors/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"ambassadors"}}},{"sys":{"id":"7JCESiPPC7b2j0TDwEdLSC","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"VulnVortex","description":null,"url":"https://www.vulnvortex.com/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"vulnvortex"}}},{"sys":{"id":"3bxBgXYnooo0lCJZpd6Nf7","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"AI Security University Program","description":null,"url":"/ai-security/university-program/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"snyk-learn"}}}]}}]}}]}},{"sys":{"id":"49EwoOnIAMpSmvWCM25Z7C","__typename":"Sys"},"__typename":"NavigationPrimaryNavItem","dropdownMenuCategories":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuCategoriesCollection"},"label":"Company","url":null,"newFeatureTheme":null,"dropdownMenuColumns":{"__typename":"NavigationPrimaryNavItemDropdownMenuColumnsCollection","items":[{"sys":{"id":"1EuHlyJtBHZugEtcgPgHDp","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":null,"rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"2b0RWKGO0qEdOAQ3BoBB1m","__typename":"Sys"},"__typename":"NavigationPanelPromoCard","eyebrow":"Newsletter","title":"Patched \u0026 Dispatched","description":"Your monthly roundup of Snyk content — the latest insights patched in, dispatched straight to your inbox. No fluff. Just the good stuff.","ctaLabel":"Subscribe to our newsletter","ctaUrl":"/newsletter/","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1781801287/newsletter-panel-promo-card-background_e9nm4d.jpg","tags":[],"type":"upload","bytes":29976,"width":320,"format":"jpg","height":320,"version":1781801287,"duration":null,"metadata":{},"public_id":"newsletter-panel-promo-card-background_e9nm4d","created_at":"2026-06-18T16:48:07Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1781801287/newsletter-panel-promo-card-background_e9nm4d.jpg","resource_type":"image"}]}]}},{"sys":{"id":"5rtqkvXNwSWhAhFlI0rFEp","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"magenta","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"7k5Qfnh6qJ95ke1AF9UZ8e","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Company","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"5kQhON3CZshNHAafdsXW4c","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Our Services","description":"Maximize your AppSec ROI","url":"/services/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"services"}}},{"sys":{"id":"1x3lNwnfxOi0gJ1BoAlC8d","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Our Customers","description":"We help customers save time and money","url":"/customers/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"customers"}}},{"sys":{"id":"3YKqJdPzwJ00B5JEeFfLQg","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Our Partners","description":"Bringing business class security with partners","url":"/partners/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"partners"}}},{"sys":{"id":"1GyK9PChHHOTdCi1LzOZFy","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Case Studies","description":"Check out our customer stories and stats","url":"/case-studies/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"briefcase"}}}]}}]}},{"sys":{"id":"1kNPb3WLky7doq5ACvPZc9","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":"teal","rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"3yH4BobqTomL05pwgg2b2I","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumnRow","titleText":null,"label":"Connect","spotlightFirstItem":false,"submenuLinks":{"__typename":"NavigationDropdownMenuColumnRowItemsCollection","items":[{"sys":{"id":"5HYpyEzsZFpiUHq1dbBeJn","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Newsroom","description":"See the latest press releases","url":"/news/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"newsroom"}}},{"sys":{"id":"77rmpXwyhm60gdfm2SW8fl","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Contact Us","description":"Get in touch with any feedback or questions","url":"/contact-us/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"contact"}}},{"sys":{"id":"7zj9cVbg5LJP4mHKarXJzW","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Careers","description":"Join Snyk today","url":"/careers/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"hand-wave"}}},{"sys":{"id":"5yZs7ISwyswaYYwSbf4Jd3","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Leadership","description":"Meet our leaders","url":"/about/leadership/","badgeLabel":null,"badgeVariant":null,"appearance":{"navItem":{"icon":"leadership"}}}]}}]}},{"sys":{"id":"3Vaa168Qq7pl3sZ9M3nahS","__typename":"Sys"},"__typename":"NavigationDropdownMenuColumn","iconBackgroundColor":null,"rows":{"__typename":"NavigationDropdownMenuColumnRowsCollection","items":[{"sys":{"id":"621fqeuqMRtU8PggYOqwH9","__typename":"Sys"},"__typename":"NavigationPanelPromoCard","eyebrow":"Press Release","title":"Snyk Launches Evo ADS","description":null,"ctaLabel":"Read more","ctaUrl":"/news/snyk-launches-evo-agentic-development-security/","image":[{"url":"http://res.cloudinary.com/snyk/image/upload/v1782130120/press-release-panel-promo-card-background_kkap4f.jpg","tags":[],"type":"upload","bytes":12513,"width":640,"format":"jpg","height":640,"version":1782130120,"duration":null,"metadata":{},"public_id":"press-release-panel-promo-card-background_kkap4f","created_at":"2026-06-22T12:08:40Z","secure_url":"https://res.cloudinary.com/snyk/image/upload/v1782130120/press-release-panel-promo-card-background_kkap4f.jpg","resource_type":"image"}]}]}}]}},{"sys":{"id":"29GAQG1PpVIivH7wJUoBBd","__typename":"Sys"},"__typename":"NavigationPrimaryNavItem","dropdownMenuCategories":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuCategoriesCollection"},"dropdownMenuColumns":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuColumnsCollection"},"label":"Pricing","url":"/plans/","newFeatureTheme":null},{"sys":{"id":"6lcFApUckHudzT3OXS3ONy","__typename":"Sys"},"__typename":"NavigationPrimaryNavItem","dropdownMenuCategories":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuCategoriesCollection"},"dropdownMenuColumns":{"items":[],"__typename":"NavigationPrimaryNavItemDropdownMenuColumnsCollection"},"label":"Evo","url":"/evo","newFeatureTheme":"evo"}]}},"footer":{"__typename":"NavigationFooter","boilerplate":null,"actions":{"items":[],"__typename":"NavigationFooterActionsCollection"},"copyright":{"json":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"© 2026 Snyk Limited\nRegistered in England and Wales","marks":[],"data":{}}]}]},"__typename":"NavigationFooterCopyright"},"form":null,"footerCta":{"json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Your ","nodeType":"text"},{"data":{},"marks":[],"value":"monthly","nodeType":"text"},{"data":{},"marks":[],"value":" roundup of Snyk content – the latest insights patched in, dispatched straight to your inbox. No fluff. Just the good stuff.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"__typename":"NavigationFooterFooterCta"},"sponsoredLogo":[],"sponsoredUrl":null,"footerCtaHeader":"Patched \u0026 Dispatched","footerCtaAction":{"_id":"MTpjcm46Y29udGVudGZ1bDo6OmNvbnRlbnQ6c3BhY2VzL295cmJyaTQzYWR6ei9lbnZpcm9ubWVudHMvbWFzdGVyL2VudHJpZXMvUUsxS2l5RVcxdWtncENiS1FkUEFQ","__typename":"AtomButton","url":"/newsletter","label":"Subscribe to our newsletter","appearance":{"button":{"variant":"primary"}}},"socials":{"__typename":"NavigationFooterSocialsCollection","items":[{"sys":{"id":"1hUkRpvsCJkQjIYW7h3PGj","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"twitter","url":"https://twitter.com/snyksec"},{"sys":{"id":"3s1NrW9fhAI49a1BRjNfuy","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"youtube","url":"https://www.youtube.com/channel/UCh4dJzctb0NhSibjU-e2P6w"},{"sys":{"id":"3rrBjirF30sNI9d7rMS1My","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"linkedin","url":"https://www.linkedin.com/company/snyk"},{"sys":{"id":"5ksshlk24qSF9DaMjjmlwJ","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"github","url":"https://github.com/snyk/"},{"sys":{"id":"1wiC2aaT7Oqqvu5whdqpbK","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"npm","url":"https://www.npmjs.com/package/snyk"},{"sys":{"id":"3oljfTMGDpHJLspeMOU9Ht","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"discord","url":"https://snyk.co/discordcommunity"}]},"legalLinks":{"__typename":"NavigationFooterCategory","internalName":"\"Legal Links\" - footer category","label":"Legal Links","itemsCollection":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"2lBVAwbzP6bA0s72eGkqVj","__typename":"Sys"},"__typename":"ContentNavigationItem","url":"/policies/terms-of-service/","label":"Legal terms"},{"sys":{"id":"4qfdIeuRXOwlTWtTkfjxyw","__typename":"Sys"},"__typename":"ContentNavigationItem","url":"/policies/privacy/","label":"Privacy Notice"},{"sys":{"id":"1FdFFwoO1Sg45Wzq2N4xog","__typename":"Sys"},"__typename":"ContentNavigationItem","url":"/policies/website-terms-of-use/","label":"Terms of use"},{"sys":{"id":"4a4qXx1obXR2RbKLgEq551","__typename":"Sys"},"__typename":"ContentNavigationItem","url":"https://preferences.snyk.io/dont_sell","label":"California residents: do not sell my information"}]}},"footerCategories":{"__typename":"NavigationFooterFooterCategoriesCollection","items":[{"sys":{"id":"7Csj2hR1466KwHY1rsW73P","__typename":"Sys"},"__typename":"NavigationFooterCategory","label":"Platform","footerNavItems":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"51stjtafic0wSSJHG3WwLY","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk AI Security Platform","url":"/platform/"},{"sys":{"id":"6t4q0qVDbp546R07oZz98N","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Evo","url":"/evo"},{"sys":{"id":"1MoUwyVilWVRZBKc4v2Gcd","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Integrations","url":"/integrations/"},{"sys":{"id":"7zAJdSaEj5KZKcq8tOV1kx","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"DeepCode AI","url":"/platform/deepcode-ai/"}]}},{"sys":{"id":"4Mwh13BWPs5oNvQbuOAri0","__typename":"Sys"},"__typename":"NavigationFooterCategory","label":"Our Resources","footerNavItems":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"6Pv6adGOWnt3bXZm5rBvc1","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Resource Library","url":"/resource-library/"},{"sys":{"id":"787yGW8SvzEz9s2g1sdDCL","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Blog","url":"/blog/"},{"sys":{"id":"zcBLXTrG6bZWvuQ6plWGI","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk’s Podcasts","url":"/podcasts/the-secure-developer/"},{"sys":{"id":"2B2vrh3Xrq57dtvgtmd4Fz","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"AI Glossary","url":"/glossaries/ai/"}]}},{"sys":{"id":"CrrSwe86c4HNCaPpF7qhi","__typename":"Sys"},"__typename":"NavigationFooterCategory","label":"Knowledge \u0026 Docs","footerNavItems":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"6Pua3CMFGjrBPqOij2MG9P","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Labs","url":"https://labs.snyk.io/"},{"sys":{"id":"3C9JZfwNvewpolsGGnRxtY","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Learn","url":"/platform/snyk-learn"},{"sys":{"id":"1rWTKptO0QnYnpsV8hOcCg","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk User Docs","url":"https://docs.snyk.io/"},{"sys":{"id":"7BRsZmfn0eHK2tWpMUAB2e","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Support","url":"https://support.snyk.io/s/"},{"sys":{"id":"3UEBa3EyLfBrORxC49oH6b","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Vuln Database","url":"https://security.snyk.io/"},{"sys":{"id":"1HonjOBA0UVDWYLhtOGNna","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Updates","url":"https://updates.snyk.io/"},{"sys":{"id":"4l8svK4Nr86NXtPaBbh6UN","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk Trust Center","url":"https://trust.snyk.io/home"}]}},{"sys":{"id":"1WdX4T9TD5yqFx9tjWH0WP","__typename":"Sys"},"__typename":"NavigationFooterCategory","label":"Company \u0026 Community","footerNavItems":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"YMgMwEvmOUu0Pa60qTwZm","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"About Snyk","url":"/about/"},{"sys":{"id":"77rmpXwyhm60gdfm2SW8fl","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Contact Us","url":"/contact-us/"},{"sys":{"id":"5hPrxjI87mM6yhBlxlWfbS","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Book A Demo","url":"/schedule-a-demo/"},{"sys":{"id":"7zj9cVbg5LJP4mHKarXJzW","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Careers","url":"/careers/"},{"sys":{"id":"3QYD0R6IMlv720M7rudooL","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Events \u0026 Webinars","url":"/events/"},{"sys":{"id":"26oqv8XWpf2MsCzTFNhLQe","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Ambassadors","url":"/snyk-ambassadors/"}]}},{"sys":{"id":"6FU34B5Lp1VklDZM7mLe0r","__typename":"Sys"},"__typename":"NavigationFooterCategory","label":"Why Snyk","footerNavItems":{"__typename":"NavigationFooterCategoryItemsCollection","items":[{"sys":{"id":"4Kiw02KxZv5UAkWxEeVWVJ","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs GitHub Advanced Security","url":"/comparison/github-vs-snyk/"},{"sys":{"id":"4hDqezO52rf0f5LbrQZQRS","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs Veracode","url":"/comparison/snyk-vs-veracode/"},{"sys":{"id":"9qhpUKBclDTpRB44EknDD","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs Checkmarx","url":"/comparison/snyk-vs-checkmarx/"},{"sys":{"id":"3hJrM2HyonWf3rtWA5UTHm","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs Black Duck","url":"/comparison/snyk-vs-blackduck/"},{"sys":{"id":"7pnX59KErs5qXj7rpjtzRr","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs Wiz","url":"/comparison/snyk-vs-wiz/"},{"sys":{"id":"3QhWrxOX33EwFZxxmQ3G72","__typename":"Sys"},"__typename":"ContentNavigationItem","label":"Snyk vs Aikido","url":"/comparison/snyk-vs-aikido/"}]}}]}},"locale":"en-US","isPreview":false},"__N_SSG":true},"page":"/","query":{},"buildId":"IOS3IUeSWw79umApuwe-6","isFallback":false,"isExperimentalCompile":false,"dynamicIds":[46089,48044,62238,68319,7033,52692,52774,52827,63912,24978,95794,46020,67629,56493],"gsp":true,"locale":"en-US","locales":["en-US","de","es","fr","jp","pt-BR"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>