<!DOCTYPE html><html class="scroll-smooth" lang="en-us"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><meta name="twitter:card" content="summary_large_image" data-next-head=""/><meta name="twitter:site" content="@wiz_io" data-next-head=""/><meta property="og:image" content="https://www.wiz.io/_next/static/media/social_share_image.365jr19ic_epb.jpg" data-next-head=""/><meta property="og:locale" content="en-us" data-next-head=""/><meta property="og:site_name" content="wiz.io" data-next-head=""/><title data-next-head="">Wiz Go for Startups | Wiz</title><meta name="robots" content="index,follow" data-next-head=""/><meta name="description" content="Wiz Go is a complete cloud security bundle for fast-moving teams—offering full visibility, protection, and flexibility with startup-friendly pricing." data-next-head=""/><meta property="og:title" content="Wiz Go for Startups | Wiz" data-next-head=""/><meta property="og:description" content="Wiz Go is a complete cloud security bundle for fast-moving teams—offering full visibility, protection, and flexibility with startup-friendly pricing." data-next-head=""/><meta property="og:url" content="https://www.wiz.io/lp/startups" data-next-head=""/><meta property="og:type" content="website" data-next-head=""/><link rel="canonical" href="https://www.wiz.io/lp/startups" data-next-head=""/><link rel="shortcut icon" href="/favicon.png"/><meta name="twitter:widgets:csp" content="on"/><meta name="google-site-verification" content="zSanwcyYxMtAILuAY6eFdLNwmVQVVT9wbetOL7oFfN8"/><link rel="preload" href="/_next/static/media/41e5ecddd0e3bcb9.p.3patcig-oohg3.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font=""/><link rel="preload" href="/_next/static/media/115e7a2565b70400-s.p.1vgtwd90zpq_8.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/dm_sans_v11_latin_regular-s.p.0-uaq7sv9qt4b.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/dm_sans_v11_latin_500-s.p.28dljr5s20ekc.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/dm_sans_v11_latin_700-s.p.2r-62eyan8vwo.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/poppins_latin_400-s.p.26axoheojcvao.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/poppins_latin_600-s.p.14nztc_w4mkh_.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/2e4ne7-on89x1.css" as="style"/><link rel="preload" href="/_next/static/chunks/3902j__c0xbxd.css" as="style"/><link rel="preload" href="/_next/static/chunks/34ic_ueb6qr1i.css" as="style"/><script id="optimizely-gdpr-loader" data-nscript="beforeInteractive">
(function() {
  'use strict';
  
  // =========================================================================
  // Configuration (injected at build time)
  // =========================================================================
  var REGION_COOKIE_NAME = 'wiz_region';
  var CONSENT_COOKIE_NAME = 'OptanonConsent';
  var REQUIRED_CONSENT_CATEGORY = 'C0002';
  var OPTIMIZELY_SCRIPT_URL = 'https://cdn.optimizely.com/js/26988130118.js';
  var EU_REGION = 'EU';
  
  
  // =========================================================================
  // Cookie Parsing Utilities
  // =========================================================================
  
  /**
   * Get a cookie value by name
   */
  function getCookie(name) {
    var cookies = document.cookie.split('; ');
    for (var i = 0; i < cookies.length; i++) {
      var cookie = cookies[i];
      if (cookie.indexOf(name + '=') === 0) {
        return cookie.substring(name.length + 1);
      }
    }
    return null;
  }
  
  /**
   * Check if OneTrust consent is granted for a specific category
   * 
   * OneTrust stores consent in format:
   * OptanonConsent=groups=C0001%3A1%2CC0002%3A1
   * Decoded: groups=C0001:1,C0002:1
   * 
   * Where C0001:1 = consented, C0001:0 = not consented
   */
  function hasOneTrustConsent(category) {
    var consentValue = getCookie(CONSENT_COOKIE_NAME);
    
    if (!consentValue) return false;
    
    try {
      var decoded = decodeURIComponent(consentValue);
      var groupsMatch = decoded.match(/groups=([^&]*)/);
      
      if (!groupsMatch || !groupsMatch[1]) {
        return false;
      }
      
      // Check for category:1 (consented)
      var hasConsent = groupsMatch[1].indexOf(category + ':1') !== -1;
      
      return hasConsent;
    } catch (e) {
      return false;
    }
  }
  
  // =========================================================================
  // Main Logic
  // =========================================================================
  
  /**
   * Load the Optimizely script dynamically
   */
  function loadOptimizely() {
    var script = document.createElement('script');
    script.src = OPTIMIZELY_SCRIPT_URL;
    // async=false only preserves execution order relative to other
    // dynamically-inserted scripts; a script added via createElement never
    // blocks HTML parsing, so experiments apply after first paint (possible
    // flicker). A fully flicker-free load would need a synchronous
    // <script src> in <head>, which isn't possible here because loading is
    // gated on a runtime GDPR/consent decision.
    script.async = false;
    document.head.appendChild(script);
    
    // Mark that Optimizely was loaded
    window.__optimizelyLoadedByGDPR = true;
  }
  
  // =========================================================================
  // Start GDPR Decision Flow (always enforced)
  // =========================================================================

  // Get user's region from cookie (set by middleware)
  var regionCookie = getCookie(REGION_COOKIE_NAME);
  
  // Determine if user is in EU
  // If no cookie exists (edge case), default to EU for safety
  var isEU = !regionCookie || regionCookie === EU_REGION;
  
  // Decision logic
  var shouldLoadOptimizely = false;
  var blockReason = null;
  
  if (!isEU) {
    // Non-EU users: Always load Optimizely
    shouldLoadOptimizely = true;
  } else {
    // EU users: Check OneTrust consent
    if (hasOneTrustConsent(REQUIRED_CONSENT_CATEGORY)) {
      shouldLoadOptimizely = true;
    } else {
      blockReason = 'no_consent';
    }
  }
  
  // Execute decision
  if (shouldLoadOptimizely) {
    loadOptimizely();
  } else {
    // Mark that Optimizely was intentionally blocked
    // This flag is used by client-side code to know the current state
    window.__optimizelyBlockedForGDPR = true;
    window.__optimizelyBlockReason = blockReason;
  }
})();
</script><script id="theme-color-mode" data-nscript="beforeInteractive">
(function() {
  function getInitialColorMode() {
    const pathname = window.location.pathname;

    const isDarkModePage = null;

    const isResearchPage = ["/research", "/cloud-threat-landscape", "/ai-security-resource-center", "/ctf", "/bug-bounty-masterclass", "/cyber-model-arena"].includes(pathname);

    const isResearchPath = ["/bug-bounty-masterclass"].some(path => pathname.startsWith(path));
    
    if (isResearchPage || isResearchPath) {
      return 'dark-research';
    }
    if (isDarkModePage) {
      return 'dark';
    }
    return 'light';
  }
  const colorMode = getInitialColorMode();
  const root = document.documentElement;
  root.classList.add(colorMode);
})()
</script><link rel="stylesheet" href="/_next/static/chunks/2e4ne7-on89x1.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/3902j__c0xbxd.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/34ic_ueb6qr1i.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/3z4gxecea4wvh.js" defer=""></script><script src="/_next/static/chunks/0aw5j_mmo032z.js" defer=""></script><script src="/_next/static/chunks/1cj4nuz5kmhnn.js" defer=""></script><script src="/_next/static/chunks/3btm_ifbxdblp.js" defer=""></script><script src="/_next/static/chunks/2csnsrspn9wqb.js" defer=""></script><script src="/_next/static/chunks/0ionw8tiwjivq.js" defer=""></script><script src="/_next/static/chunks/2ihkoegl1b1da.js" defer=""></script><script src="/_next/static/chunks/1ij4rfs7lv-ea.js" defer=""></script><script src="/_next/static/chunks/3j8i913gh31o9.js" defer=""></script><script src="/_next/static/chunks/4072vc7r7k9e1.js" defer=""></script><script src="/_next/static/chunks/07wuugjcmmlpp.js" defer=""></script><script src="/_next/static/chunks/2gwwx488j74vf.js" defer=""></script><script src="/_next/static/chunks/2_g2ukufyuka5.js" defer=""></script><script src="/_next/static/chunks/072eknsjtzk1w.js" defer=""></script><script src="/_next/static/chunks/3yexd59hhggq8.js" defer=""></script><script src="/_next/static/chunks/3vuah6zbso5mt.js" defer=""></script><script src="/_next/static/chunks/2lpf4ocpoc03t.js" defer=""></script><script src="/_next/static/chunks/0x-2f-1syxhjs.js" defer=""></script><script src="/_next/static/chunks/0pq4ht1c0dtyl.js" defer=""></script><script src="/_next/static/chunks/1eu8_frqjhwmg.js" defer=""></script><script src="/_next/static/chunks/3r1_kv49xt-mc.js" defer=""></script><script src="/_next/static/chunks/2wr_66k79e2ia.js" defer=""></script><script src="/_next/static/chunks/3oicl1h0kdmx5.js" defer=""></script><script src="/_next/static/chunks/2s7yyqwkayc93.js" defer=""></script><script src="/_next/static/chunks/turbopack-05stv_b8pnh1_.js" defer=""></script><script src="/_next/static/chunks/42zzmn4z_e1gk.js" defer=""></script><script src="/_next/static/chunks/2dbv301wanlz6.js" defer=""></script><script src="/_next/static/chunks/2i8vqo1-cabvy.js" defer=""></script><script src="/_next/static/chunks/29i2dlxfaqu9e.js" defer=""></script><script src="/_next/static/chunks/1_d0f2okg336l.js" defer=""></script><script src="/_next/static/chunks/2h2flavxvcy4r.js" defer=""></script><script src="/_next/static/chunks/2srgqt1uqc4d0.js" defer=""></script><script src="/_next/static/chunks/0att_0temoobh.js" defer=""></script><script src="/_next/static/chunks/0m14el_32kqmy.js" defer=""></script><script src="/_next/static/chunks/0oe87un-l2k69.js" defer=""></script><script src="/_next/static/chunks/3f7r6g5-hpx2k.js" defer=""></script><script src="/_next/static/chunks/09uosk2sqq254.js" defer=""></script><script src="/_next/static/chunks/1606a1wo-1cdg.js" defer=""></script><script src="/_next/static/chunks/28aejw-32y866.js" defer=""></script><script src="/_next/static/chunks/0sd2radvcwsfw.js" defer=""></script><script src="/_next/static/chunks/1katlclqady1g.js" defer=""></script><script src="/_next/static/chunks/2lpgru0lxld64.js" defer=""></script><script src="/_next/static/chunks/33dtj36h_j916.js" defer=""></script><script src="/_next/static/chunks/3l-5n2ggkojkq.js" defer=""></script><script src="/_next/static/chunks/0-ikdekplvvov.js" defer=""></script><script src="/_next/static/chunks/1dv_m2vjx4w9l.js" defer=""></script><script src="/_next/static/chunks/2dw62jfu_knxs.js" defer=""></script><script src="/_next/static/chunks/0sfwj7_ne_3ja.js" defer=""></script><script src="/_next/static/chunks/0enrenjy2ja4b.js" defer=""></script><script src="/_next/static/chunks/257q5_fbh6kd8.js" defer=""></script><script src="/_next/static/chunks/32eeyhcw-1p3r.js" defer=""></script><script src="/_next/static/chunks/3fw9zcv181zn6.js" defer=""></script><script src="/_next/static/chunks/10ubcim34pxfr.js" defer=""></script><script src="/_next/static/chunks/turbopack-2qgy_rvgsrq-d.js" defer=""></script><script src="/_next/static/6sFXKMZ7VMIRaiO-2DJM9/_buildManifest.js" defer=""></script><script src="/_next/static/6sFXKMZ7VMIRaiO-2DJM9/_ssgManifest.js" defer=""></script><script src="/_next/static/6sFXKMZ7VMIRaiO-2DJM9/_clientMiddlewareManifest.js" defer=""></script></head><body class="font-body text-gray-dark selection:bg-primary-blue dark:bg-gray-black dark:text-gray-light dark-research:bg-gray-black dark-research:text-gray-light bg-white antialiased selection:text-white crimson_pro_9a1cd227-module__YyzdBW__variable fontsans_233e9333-module__sC0XiW__variable fontheadings_e865dc0d-module__QHXhtG__variable"><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1659145362-62d9c6456eea0396432058ac_wolt_logo-1.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1772031063-redis_logo_red_rgb.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1660518792-atlan-blue-1.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1659134461-lili.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1665697477-logicgate-inc-logo-vector-1.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1713249970-logo.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1658682450-62d9a61fd7693f8697c2fb6b_plaid-logo.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1659875369-tide-logo-blue-noreg.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1656632744-yotpo-logo.svg"/><link rel="preload" as="image" href="https://www.datocms-assets.com/75231/1673110024-redis_white2.svg"/><div id="__next"><main><div class="sticky inset-x-0 -top-px z-50 transition-transform duration-300 ease-in-out"><div class="dark:bg-gray-black dark-research:bg-gray-black relative border-b border-b-transparent bg-white transition-all duration-300"><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8"><div class="flex h-16 items-center justify-between"><div class="mr-4 flex justify-start"><a class="inline-block self-start" href="/"><span class="sr-only">Wiz</span><svg class="text-primary-blue dark-research:text-white h-9 max-w-[51px] translate-y-[-2.5px] transition-all active:opacity-50 lg:hover:opacity-70 dark:text-white" aria-label="Wiz Logo"><use href="/images/logo_sprite.svg#wiz-logo"></use></svg></a></div><div class="hidden"><div class="flex items-center justify-end gap-4 lg:hidden"><button type="button" aria-label="Open search" class="text-gray-dark dark:text-gray-light/70 dark-research:text-gray-light/70 flex items-center transition-opacity hover:opacity-70"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-search size-5" aria-hidden="true"><path d="m21 21-4.34-4.34"></path><circle cx="11" cy="11" r="8"></circle></svg></button><button type="button" aria-haspopup="dialog" aria-expanded="false" data-state="closed" aria-label="Open navigation menu" class="text-gray-black focus:ring-primary-blue dark:text-gray-light dark-research:text-gray-light flex items-center focus:ring-2 focus:outline-hidden focus:ring-inset lg:hidden"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-menu" aria-hidden="true"><path d="M4 5h16"></path><path d="M4 12h16"></path><path d="M4 19h16"></path></svg></button></div><div class="hidden items-center justify-end lg:flex lg:flex-1 lg:gap-5"><button type="button" aria-label="Open search" class="text-gray-dark dark:text-gray-light/70 dark-research:text-gray-light/70 flex items-center transition-opacity hover:opacity-70"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-search size-5" aria-hidden="true"><path d="m21 21-4.34-4.34"></path><circle cx="11" cy="11" r="8"></circle></svg></button><a class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 border-primary-blue text-primary-blue dark:border-gray-light dark:bg-gray-black dark:text-gray-light dark:group-hover/button:bg-primary-blue dark-research:border-pink-research dark-research:bg-gray-black dark-research:text-pink-research dark-research:group-hover/button:bg-pink-research dark-research:group-hover/button:text-gray-black dark-research:hover:bg-transparent dark-research:hover:text-white dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] border bg-white hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] dark:group-hover/button:text-white dark:hover:bg-transparent dark:hover:text-white dark:hover:shadow-[0px_5px_0px_0px_var(--color-gray-light)] dark:active:shadow-[0px_3px_0px_0px_var(--color-gray-light)] h-8 px-4 py-1 text-sm group/button ease-spring-button relative inline-flex items-center justify-start rounded-full font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 border-primary-blue text-primary-blue dark:border-gray-light dark:bg-gray-black dark:text-gray-light dark:group-hover/button:bg-primary-blue dark-research:border-pink-research dark-research:bg-gray-black dark-research:text-pink-research dark-research:group-hover/button:bg-pink-research dark-research:group-hover/button:text-gray-black dark-research:hover:bg-transparent dark-research:hover:text-white dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] border bg-white hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] dark:group-hover/button:text-white dark:hover:bg-transparent dark:hover:text-white dark:hover:shadow-[0px_5px_0px_0px_var(--color-gray-light)] dark:active:shadow-[0px_3px_0px_0px_var(--color-gray-light)] h-8 px-4 py-1 text-sm" href="/pricing?cta_source=lp&amp;cta_page=/lp/startups&amp;cta_placement=nav">Pricing</a><a class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-pink-research dark-research:text-gray-black dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] text-white shadow-[0px_0px_0px_0px_var(--color-primary-pink)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-pink)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-pink)] h-8 px-4 py-1 text-sm group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-pink-research dark-research:text-gray-black dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] text-white shadow-[0px_0px_0px_0px_var(--color-primary-pink)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-pink)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-pink)] h-8 px-4 py-1 text-sm" href="/demo?cta_source=lp&amp;cta_page=/lp/startups&amp;cta_placement=nav">Get a demo<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right transition-transform size-3 ml-1" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg></a></div></div><div class="flex shrink-0 items-center md:flex-1 justify-end"><a class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-pink-research dark-research:text-gray-black dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] text-white shadow-[0px_0px_0px_0px_var(--color-primary-pink)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-pink)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-pink)] h-8 px-4 py-1 text-sm group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-pink-research dark-research:text-gray-black dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] text-white shadow-[0px_0px_0px_0px_var(--color-primary-pink)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-pink)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-pink)] h-8 px-4 py-1 text-sm" href="/demo?cta_source=lp&amp;cta_page=/lp/startups&amp;cta_placement=nav">Get a demo<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right transition-transform size-3 ml-1" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg></a></div></div></div></div></div></div><section class="bg-white"><div aria-hidden="true" class="h-6 md:h-8 lg:h-12"></div><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2"><div class="grid auto-cols-auto gap-7 md:grid-cols-[1.2fr_1fr] md:grid-rows-1 md:gap-10"><div class="space-y-2 justify-start"><p class="font-sans tracking-normal text-base/6.5 md:text-lg/7 text-primary-blue dark:text-gray-light dark-research:font-normal dark-research:text-gray-light font-medium uppercase dark:font-normal">Wiz Go for Startups</p><h1 data-size="xl" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.725rem]/8.5 md:text-[2.5rem]/13">Cloud Security Built for Startup Speed</h1><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-base/6.5 md:text-lg/7">Wiz Go is a complete cloud security bundle for fast-moving teams—offering full visibility, protection, and flexibility with startup-friendly pricing.</p><div class="max-w-fit"><div class="space-y-2"><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans tracking-normal text-base/6.5 md:text-lg/7 text-center font-medium">Rated #1 cloud security software on G2</p><div class="flex flex-col items-center justify-center gap-2 md:flex-row"><div class="flex items-center gap-2"><svg class="fill-gray-black size-8 text-inherit"><use href="/images/logo_sprite.svg#g2"></use></svg><div class="flex items-center gap-0.5"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="#1e293b" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star" aria-hidden="true"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="#1e293b" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star" aria-hidden="true"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="#1e293b" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star" aria-hidden="true"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="#1e293b" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star" aria-hidden="true"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg><svg width="20" height="20"><defs><linearGradient id="partialFill-4-grayscale"><stop offset="86%" stop-color="#1e293b"></stop><stop offset="86%" stop-color="transparent"></stop></linearGradient></defs><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="url(#partialFill-4-grayscale)" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star" aria-hidden="true"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg></svg></div><p class="dark:text-gray-light dark-research:text-gray-light font-sans tracking-normal text-base/6.5 md:text-lg/7 font-medium text-inherit">4.7</p><p class="dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-base/6.5 md:text-lg/7 hidden text-inherit md:block">|</p></div><p class="dark:text-gray-light dark-research:text-gray-light font-sans tracking-normal text-base/6.5 md:text-lg/7 font-medium text-inherit uppercase">826<!-- --> <!-- -->reviews</p></div></div></div><div class="mt-8! flex flex-wrap gap-3 justify-start"><button class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent text-base font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-pink-research dark-research:text-gray-black dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] text-white shadow-[0px_0px_0px_0px_var(--color-primary-pink)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-pink)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-pink)] h-10 px-4 py-3" type="button" aria-haspopup="dialog" aria-expanded="false" data-state="closed">Apply now<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right transition-transform size-4 ml-2 animate-swipe-right" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></button><a href="https://www.datocms-assets.com/75231/1748419296-wiz-go-for-startups.pdf" class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full text-base font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 border-primary-blue text-primary-blue dark:border-gray-light dark:bg-gray-black dark:text-gray-light dark:group-hover/button:bg-primary-blue dark-research:border-pink-research dark-research:bg-gray-black dark-research:text-pink-research dark-research:group-hover/button:bg-pink-research dark-research:group-hover/button:text-gray-black dark-research:hover:bg-transparent dark-research:hover:text-white dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] border bg-white hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] dark:group-hover/button:text-white dark:hover:bg-transparent dark:hover:text-white dark:hover:shadow-[0px_5px_0px_0px_var(--color-gray-light)] dark:active:shadow-[0px_3px_0px_0px_var(--color-gray-light)] h-10 px-4 py-3 group/button ease-spring-button relative inline-flex items-center justify-start rounded-full text-base font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 border-primary-blue text-primary-blue dark:border-gray-light dark:bg-gray-black dark:text-gray-light dark:group-hover/button:bg-primary-blue dark-research:border-pink-research dark-research:bg-gray-black dark-research:text-pink-research dark-research:group-hover/button:bg-pink-research dark-research:group-hover/button:text-gray-black dark-research:hover:bg-transparent dark-research:hover:text-white dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] border bg-white hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] dark:group-hover/button:text-white dark:hover:bg-transparent dark:hover:text-white dark:hover:shadow-[0px_5px_0px_0px_var(--color-gray-light)] dark:active:shadow-[0px_3px_0px_0px_var(--color-gray-light)] h-10 px-4 py-3">Download Wiz Go Datasheet</a></div></div><div class="flex items-center"><div class="border-primary-blue overflow-hidden rounded-xl border shadow-[4px_4px_0px_0px_var(--color-primary-pink)]"></div></div></div></div><div aria-hidden="true" class="h-6 md:h-8 lg:h-12"></div></section><section class="py-10 bg-white"><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8 space-y-12"><h3 data-size="sm" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-center">Trusted by the most innovative startups in the world</h3><div class="relative" role="region" aria-roledescription="carousel"><div class="overflow-hidden"><div class="flex items-start -ml-4"><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="flex h-auto w-full items-center"><div class="grid grid-cols-2 gap-x-12 gap-y-16 px-3 sm:px-0 md:gap-16 sm:grid-cols-3 lg:grid-cols-5"><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1659145362-62d9c6456eea0396432058ac_wolt_logo-1.svg" class="" alt="Wolt"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:2.4499999999999997rem" src="https://www.datocms-assets.com/75231/1772031063-redis_logo_red_rgb.svg" class="" alt="Redis"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1660518792-atlan-blue-1.svg" class="" alt="Atlan"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg" class="" alt="Fiverr"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:2.1rem" src="https://www.datocms-assets.com/75231/1659134461-lili.svg" class="" alt="Lili Bank"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:3.8500000000000005rem" src="https://www.datocms-assets.com/75231/1665697477-logicgate-inc-logo-vector-1.svg" class="" alt="LogicGate"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1713249970-logo.svg" class="" alt="Otto"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1658682450-62d9a61fd7693f8697c2fb6b_plaid-logo.svg" class="" alt="Plaid"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1659875369-tide-logo-blue-noreg.svg" class="" alt="Tide"/></div><div class="flex items-center justify-center last:sm:col-auto"><img style="height:1.75rem" src="https://www.datocms-assets.com/75231/1656632744-yotpo-logo.svg" class="" alt="Yotpo"/></div></div></div></div></div></div></div></div></div></section><section class="bg-white"><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2 min-w-0"><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div><div class="space-y-3 text-center"><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5">The all-in-one package for startups</h2><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-base/6.5 md:text-lg/7">Wiz Go is our tailored security package designed for lean, fast-moving startups. It bundles the key capabilities across:</p></div><div class="relative mt-12 space-y-4"><div class="text-center lg:hidden"><button class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 border-primary-blue text-primary-blue dark:border-gray-light dark:bg-gray-black dark:text-gray-light dark:group-hover/button:bg-primary-blue dark-research:border-pink-research dark-research:bg-gray-black dark-research:text-pink-research dark-research:group-hover/button:bg-pink-research dark-research:group-hover/button:text-gray-black dark-research:hover:bg-transparent dark-research:hover:text-white dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] border bg-white hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] dark:group-hover/button:text-white dark:hover:bg-transparent dark:hover:text-white dark:hover:shadow-[0px_5px_0px_0px_var(--color-gray-light)] dark:active:shadow-[0px_3px_0px_0px_var(--color-gray-light)] h-8 px-4 py-1 text-sm"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pause transition-transform size-3 mr-1" aria-hidden="true"><rect x="14" y="3" width="5" height="18" rx="1"></rect><rect x="5" y="3" width="5" height="18" rx="1"></rect></svg>Pause</button></div><div class="relative" role="region" aria-roledescription="carousel"><div class="overflow-hidden"><div class="flex items-start -ml-4"><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 relative basis-4/5 overflow-visible pb-24 lg:basis-1/3"><article class="group relative isolate z-1 flex h-full flex-col overflow-hidden rounded-xl border p-6 transition-colors before:from-primary-pink before:to-primary-blue dark:after:bg-gray-black dark-research:after:bg-gray-black border-transparent before:absolute before:top-0 before:left-0 before:z-[-2] before:size-full before:bg-white before:bg-linear-to-br before:content-[&quot;&quot;] after:absolute after:top-1/2 after:left-1/2 after:z-[-1] after:size-[calc(100%-4px)] after:-translate-1/2 after:rounded-[0.6rem] after:bg-white after:content-[&quot;&quot;]"><div class="relative h-20 w-full"><img alt="Wiz Code icon" loading="lazy" decoding="async" data-nimg="fill" class="object-contain object-left" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1745330201-group-1000003488.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-8"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Wiz Code</h3><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-sm/5">Wiz Code enables you to secure every stage of your SDLC to gain visibility &amp; prevent risks in code, pipeline, registries and images.</p></div><div class="mt-auto pt-6"><div class="bg-gray-medium absolute bottom-0 left-0 h-1 w-full opacity-100"><span class="bg-primary-blue block h-1 transition-[width] ease-in-out w-full" style="transition-duration:6000ms"></span></div></div></article><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-down text-gray-light absolute bottom-10 left-1/2 size-14 -translate-x-1/2 transition-all ease-in-out translate-y-4 opacity-100 duration-700" aria-hidden="true" name="wiz-star"><path d="m7 6 5 5 5-5"></path><path d="m7 13 5 5 5-5"></path></svg></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 relative basis-4/5 overflow-visible pb-24 lg:basis-1/3"><article class="group border-gray-medium relative isolate z-1 flex h-full flex-col overflow-hidden rounded-xl border p-6 transition-colors hover:border-primary-blue/40 cursor-pointer"><div class="relative h-20 w-full"><img alt="Wiz Cloud icon" loading="lazy" decoding="async" data-nimg="fill" class="object-contain object-left" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043563-group-1000003137.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-8"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Wiz Cloud</h3><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-sm/5">Wiz Cloud provides agentless visibility &amp; risk prioritization that proactively reduces the attack surface.</p></div><div class="mt-auto pt-6"><div class="bg-gray-medium absolute bottom-0 left-0 h-1 w-full opacity-0"><span class="bg-primary-blue block h-1 w-0 transition-[width] ease-in-out" style="transition-duration:0ms"></span></div></div></article><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-down text-gray-light absolute bottom-10 left-1/2 size-14 -translate-x-1/2 opacity-0 transition-all duration-100 ease-in-out" aria-hidden="true" name="wiz-star"><path d="m7 6 5 5 5-5"></path><path d="m7 13 5 5 5-5"></path></svg></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 relative basis-4/5 overflow-visible pb-24 lg:basis-1/3"><article class="group border-gray-medium relative isolate z-1 flex h-full flex-col overflow-hidden rounded-xl border p-6 transition-colors hover:border-primary-blue/40 cursor-pointer"><div class="relative h-20 w-full"><img alt="Wiz Defend &amp; Runtime Sensor icon" loading="lazy" decoding="async" data-nimg="fill" class="object-contain object-left" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747043549-group-1000002132.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-8"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Wiz Defend &amp; Runtime Sensor</h3><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-sm/5">Wiz Defend and the Runtime Sensor provide threat detection and response plus runtime protection born for cloud.</p></div><div class="mt-auto pt-6"><div class="bg-gray-medium absolute bottom-0 left-0 h-1 w-full opacity-0"><span class="bg-primary-blue block h-1 w-0 transition-[width] ease-in-out" style="transition-duration:0ms"></span></div></div></article><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-down text-gray-light absolute bottom-10 left-1/2 size-14 -translate-x-1/2 opacity-0 transition-all duration-100 ease-in-out" aria-hidden="true" name="wiz-star"><path d="m7 6 5 5 5-5"></path><path d="m7 13 5 5 5-5"></path></svg></div></div></div></div></div><div class="relative"><a class="group absolute -top-6 right-4 z-10 size-24 sm:-top-10 sm:right-8 sm:size-32 xl:top-14 xl:right-0 xl:translate-x-1/2" href="/demo"><img alt="See more of the product badge" loading="lazy" decoding="async" data-nimg="fill" class="transition-transform duration-200 group-hover:-rotate-12" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=640&amp;q=75 640w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=750&amp;q=75 750w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=828&amp;q=75 828w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=1080&amp;q=75 1080w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=1200&amp;q=75 1200w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=1920&amp;q=75 1920w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=2048&amp;q=75 2048w, /_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=%2Fimages%2Fsolution-feature-list-story-badge.webp&amp;w=3840&amp;q=75"/></a><div class="relative" role="region" aria-roledescription="carousel"><div class="overflow-hidden"><div class="flex items-start -ml-4"><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="bg-gray-light m-2 overflow-hidden rounded-xl shadow-md"></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="bg-gray-light m-2 overflow-hidden rounded-xl shadow-md"></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="bg-gray-light m-2 overflow-hidden rounded-xl shadow-md"></div></div></div></div></div></div><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div></div></section><section class="bg-gray-light/50"><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8"><div class="space-y-3 text-center"><p class="font-sans tracking-normal text-base/6.5 md:text-lg/7 text-primary-blue dark:text-gray-light dark-research:font-normal dark-research:text-gray-light font-medium uppercase dark:font-normal">Wiz Go for Startups</p><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5">Benefits of Wiz Go for Startups</h2><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-base/6.5 md:text-lg/7">Designed for speed, built for scale, priced for startups.</p></div><div class="mt-10 grid justify-items-center gap-10 first:mt-20 md:mt-20 md:gap-20 md:grid-cols-3"><div class="max-w-xs text-center"><div class="relative h-20 w-full"><img alt="Secure without slowing down icon" loading="lazy" decoding="async" data-nimg="fill" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1747906376-iconleft.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-2"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Secure without slowing down</h3><p>Security that fits the pace of product teams—not the other way around.</p></div></div><div class="max-w-xs text-center"><div class="relative h-20 w-full"><img alt="Grows with you icon" loading="lazy" decoding="async" data-nimg="fill" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1693318944-group-1000002530.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-2"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Grows with you</h3><p>From MVP to scale, Wiz Go supports your next stage of your cloud security maturity journey.</p></div></div><div class="max-w-xs text-center"><div class="relative h-20 w-full"><img alt="Small security team? No problem. icon" loading="lazy" decoding="async" data-nimg="fill" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=640&amp;q=75 640w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=750&amp;q=75 750w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=828&amp;q=75 828w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.datocms-assets.com%2F75231%2F1724438693-1692874764-group-1000002780.svg&amp;w=3840&amp;q=75"/></div><div class="mt-6 space-y-2"><h3 data-size="sm" class="font-headings dark-research:text-white font-semibold dark:text-white text-base/5.5 md:text-[1.35rem]/7.5 text-primary-blue">Small security team? No problem.</h3><p>Built for lean teams, with clear priorities and automation that works out of the box.</p></div></div></div></div></div><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div></section><section class="relative isolate flex flex-col gap-16 overflow-hidden bg-white pt-20 md:pt-24 lg:pt-32"><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2 mx-auto max-w-2xl"><div class="space-y-3 text-center"><p class="font-sans tracking-normal text-base/6.5 md:text-lg/7 text-primary-blue dark:text-gray-light dark-research:font-normal dark-research:text-gray-light font-medium uppercase dark:font-normal">Wiz security graph</p><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5">Move fast by focusing on what actually matters</h2><p class="text-gray-dark dark:text-gray-light dark-research:text-gray-light font-sans font-normal tracking-normal text-base/6.5 md:text-lg/7">The Wiz Security Graph shows you what’s truly at risk and helps you focus on the issues that matter most.</p></div></div><div class="relative inset-x-0 bottom-0 left-1/2 w-[90vw] -translate-x-1/2 lg:w-[70vw] xl:w-[50vw]"><div class="absolute left-1/2 w-[88%] -translate-x-1/2 translate-y-2 bg-transparent lg:translate-y-4"><div class="aspect-video overflow-hidden rounded-sm bg-white md:rounded-lg"><div class="object-cover"></div></div></div><img alt="" loading="lazy" width="892" height="510" decoding="async" data-nimg="1" class="w-full" style="color:transparent" srcSet="/_next/image?url=%2Fimages%2Fcomputer-video-frame.svg&amp;w=1080&amp;q=75 1x, /_next/image?url=%2Fimages%2Fcomputer-video-frame.svg&amp;w=1920&amp;q=75 2x" src="/_next/image?url=%2Fimages%2Fcomputer-video-frame.svg&amp;w=1920&amp;q=75"/></div><img alt="" loading="lazy" width="410" height="260" decoding="async" data-nimg="1" class="absolute bottom-0 left-0 -z-20" style="color:transparent;width:32%;height:auto" sizes="100vw" srcSet="/_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=640&amp;q=75 640w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=750&amp;q=75 750w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=828&amp;q=75 828w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=%2Fimages%2Fpartial-cloud-left.svg&amp;w=3840&amp;q=75"/><img alt="" loading="lazy" width="382" height="290" decoding="async" data-nimg="1" class="absolute right-0 bottom-0 -z-20" style="color:transparent;width:32%;height:auto" sizes="100vw" srcSet="/_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=640&amp;q=75 640w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=750&amp;q=75 750w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=828&amp;q=75 828w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=1080&amp;q=75 1080w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=1200&amp;q=75 1200w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=1920&amp;q=75 1920w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=2048&amp;q=75 2048w, /_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=3840&amp;q=75 3840w" src="/_next/image?url=%2Fimages%2Fpartial-cloud-right.svg&amp;w=3840&amp;q=75"/></section><section class="bg-gray-black dark"><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2"><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div><div class="space-y-12"><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5 text-center">Why startups choose Wiz</h2><div class="grid auto-rows-[260px] grid-cols-1 gap-4 sm:grid-cols-2"><a class="group shadow-gray-black/20 relative overflow-hidden rounded-md shadow-xl transition-transform duration-500 active:opacity-90 md:hover:scale-[1.03]" href="/customers/fiverr-zero-criticals"><div class="z-1 relative h-full transition-transform duration-500 md:group-hover:-translate-y-1 md:group-hover:scale-[1.03] [&amp;&gt;img]:h-full" style="overflow:hidden;position:relative;width:100%;max-width:1000px"><img style="display:block;width:100%" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjYwMCI+PC9zdmc+" aria-hidden="true" alt=""/><img aria-hidden="true" alt="" src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLDxILDhgbGg4UDhkVDREMFx8ZGCITFhUaIC0jGh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0NFjsdFhw7NS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIAA8AGAMBIgACEQEDEQH/xAAXAAADAQAAAAAAAAAAAAAAAAAABQYE/8QAHRAAAQQDAQEAAAAAAAAAAAAABAABAgMFBhJBEf/EABcBAAMBAAAAAAAAAAAAAAAAAAIDBQH/xAAZEQACAwEAAAAAAAAAAAAAAAAAEQECQTH/2gAMAwEAAhEDEQA/AKDL5qdNLvGSwYfYb77eO0iPldcO/wBkkePKvFOZml6hw1Qy/wBkzhIY7SaaFObCxBoEX68QkT0oVrCP/9k=" style="object-fit:cover;transition:opacity 500ms;opacity:1;position:absolute;left:-5%;top:-5%;width:110%;height:auto;max-width:none;max-height:none"/><noscript><picture class="h-full"><source srcSet="https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 2000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 3000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4&amp;fit=crop&amp;fm=webp&amp;h=600&amp;w=1000 4000w" sizes="(max-width: 1000px) 100vw, 1000px" type="image/webp"/><source srcSet="https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25&amp;fit=crop&amp;h=600&amp;w=1000 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5&amp;fit=crop&amp;h=600&amp;w=1000 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75&amp;fit=crop&amp;h=600&amp;w=1000 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop&amp;h=600&amp;w=1000 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5&amp;fit=crop&amp;h=600&amp;w=1000 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2&amp;fit=crop&amp;h=600&amp;w=1000 2000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3&amp;fit=crop&amp;h=600&amp;w=1000 3000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4&amp;fit=crop&amp;h=600&amp;w=1000 4000w" sizes="(max-width: 1000px) 100vw, 1000px"/><img src="https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop&amp;h=600&amp;w=1000" alt="" style="position:absolute;left:0;top:0;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover" loading="lazy" referrerPolicy="no-referrer-when-downgrade"/></picture></noscript></div><div class="absolute inset-0 z-2" style="background-color:#37AE69;-webkit-mask-image:linear-gradient(0deg,rgba(0,0,0,0.9) 10%,rgba(0,0,0,.5) 54.75%);mask-image:linear-gradient(0deg,rgba(0,0,0,0.9) 10%,rgba(0,0,0,.5) 54.75%)"></div><div class="absolute z-3 inset-6"><div class="absolute top-0 left-0 block"><img src="https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg" class="opacity-95 brightness-0 invert max-w-40" style="height:1.5rem" alt="Fiverr"/></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-newspaper absolute top-0 right-0 size-5 text-white opacity-95" aria-hidden="true"><path d="M15 18h-5"></path><path d="M18 14h-8"></path><path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"></path><rect width="8" height="4" x="10" y="6" rx="1"></rect></svg><div class="absolute left-0 -bottom-10 transition-all duration-500 md:group-hover:-bottom-1"><h3 class="mb-2 text-2xl font-semibold text-white">How Fiverr reduced critical vulnerabilities to zero with a collaborative security program </h3><span class="text-sm text-white opacity-0 transition-opacity duration-500 md:group-hover:opacity-100">Read case study<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right mx-1 inline-block size-3" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg></span></div></div></a><a class="group shadow-gray-black/20 relative overflow-hidden rounded-md shadow-xl transition-transform duration-500 active:opacity-90 md:hover:scale-[1.03]" href="/customers/redis"><div class="z-1 relative h-full transition-transform duration-500 md:group-hover:-translate-y-1 md:group-hover:scale-[1.03] [&amp;&gt;img]:h-full" style="overflow:hidden;position:relative;width:100%;max-width:1000px"><img style="display:block;width:100%" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjYwMCI+PC9zdmc+" aria-hidden="true" alt=""/><img aria-hidden="true" alt="" src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLChMLDhgQDhUNDh0RFg0VFx0ZGBYTIhUmJisjHR0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg4OHA0NEi8oFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIAA8AGAMBIgACEQEDEQH/xAAYAAACAwAAAAAAAAAAAAAAAAAGBwAEBf/EAB0QAAEEAwEBAAAAAAAAAAAAAAEAAgMEBRESIQb/xAAVAQEBAAAAAAAAAAAAAAAAAAACA//EABcRAAMBAAAAAAAAAAAAAAAAAAACIQH/2gAMAwEAAhEDEQA/AGJYycYg6KrV87DI3naErf0LJKR00rIpZUlziCVJmGiwP7mXZEzwqJfXsw9w1sqJY0Bq0//Z" style="object-fit:cover;transition:opacity 500ms;opacity:1;position:absolute;left:-5%;top:-5%;width:110%;height:auto;max-width:none;max-height:none"/><noscript><picture class="h-full"><source srcSet="https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.25&amp;fit=crop&amp;fm=webp&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.5&amp;fit=crop&amp;fm=webp&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.75&amp;fit=crop&amp;fm=webp&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 750w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;fit=crop&amp;fm=webp&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 1000w" sizes="(max-width: 1000px) 100vw, 1000px" type="image/webp"/><source srcSet="https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.25&amp;fit=crop&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.5&amp;fit=crop&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;dpr=0.75&amp;fit=crop&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 750w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;fit=crop&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000 1000w" sizes="(max-width: 1000px) 100vw, 1000px"/><img src="https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint&amp;fit=crop&amp;fp-x=0.44&amp;fp-y=0.61&amp;h=600&amp;w=1000" alt="" style="position:absolute;left:0;top:0;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover" loading="lazy" referrerPolicy="no-referrer-when-downgrade"/></picture></noscript></div><div class="absolute inset-0 z-2" style="background-color:#FF4438;-webkit-mask-image:linear-gradient(0deg,rgba(0,0,0,0.9) 10%,rgba(0,0,0,.5) 54.75%);mask-image:linear-gradient(0deg,rgba(0,0,0,0.9) 10%,rgba(0,0,0,.5) 54.75%)"></div><div class="absolute z-3 inset-6"><div class="absolute top-0 left-0 block"><img src="https://www.datocms-assets.com/75231/1673110024-redis_white2.svg" class="max-w-40" style="height:2.0999999999999996rem" alt="Redis"/></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-newspaper absolute top-0 right-0 size-5 text-white opacity-95" aria-hidden="true"><path d="M15 18h-5"></path><path d="M18 14h-8"></path><path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"></path><rect width="8" height="4" x="10" y="6" rx="1"></rect></svg><div class="absolute left-0 -bottom-10 transition-all duration-500 md:group-hover:-bottom-1"><h3 class="mb-2 text-2xl font-semibold text-white">Real-time data platform Redis gets total multi-cloud visibility with Wiz  </h3><span class="text-sm text-white opacity-0 transition-opacity duration-500 md:group-hover:opacity-100">Read case study<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right mx-1 inline-block size-3" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg></span></div></div></a></div></div><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div></div></section><section class="bg-gray-light/50 overflow-hidden py-20"><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2"><div class="space-y-3 text-center"><p class="font-sans tracking-normal text-base/6.5 md:text-lg/7 text-primary-blue dark:text-gray-light dark-research:font-normal dark-research:text-gray-light font-medium uppercase dark:font-normal">Feedback</p><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5">See what our users think about Wiz</h2></div></div><div data-layout="full-bleed" class="col-span-full w-full relative overflow-x-hidden mt-16 mb-24"></div></section><section><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div><div class="grid grid-cols-[1fr_min(98ch,calc(100%-4rem))_1fr] gap-x-8 [&amp;&gt;*:not([data-layout=&quot;full-bleed&quot;])]:col-start-2"><div class="grid grid-cols-1 grid-rows-[0.8fr_1fr] gap-0 md:grid-cols-2 md:grid-rows-1 md:gap-20"><div><div class="space-y-3"><p class="font-sans tracking-normal text-base/6.5 md:text-lg/7 text-primary-blue dark:text-gray-light dark-research:font-normal dark-research:text-gray-light font-medium uppercase dark:font-normal">Get a personalized demo</p><h2 data-size="lg" class="font-headings text-gray-black-soft dark-research:text-white font-semibold dark:text-white text-[1.375rem]/[1.85rem] md:text-[2.125rem]/11.5">Ready to see Wiz in action?</h2></div><div class="relative" role="region" aria-roledescription="carousel"><div class="overflow-hidden"><div class="flex items-start -ml-4"><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="flex flex-col justify-between gap-8"><blockquote class="mt-5 font-serif text-xl text-balance md:text-2xl">&quot;Best User Experience I have ever seen, provides full visibility to cloud workloads.&quot;</blockquote><div class="flex items-center gap-4"><span class="dark-research:grayscale dark-research:invert flex h-14 w-20 items-center dark:grayscale dark:invert"><svg xmlns="http://www.w3.org/2000/svg" id="Art" viewBox="0 0 454 88.8"><path fill="#ffffff" d="M434 88.8c11 0 19.9-8.9 19.9-19.9v-49C454 8.9 445 0 434 0H19.9C8.9 0 0 8.9 0 20v48.9c0 11 8.9 19.9 19.9 19.9H434z"></path><path d="M101.8 81.8c-7.2 0-13-5.8-13-13V19.9c0-7.2 5.8-13 13-13H434c7.2 0 13 5.8 13 13v48.9c0 7.2-5.8 13-13 13H101.8z" fill="#ab2318"></path><path d="M20 81.9c-7.2 0-13-5.8-13-13V20c0-7.2 5.8-13 13-13h48.8c7.2 0 13 5.8 13 13v48.9c0 7.2-5.8 13-13 13H20z" fill="#451500"></path><path fill="#ffffff" d="M59.1 15.3c.5.1 2.7.8 2.7.8s2.1 3.1 2.7 3.8c.5.7.3 1.1.3 1.1l-1 3.8s.4.3 0 0-3.2-.1-3.9 0c-.7.1.6-.8.9-1.1.3-.3 1.5-1.2 1.4-1.6-.1-.5-2-4-2-4s-3.2 0-4.7.2-4.7 3.4-4.7 3.4l-1.2 4.6s.5.8 1.1 1.4c.7.5 2.6.4 3.3.3.7-.1.4.8-.2 1.3-.6.5-2.8.5-2.8.5l.9.3c1 .9 2.8 5.6 3.9 6.7 1.1 1.1 0 6.5-1.6 8.1-1.6 1.6-2.3 4.9-3.2 5.8-.9.9-1.9.6-.9 1.6 1 1 .5 2.2.7 3 .1.6.3 1.6.7 2 .5.5 7.7 5.5 10.5 5.7.5 0 .5 2.6-2.4 5.7 0 0-.5 1.8-5.5 2-5.4.2-10.7-.7-11.9-.7-1.2 0-4.8-2-4.8-2-.7 0-11.2-15.6-11.2-16.7 0-1.1-.8-4-.8-5.1 0-1.1 1.3-11 1.1-12.2-.2-.9.3-1.2 1.4-2.2 1.1-1.1 3-2.9 3.8-3.7.3-.3 2.9-.3 6.1-.9l.5-.2-.6-.3s-1-1.3-2.6-1.2c-1.6.1-2.2.2-1.3-.2.8-.4 2.4-1.5 2.4-1.5l3.6 1.6h1.9l3.4-2.8 7.7-6.2 6.3-1.1M35.3 35c-.9.2-2.4-.1-3.1 1.2L31 41.9s.1 5.7.3 6.8c.1 1.1 1.6 4.8 2.4 5.6.7.7 1.4 3.1 2.7 4.4.3.3 1.1.5 1.3.9.5.7 1 .2 0-1.2-3.5-5.2-4.3-9.7-4.4-10.4-.4-1.7-.1-5.6 0-7.2.1-.8.6-2.7 1.2-3.1.3-.2 2.7-.5 3.1-.6.8-.2 1.8-.2 2.5-.3 2.2-.5 5.5.7 5.8.8 3.3 1.5 2 2.1 2.1 2.2.1.2-4.6 9.5-4.6 10s.2 5.1.6 6.4c.1.4 1.6 3.9 1.9 4.6 1.2 2.8-2.5-.5-2.7-.6s-4.3-8.4-5-10.2c-.5-1.2-.3-3-.2-3.3.1-.5-.2-4.5.5-5.1.5-.4 2-.6 3.1-.1 1 .4 1.5 1.5 1.4 1.8-.1.2-1.6 5.3-1.9 4.9-.1-.1-.1-1.7-.3-1.9-.3-.3-.7-.5-.8-.3-.1.2-.4 1.9-.3 2.5.7 2.8 1.6 1.9 1.9 1.4.5-.8 2.7-7 2.6-7.4-.1-.9-.8-2.5-2.2-3-.9-.3-3.8-.1-4.9.4-1.6.8-1.5 8-1.2 9 .3 1 4.5 9.4 4.7 10 .5 1.3 3.5 4.2 3.9 4.5.2.1 4.3 1.7 4.8.9.2-.4.1-1.3-.9-2-1-.6-3.3-7.5-3.3-8s-.6-4.3-.2-5.1c.8-1.5 6.4-9.9 5.8-10.6-.8-.9-3.3-5.1-4.5-3.5-1.1 1.4-5.3 0-6.6-1 0 .1-2.9.7-4.3.9zm16.2 32.3c1.6 0 6.1-2.4 4.5-3.5-1.1-.7-2.3-1.6-4.6-3.4-1-.8-1.5-.6-1.8-.6-.9 0 .6-1.5.1-2.8-.6-1.3-.9-3.4-1.3-3.9-.5-.5-.3-3 .7-4 1.1-1.1 2.6-4.2 3.5-5.4 1-1.4 1.7-4.6 1.3-5-.4-.4-2.3-4.3-3.1-5.1-.5-.5-1.4-1.8-2.2-2.9l-.2-.3-.9.5c-.9.5-2 1.5-2 1.5s-.8.2-2.5-.1c-.9-.2-1.3-.8-1.3-1.6s-.5-.6-.5-.6-8 .4-8.7.8c-.6.4-3.4 4.2-3.4 4.2s-1.5 14.6-.3 15.8c1.4 1.4 7.8 12.7 9.1 14 1.4 2 12 2.4 13.6 2.4zm112.1-17.8c-.6 0-1.1.5-1.1 1.1v11.9c0 .6-.5 1.1-1.1 1.1h-4.7c-.6 0-1.1-.5-1.1-1.1V25.4c0-.6.5-1.1 1.1-1.1h4.7c.6 0 1.1.5 1.1 1.1V42c0 .6.5 1.1 1.1 1.1h18.2c.6 0 1.1-.5 1.1-1.1V25.4c0-.6.5-1.1 1.1-1.1h4.7c.6 0 1.1.5 1.1 1.1v37.1c0 .6-.5 1.1-1.1 1.1H184c-.6 0-1.1-.5-1.1-1.1V50.6c0-.6-.5-1.1-1.1-1.1h-18.2zM212 24.3c.6 0 1.1.5 1.1 1.1v37.1c0 .6-.5 1.1-1.1 1.1h-4.7c-.6 0-1.1-.5-1.1-1.1V25.4c0-.6.5-1.1 1.1-1.1h4.7zm77.1 40c-12.1 0-20.5-9.2-20.5-20.3s8.5-20.4 20.6-20.4c12.1 0 20.5 9.2 20.5 20.3 0 11.1-8.5 20.4-20.6 20.4zm0-34.3c-7.8 0-13.3 6.2-13.3 13.9s5.6 14 13.4 14c7.8 0 13.3-6.2 13.3-13.9s-5.6-14-13.4-14zm46.8 32.5c0 .6-.5 1.1-1.1 1.1h-4.7c-.6 0-1.1-.5-1.1-1.1V31.8c0-.6-.5-1.1-1.1-1.1h-10.2c-.6 0-1.1-.5-1.1-1.1v-4.2c0-.6.5-1.1 1.1-1.1h29.7c.6 0 1.1.5 1.1 1.1v4.2c0 .6-.5 1.1-1.1 1.1h-10.2c-.6 0-1.1.5-1.1 1.1l-.2 30.7zm24.5-37.1c0-.6.5-1.1 1.1-1.1h4.7c.6 0 1.1.5 1.1 1.1v30.8c0 .6.5 1.1 1.1 1.1h18.4c.6 0 1.1.5 1.1 1.1v4.1c0 .6-.5 1.1-1.1 1.1h-25.3c-.6 0-1.1-.5-1.1-1.1V25.4zm66.5 4c0 .6-.5 1.1-1.1 1.1h-20c-.6 0-1.1.5-1.1 1.1v10.5c0 .6.5 1.1 1.1 1.1h15c.6 0 1.1.5 1.1 1.1v3.9c0 .6-.5 1.1-1.1 1.1h-15c-.6 0-1.1.5-1.1 1.1v5.8c0 .6.5 1.1 1.1 1.1h20.3c.6 0 1.1.5 1.1 1.1v3.9c0 .6-.5 1.1-1.1 1.1h-27.2c-.6 0-1.1-.5-1.1-1.1V25.4c0-.6.5-1.1 1.1-1.1h26.9c.6 0 1.1.5 1.1 1.1v4zm-168 8.1c0-8-5.8-13.2-14.9-13.2h-14.4c-.6 0-1.1.5-1.1 1.1v37.1c0 .6.5 1.1 1.1 1.1h4.7c.6 0 1.1-.5 1.1-1.1V52.1c0-.6.5-1.1 1.1-1.1h6.7c8.7 0 15.7-4.6 15.7-13.5zm-22.4 7.2c-.6 0-1.1-.5-1.1-1.1V31.7c0-.6.5-1.1 1.1-1.1h6.9c5.2 0 8.5 2.4 8.5 7.1 0 4.2-3.3 7.1-8.5 7.1h-6.9zM126.2 30c4.1 0 7.3 1.7 10.2 4.2.5.4 1.2.4 1.6-.1l3-3.5c.4-.5.3-1.2-.1-1.6-3.5-3.1-7.9-5.4-14.6-5.4-11.9 0-20.3 9.2-20.3 20.4v-.2c0 11.2 8.4 20.4 20.3 20.4 6.6 0 11-2.2 14.6-5.4.5-.4.5-1.1.1-1.6l-3-3.5c-.4-.5-1.1-.5-1.6-.1-2.9 2.5-6.1 4.2-10.2 4.2-7.5 0-13-6.2-13-13.9.1-7.7 5.5-13.9 13-13.9z"></path></svg></span><div class="flex flex-col"><span class="text-sm font-medium">David Estlick</span><span class="text-sm">CISO</span></div></div></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="flex flex-col justify-between gap-8"><blockquote class="mt-5 font-serif text-xl text-balance md:text-2xl">&quot;Wiz provides a single pane of glass to see what is going on in our cloud environments.&quot;</blockquote><div class="flex items-center gap-4"><span class="dark-research:grayscale dark-research:invert flex h-14 w-20 items-center dark:grayscale dark:invert"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 65 26"><path fill="#000" d="M5.84 17.46v-3.457s.49-.16.83-.16c1.142 0 1.806.816 1.806 1.802 0 1.315-.664 1.815-1.806 1.815h-.83ZM5.84 20.751v-2.97h.83c1.302 0 2.622.495 2.622 1.81 0 1.32-.65 2.141-1.97 2.141-.991 0-1.482-.16-1.482-.981ZM15.87 20.412c0-.82.976-1.155 1.967-1.155v1.815c-.16.16-.486.32-.99.32-.487 0-.977-.48-.977-.98ZM44.46 16.635c1.141 0 1.806 1.146 1.806 2.622 0 1.32-.5 2.475-1.641 2.475-1.16 0-1.646-1.155-1.646-2.636 0-1.315.486-2.461 1.48-2.461ZM59.082 18.276h-2.64c0-.816.49-1.641 1.32-1.641.816 0 1.32.825 1.32 1.64Z"></path><path fill="#000" fill-rule="evenodd" d="M64.002 25.69H.096v-25h63.906v25ZM9.778 15.48c0-1.476-1.462-1.976-2.947-1.976H3.379v.34l.655.16c.49 0 .49 0 .49.495v6.573c0 .5 0 .5-.49.66H3.38v.32h4.268c1.645 0 2.96-.82 2.96-2.46 0-1.316-1.315-1.972-2.635-2.132.67-.165 1.806-.825 1.806-1.98Zm3.452 5.592v-8.05c-.651.161-1.48.322-2.297.322v.32h.49c.505 0 .665.18.665.66v6.748c0 .5 0 .5-.5.66h-.325v.32h2.961v-.32h-.49a4.575 4.575 0 0 0-.121-.055c-.258-.113-.383-.169-.383-.605Zm2.965.98c.651 0 1.156-.32 1.642-.66.165.34.33.66.816.66.669 0 1.155-.32 1.645-.82l-.165-.16a.589.589 0 0 0-.212.06 1.084 1.084 0 0 1-.439.1c-.325 0-.504-.16-.504-.481v-3.13c0-.986-.486-1.32-1.806-1.32-.812 0-2.132.499-2.132 1.159 0 .16.165.32.5.32.33 0 .49-.16.655-.66.165-.32.326-.485.816-.485.505 0 .826.325.826.825v1.476c-1.477.16-2.962.495-2.962 1.815 0 .642.49 1.302 1.32 1.302Zm8.55-4.432c.32 0 .485-.16.485-.5 0-.485-.83-.82-1.806-.82-1.81 0-2.8 1.32-2.8 2.957 0 1.494.99 2.796 2.475 2.796.816 0 1.645-.321 2.296-1.142l-.165-.16c-.325.32-.83.481-1.48.481-1.32 0-2.136-.98-2.136-2.457 0-1.315.655-2.14 1.645-2.14.326 0 .656.165.816.486.037.038.073.084.11.131.135.17.291.368.56.368Zm3.107 3.452v-1.815c.101 0 .267.186.528.48.167.187.374.42.628.675l.815.98c.18.18.18.34 0 .34h-.486v.32h2.797v-.32c-.5 0-.665-.16-.99-.5l-2.297-2.457 1.806-1.654.004-.004c.323-.318.489-.482 1.151-.482V16.3h-2.47v.335h.485c.18.165.34.325.18.486l-2.15 1.975v-6.073c-.652.16-1.468.32-2.297.32v.321h.49c.505 0 .665.18.665.66v6.748c0 .5 0 .5-.504.66h-.486v.32h3.126v-.32h-.49a4.888 4.888 0 0 0-.122-.055c-.257-.113-.383-.169-.383-.605Zm5.098.98c.16-.16.325-.16.325-.16.142 0 .283.029.446.061.226.046.496.1.874.1 1.155 0 2.132-.481 2.132-1.802 0-.82-.651-1.155-1.646-1.65-.976-.325-1.302-.486-1.302-1.141 0-.5.486-.825 1.142-.825.83 0 1.155.486 1.315 1.48h.326V16.3h-.16l-.326.16c-.055 0-.128-.017-.225-.04a3.602 3.602 0 0 0-.93-.12c-.977 0-1.971.5-1.971 1.655 0 .98.664 1.476 1.48 1.801 1.155.335 1.32.656 1.32 1.155 0 .482-.33.821-1.155.821-.816 0-1.32-.5-1.645-1.641h-.16v1.962h.16Zm5.257-5.092v3.951c0 .66.49 1.142 1.32 1.142.651 0 1.142-.16 1.646-.82v-.161c-.504.32-.67.32-.995.32-.49 0-.816-.16-.816-.815V16.96h1.811v-.5h-1.81v-1.476h-.166c-.5.835-.99 1.316-1.64 1.816v.16h.65Zm6.418-.66c-1.485 0-2.966 1.16-2.966 2.957 0 1.815 1.48 2.796 2.966 2.796 1.462 0 2.947-1.142 2.947-2.796 0-1.797-1.485-2.957-2.947-2.957Zm7.064.66c.65 0 .976.5.976 1.316v2.796c0 .248 0 .372-.06.455-.06.084-.18.124-.426.205h-.33v.32h2.952v-.32h-.33c-.245-.08-.366-.121-.427-.205-.059-.083-.059-.207-.059-.455v-3.117c0-.995-.67-1.655-1.645-1.655-.83 0-1.481.335-2.132.82v-.98c-.67.32-1.32.495-2.136.495v.325h.325c.49 0 .656.335.656.995v3.117c0 .5 0 .5-.49.66h-.491v.32h3.112v-.32h-.49a4.378 4.378 0 0 0-.12-.057c-.242-.112-.366-.17-.366-.603V17.46c.068-.035.136-.076.208-.12.275-.17.616-.38 1.273-.38Zm6.234-.66c-1.641 0-2.636 1.48-2.636 2.957 0 1.494.995 2.796 2.475 2.796.977 0 1.806-.481 2.457-1.142l-.16-.16c-.165.16-.816.481-1.646.481-1.48 0-2.131-1.141-2.131-2.63h3.937c-.16-1.307-.976-2.302-2.296-2.302Z" clip-rule="evenodd"></path></svg></span><div class="flex flex-col"><span class="text-sm font-medium">Adam Fletcher</span><span class="text-sm">Chief Security Officer</span></div></div></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 basis-full pl-4"><div class="flex flex-col justify-between gap-8"><blockquote class="mt-5 font-serif text-xl text-balance md:text-2xl">&quot;We know that if Wiz identifies something as critical, it actually is.&quot;</blockquote><div class="flex items-center gap-4"><span class="dark-research:grayscale dark-research:invert flex h-14 w-20 items-center dark:grayscale dark:invert"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-0.818 -0.818 98.098 28.885"><path d="M38.396.05c-.45 0-.65.268-.818.652-10.528 24.18-11.412 26.09-11.412 26.09h5.967l1.241-3.033h8.989l1.246 3.034h7.017s-.6-1.242-11.411-26.091c-.168-.384-.368-.651-.819-.651m-3.125 19.082 2.59-6.33 2.6 6.33h-5.19zM68.2 14.645c2.05-1.219 3.604-3.347 3.604-6.399 0-2.396-.963-4.372-2.637-5.707C67.47 1.182 65.506.448 61.494.448h-8.585v26.345h6.343v-9.807h1.967c2.14 0 3.218.808 4.115 2.946.758 1.81 1.293 3.957 1.99 6.86h7.074a300.437 300.437 0 0 0-2.26-6.505c-1.033-2.88-2.284-4.654-3.939-5.642m-4.055-3.232c-.767.587-1.758.771-3.539.771h-1.353s-.014-7.022 0-7.022h1.353c1.86 0 2.786.203 3.534.766.856.647 1.237 1.616 1.237 2.738 0 1.224-.427 2.124-1.232 2.747m-52.207.199L1.163.909C.836.591.51.365 0 .365v26.428h5.538V14.156l6.399 6.353 6.403-6.353v12.637h5.538V.365c-.511 0-.837.226-1.162.544l-10.78 10.703Zm82.21 2.036c-2.827-2.669-7.957-3.126-9.984-4.695-.795-.615-1.079-1.52-.818-2.383.32-1.071 1.395-1.773 2.971-1.773 2.172 0 4.12.984 5.469 2.576l3.622-3.763C93.273 1.357 89.864 0 86.274 0c-4.185 0-7.342 2.008-8.751 5.213-1.093 2.488-.717 5.083.627 6.948 2.6 3.61 8.087 3.722 10.463 5.573.846.66 1.32 1.727.814 2.877-.437 1.006-1.54 1.69-3.344 1.736-2.501.06-4.733-1.104-6.375-3.14l-3.627 3.768c2.4 2.885 5.97 4.275 10.286 4.275 4.195 0 7.877-1.62 9.38-5.074 1.315-3.02.841-6.229-1.6-8.528" style="fill:#0000a0;fill-opacity:1;fill-rule:evenodd;stroke:none"></path></svg></span><div class="flex flex-col"><span class="text-sm font-medium">Greg Poniatowski</span><span class="text-sm">Head of Threat and Vulnerability Management</span></div></div></div></div></div></div><div class="mt-2"><button type="button" aria-label="Click to view slide" class="bg-gray-light mr-3 size-2 origin-left overflow-hidden w-20 rounded-lg"><span class="bg-gray-dark/15 block h-full transition-[width] ease-in-out" style="width:calc(var(--progress) * 100%)"></span></button><button type="button" aria-label="Click to view slide" class="bg-gray-light mr-3 size-2 origin-left overflow-hidden rounded-full"></button><button type="button" aria-label="Click to view slide" class="bg-gray-light mr-3 size-2 origin-left overflow-hidden rounded-full"></button></div></div></div><div class="text-gray-dark flex flex-col items-center justify-center gap-8"><a class="group/button ease-spring-button relative inline-flex items-center justify-start rounded-full border border-transparent font-medium whitespace-nowrap transition-[transform,translate,color,background-color,border-color,text-decoration-color,fill,stroke,box-shadow] before:absolute before:left-0 before:-z-50 before:size-full before:bg-transparent before:content-[&quot;&quot;] hover:before:scale-y-140 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 bg-primary-pink text-primary-blue group-hover/button:bg-secondary-blue-dark dark-research:bg-white dark-research:text-primary-blue dark-research:group-hover/button:bg-primary-blue dark-research:group-hover/button:text-white dark-research:hover:translate-y-[-5px] dark-research:hover:shadow-[0px_5px_0px_0px_var(--color-pink-research)] dark-research:active:translate-y-[-3px] dark-research:active:shadow-[0px_3px_0px_0px_var(--color-pink-research)] hover:translate-y-[-5px] hover:shadow-[0px_5px_0px_0px_var(--color-primary-blue)] active:translate-y-[-3px] active:shadow-[0px_3px_0px_0px_var(--color-primary-blue)] h-12 px-6 text-lg" href="/demo">Get a demo<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right ml-2 size-4" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg></a></div></div></div><div aria-hidden="true" class="h-14 md:h-16 lg:h-24"></div></section><footer class="bg-gray-black dark:border-t-gray-dark dark:bg-gray-black dark-research:border-t dark-research:border-none dark-research:bg-gray-black py-12 sm:py-24 md:py-20 dark:border-t" aria-labelledby="footer-heading"><h2 id="footer-heading" class="sr-only">Footer</h2><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8"><div class="flex flex-col gap-16 xl:grid xl:grid-cols-[1fr_5fr_2fr] xl:gap-8 xl:space-y-0"><div class="hidden md:block"><a href="/"><svg class="text-gray-light hover:text-primary-blue -mt-1 size-9" aria-label="Wiz Star Logo"><use href="/images/logo_sprite.svg#wiz-star"></use></svg></a></div><div class="grid grid-cols-2 gap-10 sm:grid-cols-3"><div><h3 class="text-gray-dark text-sm font-semibold tracking-wider uppercase">Platform</h3><ul role="list" class="mt-4 space-y-2"><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/platform">Cloud &amp; AI Security</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/platform/wiz-code">Wiz Code</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/platform/wiz-cloud">Wiz Cloud</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/platform/wiz-defend">Wiz Defend</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/integrations">Integrations</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/environments">Environments</a></li><li><a target="_blank" class="text-gray-light hover:text-gray-light/70 text-sm" href="https://docs.wiz.io">Documentation</a></li></ul></div><div><h3 class="text-gray-dark text-sm font-semibold tracking-wider uppercase">Learn</h3><ul role="list" class="mt-4 space-y-2"><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/customers">Customer Stories</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/courses">Cloud Security Courses</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/blog">Blog</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/academy">CloudSec Academy</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/resources">Resources Center</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/cloud-threat-landscape">Cloud Threat Landscape</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/cloud-security-assessment">Cloud Security Assessment</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/vulnerability-database">Vulnerability Database</a></li></ul></div><div><h3 class="text-gray-dark text-sm font-semibold tracking-wider uppercase">Company</h3><ul role="list" class="mt-4 space-y-2"><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/about">About Wiz</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/careers">Join the Team</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/newsroom">Newsroom</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/events">Events</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/contact">Contact Us</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/trust-center">Trust Center</a></li><li><a target="" class="text-gray-light hover:text-gray-light/70 text-sm" href="/partner-alliance">Wiz Partner Alliance</a></li></ul></div></div><div><div class="mt-12 flex flex-col md:mt-0 xl:items-end"><div class="space-y-6 xl:space-y-8"><!--$?--><template id="B:0"></template><!--/$--><div class="flex space-x-6"><a class="text-gray-light hover:text-gray-light/70" href="https://x.com/intent/user?screen_name=wiz_io"><span class="sr-only">X</span><svg class="hover:fill-gray-light mt-1 size-5 shrink-0 fill-white" aria-hidden="true"><use href="/images/logo_sprite.svg#x"></use></svg></a><a class="text-gray-light hover:text-gray-light/70" href="https://linkedin.com/company/wizsecurity"><span class="sr-only">LinkedIn</span><svg class="hover:fill-gray-light mt-1 size-5 shrink-0 fill-white" aria-hidden="true"><use href="/images/logo_sprite.svg#linkedin"></use></svg></a><a class="text-gray-light hover:text-gray-light/70" href="/feed/rss.xml"><span class="sr-only">RSS</span><svg class="hover:fill-gray-light mt-1 size-5 shrink-0 fill-white" aria-hidden="true"><use href="/images/logo_sprite.svg#rss"></use></svg></a></div></div></div></div></div></div></div><div aria-hidden="true" class="h-6 md:h-8 lg:h-12"></div><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8"><div class="border-gray-dark border-t"></div></div></div><div aria-hidden="true" class="h-6 md:h-8 lg:h-12"></div><div class="flex justify-center"><div class="mx-6 w-full max-w-272 sm:mx-8"><div class="flex flex-col-reverse justify-between gap-5 text-center md:flex-row md:gap-10"><p class="text-gray-light shrink-0 text-sm">© <!-- -->2026<!-- --> Wiz, Inc.</p><p class="flex flex-wrap justify-center gap-5 md:justify-start"><a target="_blank" class="text-gray-light hover:text-gray-light/70 text-sm" href="https://status.wiz.io">Status</a><a target="_blank" class="text-gray-light hover:text-gray-light/70 text-sm" href="https://cloud.google.com/terms/cloud-acquisitions-privacy-notice?hl=en&amp;e=0">Privacy Policy</a><a target="_blank" class="text-gray-light hover:text-gray-light/70 text-sm" href="https://legal.wiz.io/legal#terms-of-use">Terms of Use</a><a target="_blank" class="text-gray-light hover:text-gray-light/70 text-sm" href="https://legal.wiz.io/legal#modern-slavery">Modern Slavery Statement</a><button id="ot-sdk-btn" type="button" class="ot-sdk-show-settings text-gray-light! hover:text-gray-light/70! border-none! bg-transparent! p-0! text-sm!">Cookie Settings</button></p></div></div></div></footer></main><!--$--><div role="region" aria-label="Notifications (F8)" tabindex="-1" style="pointer-events:none"><ol tabindex="-1" class="fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse p-4 sm:top-auto sm:right-0 sm:bottom-0 sm:flex-col md:max-w-[420px] crimson_pro_9a1cd227-module__YyzdBW__variable fontsans_233e9333-module__sC0XiW__variable fontheadings_e865dc0d-module__QHXhtG__variable dark-research:text-white font-sans dark:text-white"></ol></div><!--$--><!--/$--><!--/$--></div><script>requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><button type="button" aria-haspopup="dialog" aria-expanded="false" data-state="closed" class="flex items-center gap-2 text-sm [&amp;&gt;svg]:data-[state=open]:rotate-180 text-white"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-globe size-5" aria-hidden="true"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"></path><path d="M2 12h20"></path></svg>English (US)<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down relative size-3 transition duration-300" aria-hidden="true"><path d="m6 9 6 6 6-6"></path></svg></button></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"translation":{"-0_Gsy":["Live platform demo"],"-3qxOc":["You've already solved this challenge!"],"-DmLct":["Programs"],"-ET_i6":["We can track changes to our cloud infrastructure in real-time"],"-GkyMK":["The Crypto Caper: Exposing a Sophisticated Multi-Cloud Bandit"],"-K7z-8":["Sample report"],"-KsG04":["November 4: Wizdom Conference Schedule"],"-LvHIs":["WordPress is a popular content management system (CMS) that powers over 40% of all websites on the intenet.  This popular ty makes it a prime target for attackers, who are constantly looking for new vulnerabilities to exploit.\n    \n    Click on a Wordpress vulnerability to learn more about its severity, exploitability, NVD metrics, and more\n    "],"-OT70n":["Wizdom is for anyone focused on cloud security — from CISOs to engineers to platform teams. Whether you're just getting started or building at scale, you'll find something valuable here."],"-Pya66":["We are working hard to protect and safeguard our critical data."],"-UkEDq":["We will be in touch shortly."],"-YjxsC":["Booth #4435"],"-ar305":["The CVE database is licensed under the \u003c0\u003eCreative Commons Attribution Non Commercial Share-Alike 4.0 International License\u003c/0\u003e"],"-b7T3G":["Updated"],"-bcHdo":["A Word from our wizards"],"-bocYC":["Followed by Neurons \u0026 Negronis, a happy hour"],"-c699c":["Secure your spot at the premier cloud security event of the year"],"-dQ-pO":["Schedule a call with a Wiz expert"],"-duvEs":["Saint Kitts and Nevis"],"-fJN4v":["Explore by technology"],"-gY-iO":["France"],"-hc0hx":["Thank you for your submission!"],"-i7gAJ":["related resources:"],"-ktBcQ":["Grab it from Greenhouse referral"],"-s1cHo":["We can detect identity misconfigurations (i.e no MFA)."],"-tyx--":["Thailand"],"-xYX1u":["Security Consulting"],"-xvHo3":["Meet the agents, watch them help teams defend at machine speed, and take one home."],"01Ra7E":["Connect with the people building the product, and get practical guidance from specialists who work with teams every day."],"01uxRv":["We'll be in touch as soon as possible."],"08cLBp":["El Salvador"],"0BBcBo":["We can track compliance drift over time."],"0BtVCD":["A Unified Platform"],"0By3AX":["Speed up remediation time on critical threats"],"0FI1uz":["Guinea"],"0IaYEK":["How esure saw the value of moving faster"],"0IpEcO":["Contributions to the community"],"0J_oR9":["Mauritania"],"0LEAPS":["Customer Trust Center"],"0MAc-x":["Lesotho"],"0MeemP":["North Korea"],"0Mi3_P":["More resources"],"0NvpEF":["Preparing your download..."],"0QwA9q":["Evaluate your cloud security practices across 9 security domains. Benchmark your current risk posture and identify the gaps in your defenses."],"0S48ib":["Join a network of professionals who are building fast and securely."],"0TumXZ":["build with us"],"0UXRI0":["\u003c0\u003eWant to join us in London?\u003c/0\u003e\u003c1/\u003e \u003c2\u003eCheck it out here\u003c/2\u003e"],"0Ur934":["Cloud Security Engineer"],"0WEL6Q":["We speak the truth, lead by example, and hold ourselves accountable to the highest possible standards of execution. It's how we build our product - and how we build trust with customers, partners, and each other. Here are our values below:"],"0WI_SI":["Niue"],"0XC0in":["Learn about Wiz Certified exams"],"0XSMGz":["We can detect vulnerabilities in our container images."],"0Y8wfh":["Free Vulnerability Assessment"],"0arjWK":["These people rock our world"],"0axd75":["$18,000"],"0doiWV":["Bring your questions to our experts with a 30 minute personal demo."],"0eELkr":["Transform security operations with the Wiz AI Operating Model. Leverage specialized AI security agents, powered by the context-rich Wiz Security Graph"],"0gS7M5":["Display Name"],"0jQ4za":["Cameroon"],"0kEZGC":["Understand the critical aspects of ",["vulnerabilityName"]," with a detailed vulnerability assessment, exploitation potential, affected technologies, and remediation guidance."],"0kcNgC":["An extension of your team"],"0lRokk":["Runtime protection"],"0mVvCd":["Evaluating AI agents across real-world security challenges"],"0pC_y6":["Event"],"0pXCr4":["Serbia"],"0peAR0":["Cloud Platforms"],"0qQaek":["Kings Cross"],"0ttL3c":["Gambia"],"0uEZzw":["Curious what risks Wiz can uncover? This sample report generated from the Wiz scanner shows the type of insights you'll gain from a cloud risk assessment. The report includes real-world examples of critical issues we've found in the wild."],"0uN4gd":["Do you have any mobility or dietary requirements you'd like to share with us?"],"0vCrWM":["Gain agentless visibility and risk prioritization that proactively reduces the attack surface across any cloud, platform, or AI environment."],"0wg9EY":["Burkina Faso"],"0wnEgs":["Oceanside E"],"0zfPc5":["Madagascar"],"13rQAc":["Technical Report"],"14Q5J9":["Train Your Team for Wiz"],"14jlYj":["Rated #1 cloud security software on G2"],"15J6Br":["We have implemented controls to prevent unauthorized access to sensitive data."],"197PSh":["Explore threats"],"19VzNy":["We can detect misuse in our AI pipelines."],"1A2Rqs":["2025 State of AI in the Cloud Report"],"1A75eM":["SOC teams drown in alerts while attackers move fast. This session reveals how to build autonomous AI agents that investigate every threat."],"1AjohM":["A Look Back at Wizdom NYC Highlights"],"1B7xQ7":["View vulnerable instances"],"1D1min":["Join our growing partner ecosystem."],"1I63gr":["Become a Wiz technology partner"],"1JTHur":["Please note that the Wizdom Community is only open to current Wiz customers"],"1JzfkX":["wiz cloud"],"1Kjae4":["Secure Development"],"1L40Ut":["Join Wiz experts at Black Hat for two hands-on workshops where you'll go head-to-head against the Wiz Red Agent, walk through a real supply chain breach, and leave with practical skills and playbooks you can implement immediately."],"1LLF3Z":["Thank you!"],"1NZAAy":["Cloud Vulnerability DB"],"1Nr9Bi":["Pro tip"],"1Qvkya":["Download your resource below"],"1RHIU7":["Get my gift"],"1Tujmf":["Assess critical risks across your code and CI/CD"],"1UcO83":["Stay updated with the latest news"],"1UzENP":["No"],"1ZaQUH":["Last name"],"1ZpNEy":["The AI Threat Readiness Framework"],"1aG0Lt":["Lack of Encryption: Failing to implement proper encryption for data at rest and in transit is a significant misconfiguration. Unencrypted data is susceptible to interception, theft, and exposure in the event of a security incident."],"1boXLh":["Autonomously investigates alerts across cloud and code, correlates evidence end-to-end, and delivers a clear, defensible verdict with full blast radius."],"1cMgV_":["The Wiz MVP Program brings together forward-thinking leaders who are driving cloud transformation and shaping the future of security. These are the experts making real impact — enabling their teams, cutting through the noise, and helping peers reach their strategic goals faster. "],"1cvWEV":["Niger"],"1gxmnU":["Agents evaluated:"],"1iGIjH":["Uzbekistan"],"1ikfVz":["Take the guided tour of Wiz Defend"],"1kOtz7":["Media resources and press materials"],"1nFPfD":["Integrity Impact"],"1p4tA8":["Gain visibility into the identities and permissions in your environment. Understand effective permissions and identify identity-related risk and exposure including excessive permissions and lateral movement paths."],"1rAg_J":["Being surrounded by the best team out there and the core belief to take action towards our values is what makes Wiz so special. The openness and transparency across the entire company is what makes our culture so unique. Oh, and the view from the NYC office in unmatched..."],"1sCehB":["cloud security provider?"],"1uydg2":["Unified Cloud Security Platform"],"1vVROZ":["Solomon Islands"],"1yvY4L":["By logging in, you acknowledge that you have read and agree to the \u003c0\u003eWiz Privacy Policy\u003c/0\u003e."],"2-rwl0":["Exploiting misconfigurations across different cloud providers"],"22hYCe":["$4,800"],"23HYHF":["Sorry, we couldn't load job postings at the moment."],"23O8lA":["Exploitability"],"26mZIT":["Georgia"],"27PtCs":["Keep me updated about Wiz product releases, industry news, and events (You can unsubscribe at any time)"],"27ciCN":["Wallis and Futuna"],"27z-FV":["Job Title"],"2AB3u7":["Iceland"],"2DzKMQ":["Automates SecOps threat hunting and investigation to validate and prioritize real threats."],"2FumKI":["Nigeria"],"2GT3Hf":["Global"],"2LeGX_":["Nominate"],"2Lfpza":["Wiz Triage Challenge: Can You Beat the AI at Security Triage?"],"2NZlcH":["Ready to protect your cloud?"],"2Ne6bm":["Join exclusive MVP sessions and community gatherings"],"2OQttN":["Validate your Wiz expertise. Boost your career."],"2PsTzL":["completed"],"2Q67If":["About this webinar:"],"2RMRrB":["Cloud ransom attacks are on the rise — and they don't look like traditional ransomware. The speed and sophistication of these attacks are creating new challenges defenders must adapt to in order to survive. This session takes you inside a real-world cloud extortion incident to reveal what actually happens after access is gained. You will hear lessons from the front lines of incident response and gain a practical understanding of the visibility gaps and forensic challenges that matter most when a cloud breach becomes a business crisis."],"2RzUTM":["Follow the Wiz fun on social media"],"2VZtSI":["Wiz at RSAC 2026"],"2XhlMJ":["Incident Response"],"2XjrMi":["Zero critical club"],"2Y7Rpq":["See Wiz Cloud in Action"],"2ajMiA":["Regenerating..."],"2bZVF9":["Burundi"],"2daNdJ":["Application Security Engineer"],"2eQdrS":["We connect code, cloud, identities, network, and runtime to model:"],"2fLtID":["Connect with a product expert to see the platform and explore how it fits your environment."],"2gqivt":["Monitor high-profile cloud vulnerabilities"],"2j6okY":["Why should you integrate with Wiz?"],"2ql-_l":["I agree that my personal data will be collected by Wiz and its co-sponsor(s) identified below who can contact me about their services, product releases, industry news, and events. I may update my preferences at any time. For more information about how Wiz processes my personal data, I will refer to \u003ca href=\"https://wiz.io/privacy-policy\"\u003eWiz's Privacy Policy\u003c/a\u003e. For more information about how Wiz's co-sponsors process my personal data, I will contact Wiz's co-sponsor(s) directly or refer to their privacy policy."],"2vWmTo":["See all events"],"2vl1NE":["We specialize in all aspects of cloud security, helping to protect your data, applications, and infrastructure. Our team is here to help you navigate complex challenges, ensuring your cloud environment remains secure, compliant, and resilient."],"2xBhGZ":["We evaluated 25 agent-model combinations (4 agents × 8 models) across 257 offensive security challenges spanning five categories:"],"30ewQz":["Take the interactive guided tour below"],"32WS2R":["Incorrect flag. Keep trying!"],"35Va4d":["Combining runtime and agentless approaches delivers a security solution specifically designed for cloud environments, offering complete workload security, advanced threat detection, real-time blocking, cloud threat hunting, and runtime forensic collection."],"37qJKw":["Learn how Wiz connects to your environment and gives complete visibility"],"3AbsFX":["Agentic development is rapidly changing the mechanics of software engineering, but the shift to autonomous agents requires more than just raw speed. It demands a deliberate set of practices and a robust verification layer to ensure that all code - whether human-written or AI-generated - is secure and production-ready. In this session, we will introduce the concept of the Agent Centric Development Cycle (AC/DC) and why intentional tooling is necessary for this new way of building software. Join us to learn how to build a secure development process that leverages AI agents without sacrificing code quality or data integrity. We will also discuss the critical partnerships and integrations designed to help your teams to innovate freely while minimizing technical debt and rework."],"3CWdKb":["Malaysia"],"3Gu0YZ":["Nominator work email"],"3HJE__":["Wizdom: London Speakers"],"3KEJZK":["Threat modeling helps anticipate potential security threats so defenders can design systems\n    to withstand them. By understanding the possible attack vectors and scenarios, you can implement targeted defenses\n    to safeguard AI systems against specific threats."],"3KlQvU":["Keep your developers focused on real issues in code by adding reachability and runtime context to code issues."],"3Le1qp":["Train your team for cloud"],"3RWazE":["Get a gift card as a thank-you"],"3VMLig":["AI Security Posture Management provides visibility into AI pipelines and their security posture so organizations can effectively remove AI risks. It embeds security within your AI models, training data, and AI services, ensuring accelerated—but safe—adoption of AI technologies. AI-SPM solutions should enable you to protect your AI models."],"3aO_xD":["We are working hard to keep code repos secure and strong."],"3b3p68":["When AI Makes Everyone a Hacker, Context is the Secret Weapon"],"3ctapx":["Manufacturing"],"3dQ6zJ":["Environments"],"3el6FO":["Explore our Customer Trust Center"],"3fc3gr":["Boost your resume and open doors to new opportunities."],"3h8FSf":["Type \"delete my wiz.io account\" to permanently delete your account."],"3ioI-B":["Wiz AI-Powered Security Platform"],"3kR-Av":["How to get certified?"],"3l6KJX":["Podcast"],"3pJ7V5":["Component name"],"3tQGzh":["Mailing Postal Code"],"3uy78s":["Adam Fletcher"],"3v_P-e":["You have \u003c0\u003e2 minutes\u003c/0\u003e on the clock for all 10 snippets — speed matters!"],"3wV73y":["City"],"3xjql7":["Czech Republic"],"44g3fG":["Watch a recorded demo of Wiz"],"47E3H3":["Credit card numbers or other banking information"],"4AdbIT":["My team won the Zero Critical Conquerer Achievement"],"4AzaSm":["Prepare for the exam"],"4F5r6f":["Wiz Values"],"4GKuCs":["Login failed"],"4HieKu":["Join Wiz for an executive roundtable on securing the modern, AI-accelerated software supply chain, hosted by Amir Lande Blau, VP of Product, Code \u0026 Runtime Security. We'll discuss how Wiz helps organizations discover and govern third-party dependencies and AI tooling across the SDLC - from IDEs, extensions, models, and coding agents, to agent-driven CI/CD and autonomous development workflows. By bringing cloud and code context together, Wiz enables faster, more accurate remediation and resilient, compliant deployments."],"4HnHpP":["Read more customer stories"],"4LR0Q_":["Signed in with Google"],"4O1kYe":["Watch how Wiz Code surfaces real code risks across every layer—from repo to runtime—so you can fix issues before they ship."],"4PEq2J":["We can correlate security events across our entire cloud environment."],"4QuJYQ":["Logistics Company Admin Panel Compromise"],"4RealB":["Begin by answering 9 introductory questions, each corresponding to a different domain of cloud security."],"4Ri0Ps":["Your partner at every step of your cloud and AI journey"],"4W4S7o":["Watch the Wiz Code Product Demo"],"4YE8ug":["Results and Recommendations"],"4bc5Mn":["Search options..."],"4cvtub":["Write us and we promise to get back to you"],"4fAOjg":["Watch the full event video"],"4jM43c":["Use the Wiz Defend spaceship to detect and defend against cloud threats"],"4k2VbT":["Send request"],"4k5PSg":["For Wiz customers"],"4kXDk3":["Powered by Wiz Defend"],"4ocX6y":["Wizlympics | Winter 2026 "],"4oeXM2":["Major Airline Data Dump"],"4qDVKb":["Only Session 2: For Management \u0026 All Attendees (Starts at 3:00 PM)"],"4rfYSJ":["Unsecured API Endpoints: Many cloud services provide APIs for interaction and management. Misconfigurations in API endpoints can leave them vulnerable to attacks, including injection attacks, data leaks, and unauthorized access."],"4sWHhT":["Faster Remediation"],"4tWphm":["From your first steps in the cloud to building innovative AI applications in the cloud, Wiz is your partner for maturing your security program. Wiz helps organizations of every size and scale to secure everything they build and run in the cloud."],"4ti62A":["Let's meet at Black Hat"],"4up_iu":["What is your role category?"],"4vDbwv":["Apply Today"],"4wEfJS":["Guest count"],"4wc4L9":["The ultimate state of AI Threat Readiness is a seamless, closed loop from finding to fix. Wiz Agents and Workflows empower you to execute automated, end-to-end response processes."],"4woFlO":["As places are extremely limited, RSVP now to save your spot! Trust us you don`t want to miss it!"],"4xdTFZ":["Blog posts"],"4zHav4":["Bahrain"],"4zllKM":["Learn about career opportunities at Wiz"],"54D5AM":["A cloud security assessment is a review of an organization's security posture in the cloud, scanning and detecting risk across the cloud infrastrucutre, applications, and policies. The primary goal of this evaluation is to identify critical risks that create attack paths in your environment, and allow you to proactively remove them. An effective cloud security assessment helps your organization adhere to security best practices, bolstering your defenses against cyber threats. Let's take a look at each element of a cloud security assessment."],"56GHZj":["Threat Research"],"56Z8bT":["Barbados"],"57xMkd":["CTF Hub | Cloud Security Challenges"],"5ADCNl":["Use case overview"],"5E5iwt":["We couldn't find any matches to your search."],"5FOqC0":["vulnerability analysis and mitigation"],"5GIsO7":["We couldn't find what you're looking for..."],"5PTR7H":["5:00 PM PST"],"5SCRvX":["Listen now"],"5Tzo_V":["Join and receive a Version Control DFIR desk mat!"],"5VbMwU":["Visibility into where your data stores are, any exposure paths to it, and who can access it. Identify unencrypted data in your environment, so you can ensure your data is protected."],"5VrtSZ":["Lunch Break"],"5W71dM":["10 minute tour"],"5WYZKZ":["Search results"],"5YLAE6":["Venezuela"],"5cRGvD":["Learn more about us"],"5gXG_Y":["Threat Intel Research"],"5gewdK":["Read reviews"],"5h0XC3":["Pre-registration required, event now closed"],"5i_MNm":["Go beyond siloed tools"],"5ivtJw":["Get early access to Wiz's roadmap via Wiz product and engineering leaders"],"5kwwwm":["Bridges the gap between finding and fixing by generating context-aware remediation at the source — driving teams toward zero critical risk."],"5lWFkC":["Sign in"],"5slOId":["Your cloud security foundation is solid, but there are opportunities to further strengthen your posture. Consider consulting with our experts to fine-tune your security strategy."],"5xWd0z":["Wiz Certified: Validate your Wiz expertise"],"63ZHWX":["James Austin"],"67xH8L":["Greenland"],"69Gavs":["Technical details"],"6AeD77":["Build a security flywheel that identifies the root cause of every contained incident and fixes them in code and cloud."],"6Ax6so":["Your +1's Name"],"6CG_ud":["Wiz Overview"],"6CRvmP":["TIME"],"6CnCfI":["Explore resellers and service partners"],"6Ctw3Q":["Evaluating AI across security challenges"],"6FXtfQ":["Blue Agent: Autonomous Investigation"],"6G12Si":["Training resources are available."],"6GRkpE":["Experience the\u003c0/\u003e Wiz platform today"],"6JaIJa":["Ready to Get Started?"],"6KGVi1":["Information regarding security vulnerabilities that could affect Wiz products"],"6LlN52":["Wiz hosted event"],"6Mlych":["AI-Powered Software Supply Chain Security: From Code to Cloud Roundtables"],"6NSE4Z":["Select country grouping..."],"6NxT_J":["We work side by side with your team, bringing threat intel, forensic analysis, and expert guidance: from the first alert through recovery."],"6PjYeK":["Root Domain Takeover on Fintech Company"],"6Uau97":["Skip"],"6WEYif":["Has CISA KEV Exploit"],"6WopLY":["Saint Vincent and the Grenadines"],"6Z0iwg":["Lesson Learned"],"6Z1-re":["No dress code here. Come as you are — whether that's jeans, sneakers, or your favorite conference hoodie. Comfort is key."],"6_RHJc":["Latvia"],"6_dCYd":["Overview"],"6_yrDl":["Minutes to ROI"],"6cyLjb":["Belize"],"6d-2UZ":["Well-structured content"],"6gTstj":["You'll now be redirected to the demo video"],"6iUmnf":["Explore modules"],"6idAqF":["Learn from actual bug bounty submissions that earned top researchers six-figure payouts"],"6jfS51":["Welcome"],"6k79RL":["Scammers may create e-mail addresses or web sites to impersonate Wiz employees. Communications from our Talent Acquisition wizards will only originate from Wiz employees with @wiz.io email addresses."],"6kRWuN":["Accelerate patching and zero-day response"],"6l7SaR":["Explore more on this topic"],"6nY75l":["Meet your developers where they are"],"6oNjbA":["My team won the Code Legend Achievement"],"6p9Rjx":["wiz blog"],"6q-htt":["Crying Out Cloud Newsletter"],"6r2QD_":["Featured incidents"],"6xdNGw":["Insights from the Wiz team"],"6yca6H":["Central African Republic"],"7-Dt9O":["High-profile threat"],"7227YK":["See Wiz Code in Action"],"73HIk2":["Shadow AI is the unauthorized use or implementation of AI that is not controlled by,\n    or visible to, an organization's IT department. Datasets for AI, AI models, and AI products are being\n    released every day for anyone to use-  no deep expertise required. This is especially true for generative\n    AI Increasingly, people are adopting GenAI in the form of personal assistants, and many have come to rely\n    on the variety of tailored experiences and optimized processes offered by AI."],"7At-xU":["How Digibee created a unified cloud security program \u0026 overcame barriers to rapid growth?"],"7DBZ92":["Prioritizes critical risks using actionable insights"],"7DNrer":["Operationalize security across an open ecosystem"],"7Ds6wt":["The application deadline is:"],"7F2saB":["Crying Out Cloud Presents: The 2025 Cloud Threatscape"],"7FN-vp":["AI-SPM identifies critical attack paths to AI models and data by detecting AI risks and\n    correlating them with deep cloud context for effective risk prioritization. AI-SPM should be integrated\n    within a greater cloud security platform to include context around misconfigurations, vulnerabilities, identities\n    and permissions, network exposures, secrets, sensitive data, and malware."],"7GZFkv":["Come make some magic with us"],"7GbHlU":["India"],"7I3-rd":["Cloud Security Posture Management"],"7JwWJG":["Expand market presence and reach through joint marketing, use of Wiz logo and badge, listing in partner directory, sponsorship opportunities and much more."],"7KBxc4":["Past event"],"7KXyr8":["Head of Threat and Vulnerability Management"],"7LrL7q":["Faroe Islands"],"7OP5Gs":["Get an instant Cloud Health Score ranging from High Risk to Optimal"],"7QbME4":["Back to Wiz at RSAC"],"7SJIDV":["Montenegro"],"7TnsrQ":["Wiz Partner Alliance"],"7UklMt":["Become a WIN partner"],"7YiXQN":["Seychelles"],"7YvLQd":["Security risks in the AI pipeline"],"7ay1_d":["About This Benchmark"],"7dOxiL":["Jamaica"],"7doZeg":["Generate Link"],"7e3ULw":["In this course"],"7i8j3G":["Company"],"7isARv":["CISO Series"],"7lOFos":["Innovation and Leadership: Lessons Learned"],"7nUw36":["Partner type"],"7o3Nbu":["Based on the answers provided in both the initial assessment and the detailed checklists, the tool calculates a risk score."],"7p7_5k":["Russian Federation"],"7tXkAw":["Live Training"],"7tgEva":["2"],"7vhWI8":["New Password"],"7yQXR4":["Try again!"],"8-ImgH":["Singapore"],"83Z1xb":["WIN Program Overview"],"844z6x":["Showing ",["nbHits"]," results"],"861uX-":["Your request has been submitted. Our team will be in touch soon."],"86vQcu":["Cloud Assessments 101"],"8ANn1i":["Consult with a Wiz Cloud Expert to translate results into a prioritized action plan"],"8E_e8P":["Grab it from Greenhouse"],"8F1i42":["Page not found"],"8FA-6e":["8"],"8FTOAQ":["Arrivals"],"8HB_Mv":["Uruguay"],"8JMx24":["Financial Services"],"8Kzhrj":["Shadow AI"],"8Q6aQg":["Complete security for AWS, Azure, GCP, OCI, Alibaba Cloud, VMware vSphere, Kubernetes, and Red Hat Openshift. Meet your new partner in cloud security."],"8QUKa_":["An AI bill of materials (AI-BOM) offers unparalleled visibility into AI assets,\n    including managed AI services and hosted AI technologies. It helps detect and track all AI usage\n    within an organization, removing shadow AI and allowing for real-time monitoring and identification of unexpected deployments."],"8R01bG":["AI triage reasoning"],"8SSSYW":["Our teams are here to help. Just message us and we'll get back to you."],"8Ws2EX":["Real world hacks"],"8XOFPe":["See full agenda"],"8ZpdJ6":["Bug Bounty Masterclass Certificate"],"8ZsakT":["Password"],"8_07i4":["Score \u003c0\u003e10/10\u003c/0\u003e to earn a shareable badge and to challenge your friends."],"8_iz-8":["Explore Wiz's cloud security Capture the Flag (CTF) challenges. Test your skills on real-world scenarios, and climb the leaderboard to prove your expertise."],"8_om3B":["Showing ",["shownTesultsLength"]," of ",["allResultsLength"]," results"],"8eTvwY":["Schedule a meeting"],"8ekUGZ":["The Maturity Playbook: From Noise to Risk Ownership"],"8f9k2R":["Detect and prevent risks agentlessly"],"8frGR7":["- November 17-19, 2025 -"],"8jgzUQ":["Explore module"],"8mDVah":["Download your guide"],"8nhjmD":["Deal Desk Lead"],"8pWbbV":["Our Customer Success Managers play a pivotal role. They work closely with customers, guiding them through Critical Views to spot and solve those standout personalized areas—what we call Critical Issues."],"8tjQCz":["Explore"],"8yad0h":["Yes, Wiz integrates with"],"9-7Icy":["What It Tests"],"91A-y7":["French Southern Territories"],"92POg5":["\u003e1M RECORDS"],"94-SyV":["We have automated response playbooks for common cloud security incidents."],"94XklJ":["APJ"],"9Aq5R5":["Link copied!"],"9AzAW_":["Featured resources"],"9BUc2M":["Online Services"],"9Bb_Un":["Watch the Wiz Cloud Product Demo"],"9CQ_Dq":["Well well… an exposed endpoint. Let's see how deep this goes."],"9D_3oS":["Unsure"],"9EW6c3":["Wiz customers can use pre-built queries prepared by Wiz Research and made available through the Wiz Threat Intel Center to check for any vulnerable or infected instances in their environment that are at risk of this threat or have already been impacted by it."],"9F1wvG":["Benchmark your Cloud Health in 2 Minutes"],"9FTolD":["Table of contents"],"9Iqild":["Tajikistan"],"9J7E_I":["We are working hard to maximize cloud security coverage."],"9NOkJt":["Learn how the Wiz platform operates."],"9NyAH9":["Skipped"],"9Q10mW":["AI Security in the Wild: Lessons from 2 Years of Hacking AI Infrastructure"],"9Qs6OS":["Start your guided tour"],"9X6cky":["NO"],"9Zcd7g":["Apply now"],"9anXEr":["661 Howard St, SF"],"9hYA6D":["Deep internal analysis"],"9jKy-T":["Qatar"],"9jth_o":["Your work email here"],"9kEOKZ":["Turkmenistan"],"9l3oEG":["View all events"],"9l4Hou":["AI-Powered code-to-cloud defense"],"9mMQqW":["Attack Complexity"],"9oJz0R":["A tenant isolation framework"],"9qjHuQ":["Schedule exam"],"9umCb1":["Sudan"],"9uxqj8":["Dominica"],"9xdNUU":["Work the Issue: An Interactive Talk with Twilio"],"A-ph3K":["NO, leaving right after lunch"],"A0CkYh":["Director of Security Operations"],"A1ET6E":["Japan"],"A1taO8":["Search"],"A2Sc38":["Thank you!\u003cbr/\u003eYour demo request has been received"],"A2Y0ak":["More Wiz platform solutions"],"A49wve":["Liberia"],"A5N9hj":["PST"],"A5x1bF":["We have visibility into AI pipelines on a graph."],"ACrBJM":["Start challenge"],"ADasb3":["New Zealand"],"AEGM8s":["Failed to copy"],"AEd2Vh":["Suriname"],"AF-of8":["Iran"],"AH9j3K":["Managers"],"ALGz5g":["wiz academy"],"AO5WCD":["Can You Beat"],"AOy6tw":["Wiz | Secure Everything You Build and Run in the Cloud"],"ARtLGZ":["Senegal"],"ASRVhM":["Integration support"],"AUA-bE":["Search a topic in #",["tagsQuery"],"..."],"AUdU-4":["A community-led vulnerabilities database"],"AVlZoM":["Environment"],"AWTW0f":["Enter your new password below."],"A_mOiS":["Check out more discoveries"],"A_oPBa":["CVSS Information"],"A_pB1f":["See what our users think about Wiz"],"AaBtvR":["Visibility on the Wiz Security Graph"],"AayhvS":["Stay an extra day for hands-on, instructor-led training designed for security, cloud, and ops teams new to Wiz. Learn the fundamentals, practice real workflows, and leave with the skills to run Wiz like a pro."],"AfnHru":["AI Threat Readiness"],"Aki20A":["Get in touch with our press team"],"AlHcGm":["Cloud security doesn't slow down. \u003c0\u003eNeither do you.\u003c/0\u003e"],"Alp2ti":["Contact Sales"],"AmGIGd":["Zimbabwe"],"An05wx":["The Wiz Partner Alliance brings together a global community of partners to help customers at every stage of their cloud security journey."],"AsvYrX":["Join the Battle for Cloud Security"],"AxOUqv":["Director of Cloud Security"],"AxPAXW":["No results found"],"B4APkg":["Wiz Blue agent"],"B5QQN2":["We've sent a verification link to"],"BDHA_i":["Severity"],"BLANOZ":["Have you integrated security checks into your CI/CD pipeline?"],"BLUN1d":["Last step, your guide awaits"],"BMoZsx":["Click the \"Register\" button to access the event page and complete your registration."],"BOiOxT":["Live training"],"BPrDhf":["Your registration has been submitted!"],"BQBr9J":["Signup failed"],"BRedd-":["No more results"],"BRgDuP":["Live webinar"],"BVxdhN":["Solve all challenges to claim your certificate!"],"BWq_fQ":["Investigate with full contextual lineage"],"BX0Gl-":["To watch the video recording, click the button below"],"BYXrKK":["Runtime protection and threat detection, built for the cloud and AI era."],"BbRvPY":["Turkey"],"BcmJ4H":["12:00 - 1:00 PM PT"],"BctO7b":["All Departments"],"BeBnuX":["As exposure and response cycles accelerate, a consistent operational framework becomes crucial for AI threat readiness."],"BgggcV":["See Wiz Defend in Action"],"Bhgd0l":["Contact us"],"BiiEBo":["Complete a 9-point Cloud Health Check covering identity, data, AI, workloads, and more"],"BkY4ex":["Wizlympics | The first cloud-security Olympic games"],"BnWtS2":["Equatorial Guinea"],"BpogXV":["Macao"],"BwJKBw":["of"],"BwpsSO":["Explore resources"],"ByfACj":["Watch how Wiz helps teams implement security fundamentals."],"BzEFor":["or"],"C-OF5a":["Take me to NYC"],"C14DWB":["YES, I'll attend Wiz Operationalization session"],"C24yIH":["The CVE Database: Curated Vulnerability Intelligence by Wiz"],"C3nD_1":["Enter your email"],"C4TjpG":["Read less"],"C61A7N":["Continuously simulates real attack paths across your cloud and AI stack to prove what's actually exploitable, eliminating theoretical noise and surfacing the risks that truly matter."],"C7UAQu":["Event agenda"],"C9G7k0":["Belgium"],"CAZuHR":["New York City"],"CBjjAj":["Djibouti"],"CCLCsx":["5x improved visibility"],"CCLZFV":["$3,000"],"CEYbzA":["Tuesday: Wizdom Conference - November 4th"],"CKH9xD":["We've sent a password reset link to your email address. Click the link to reset your password."],"CKyk7Q":["Go back"],"CTnAVz":["Protect"],"CUzFoe":["EKS Cluster Games"],"CVjFhA":["Tel Aviv, Israel"],"CVpVfX":["Join Wiz for an exclusive roundtable on AI Security, hosted by Yinon Costica, Co-Founder \u0026 VP of Product Wiz. This discussion will explore how organizations can securely adopt AI by protecting data, models, and cloud environments, while addressing emerging risks unique to AI-driven workloads."],"C_IDOH":["Morocco"],"CbhzW3":["Wiz connects \u003c0\u003ecode, cloud, and runtime\u003c/0\u003e into a unified context graph. Context enables teams to use AI to fix exploitable risks at the source, stop attacks in real-time, and start secure from the IDE – automatically and accurately."],"CcD0eu":["This page does not exist"],"CdkAkh":["Nominator last name"],"Chveds":["Slovakia"],"ClQWPi":["Non Profit"],"ClqsPp":["According to the Wiz Research team, managed AI services like Amazon SageMaker, Azure AI, and GCP Vertex AI are present in over 70% of cloud environments, showing rapid adoption of AI advancements by organizations"],"CmIlls":["This is your one-stop-shop for all Wiz events. Browse and register for upcoming sessions or catch up on what you missed with exclusive recordings."],"CoLvx8":["Download Sample Report"],"CrKa3g":["Not Exploitable"],"CuTqsZ":["Head of Cloud Engineering \u0026 Global Operations, Digibee"],"CulEIT":["Respond faster. Recover smarter. Wiz Incident Response help you investigate and contain threats with deep visibility into your cloud environment — with the expertise and the technology that allow you to take clearer, more confident action."],"Cuu1f5":["Master the fundamentals of web security, HTTP protocols, and bug bounty basics"],"Cv1hTD":["Mitigation and workarounds"],"Cwvvyj":["Sao Tome and Principe"],"Cx0xl3":["0"],"CyH1Uk":["Enter current password"],"Czj9_Q":["How Wiz helps: From Exposure to Code Fix"],"D-9sCU":["Explore the big topics"],"D1w_NY":["Improperly Configured Storage Buckets: Cloud storage services, such as Amazon S3 or Google Cloud Storage, are frequently misconfigured, leaving sensitive data exposed to the public internet. Misconfigured bucket permissions can allow unauthorized users to read, write, or delete data stored in these buckets."],"D8KOTi":["Party with us"],"D95o7a":["Has Public Exploit"],"D9OibU":["Open positions"],"D9PUqO":["Execute with excellence"],"DB42MM":["Don't just take our word for it"],"DB8zMK":["Apply"],"DCt5H5":["Monitor and proactively hunt for emerging risks and malicious activity in the cloud"],"DDg-aJ":["Get a prioritized view of CVEs in your cloud—so you can focus on what's exploitable, not just what's listed."],"DFmY0o":["Performance Map"],"DGOsc4":["One platform to defend your cloud"],"DHhJ7s":["Previous"],"DIyBvJ":["Wiz is like my right arm. It puts the data in context and helps our engineers prioritize and understand what they need to do."],"DLlfUW":["Get in touch and let us know how we can help."],"DMfsKi":["See issues in your environment"],"DQx7N-":["Rated #1 \u003c0/\u003e Security Product"],"DT62PI":["Resources Center"],"DW8Qym":["Wiz hosted party"],"DbKIFW":["Experts helping experts secure everything they build and run in the cloud."],"DfjKsL":["What's included with my registration?"],"DifJUP":["Read story"],"DlZXCa":["See our 200+ integrations"],"Do6-z9":["Sharpen your cloud hacking skills with hands-on challenges and real-world scenarios. Win certificates and build your cybersecurity reputation."],"DouLY7":["Flag accepted!"],"Dpf5-1":["The Wiz AI-Application Protection Platform provides end-to-end visibility and protection for cloud and AI systems across development, infrastructure, data, and runtime — helping teams understand risk and stop real threats."],"DqE4jO":["Certifications"],"Ds31xX":["2:35PM - 3:15PM"],"DuJDhB":["Contact our sales team"],"DveVb7":["Wizdom Happy Hour sponsored by WIN Partners"],"DwTYPM":["Mandalay Bay, Las Vegas, NV"],"DzFLzw":["YES"],"E-_jX2":["While you've taken some steps towards cloud security, there's significant room for improvement. Our team can help you identify and address critical vulnerabilities."],"E-oKCO":["Bio"],"E-uWPl":["Wizdom New York City"],"E0gBfW":["Cloud Risks"],"E1PtMw":["AI enables attackers to operate faster, and expands the cloud's attack surface"],"E1uLQV":["Test your cloud incident response skills"],"E2Jogt":["We are working hard to ensure robust and effective defense."],"E2sh8q":["Improved Cloud Resilience"],"EAMscJ":["On-demand webinar"],"EAW1Lq":["Partner Alliance Directory"],"EAjkwT":["Chinese Taipei"],"EDl9kS":["Subscribe"],"EF2EU9":["Deleting..."],"EHzhUK":["$27,500"],"EKhTEp":["Red Agent: Offensive Validation"],"EMFGgx":["Americas: Tuesday, October 25th at 11:00am PT"],"ENCIQz":["Copy Link"],"EO3Iys":["Learn advanced techniques for discovering vulnerabilities and mapping attack surfaces"],"EX-AsW":["What our customers say about us"],"EYzAvW":["Ready to test?"],"EZ0G5F":["View all episodes"],"E_CKn7":["Denmark"],"EajEro":["For practitioners"],"Efyn7M":["EKS CLUSTER GAMES"],"EgjrTA":["The Big IAM Challenge"],"Eh7Dql":["United Kingdom"],"EhVf8r":["Aug 4-6, 2026 | Mandalay Bay, Las Vegas"],"Ejxlz8":["What to expect during your cloud assessment"],"EkH9pt":["Update"],"EmSrGB":["Before"],"EnlDjT":["Built by"],"EohRSf":["Discover how our customers have done it and made it to the Zero Critical Club"],"EpDN0Z":["AI, Hype \u0026 Hard Truths"],"Eq6YVV":["Score"],"EqyJpD":["Only Session 1: For Practitioners (Starts at 11:00 AM)"],"Erc_5r":["Yes — all main stage sessions will be recorded and shared with registered attendees after the event. Breakout sessions and workshops will not be recorded, so we recommend attending those live."],"EvMHKu":["March 23-26, 2026 | San Francisco, CA"],"F-UL9Q":["This text should be machine translated by Crowdin on preview branches."],"F-hShR":["Identify"],"F3bW6y":["Platform"],"F7G_TS":["Frequently Asked Questions"],"FAc06C":["Help shape how the industry secures the cloud, together"],"FAzNb9":["12:00PM - 12:40PM"],"FCVmuU":["View Event"],"FEberd":["Join Wiz and our sponsors for an unforgettable evening of great conversations, refreshing drinks, and delicious bites in a lively setting with fellow security professionals."],"FMJObl":["Effectively eliminate your most critical cloud risks with a unified platform that protects your sensitive assets"],"FMzbE0":["We are working hard to maintain industry leading Security Score."],"FOnEnu":["Opening Keynote - Welcome to Wizdom"],"FOveL4":["Event ended"],"FP7W1v":["Wiz Cloud and AI Security Platform"],"FQQZ0L":["We are working hard to maintain a strong compliance posture."],"FUoLTn":["Browse and register for upcoming sessions or catch up on what you missed with exclusive recordings "],"FVCbaA":["We can automatically discover and classify new cloud resources as they're created."],"FVSg0U":["Join us in New York City"],"F_A3J3":["We scan application code for library-based vulnerabilities."],"F_qcX8":["We are working hard to manage key permissions and access."],"Fax4U2":["Belarus"],"FcQm2a":["2025 Cloud Threatscape"],"FgAxTj":["Log out"],"Fis8i8":["Saint Lucia"],"FkMol5":["Featured"],"FrBQGv":["Dominican Republic"],"FvET-4":["Use cases"],"FvaybE":[["fullName"]," Posts"],"FwimNc":["Syrian Arab Republic"],"FxVG_l":["Copied to clipboard"],"FzMr5e":["Complete Registration"],"FzcW3P":["Special Guests"],"G7i2oI":["Breach at CISOtopia CTF"],"G7r4Oi":["Honduras"],"G9cT_8":["$12,000"],"GBGf6U":["Pakistan"],"GCXM0p":["Show some love on LinkedIn"],"GHfVLU":["Country code is invalid"],"GMZEb7":["Now, please provide your work email"],"GNMwJi":["Stop by the\u003c0/\u003eWiz Agent Lab"],"GTOXKV":["Bhutan"],"GU_sPP":["0 Click Account Takeover via Cookie Switching"],"GVk5gs":["Cloud Risk Research"],"GbPed4":["Admission Accomplished: Operationalizing the Admission Controller at Wiz"],"GdPDOm":["Tokyo, Japan"],"GfMof5":["Path-Man"],"GfWq0U":["We are working hard and achieved zero critical security issues."],"GfduF4":["Neglected Identity and Access Management (IAM): Misconfigurations in IAM policies can result in users having more privileges than necessary. This can lead to unauthorized actions and data exposure. Overly permissive policies are a common mistake in cloud environments."],"GlZz0r":["Sin Maarten"],"GmLBDo":["Americas"],"Gmw02A":["Trick the AI Chatbot into giving you a free flight ticket"],"Go1eCf":["See the full picture when Wiz is in town"],"GrFjNy":[["customerName"]," case study"],"GtZRtG":["Wiz is the unified cloud security platform with prevention and response capabilities, enabling security and development teams to build faster and more securely."],"GvoVVq":["BREAKOUT SESSIONS"],"GxIpIO":[["countOfSelectedValues"]," labels selected"],"Gxl-ZV":["Turks and Caicos Islands"],"Gy7kpn":["The evolving attack surface: With every passing day, cyber threats targeting cloud infrastructures become more sophisticated. Gone are the days when basic firewalls and antivirus software were enough to keep companies protected. Today, attackers employ advanced techniques like zero-day exploits, ransomware, and phishing attacks tailored to cloud environments. A proper cloud security assessment is a critical tool that helps you stay one step ahead of these threats."],"Gyc_04":["Ukraine"],"GzPQ2f":["Stay in the loop"],"H-Czwa":["A historical collection of past cloud security incidents and campaigns, offering insights into targeting patterns, initial access methods and effective impact."],"H1-xcr":["Each percentage represents the agent's success rate in correctly identifying and solving the security tasks in that category."],"HENxj0":["Share your experience from Wizdom"],"HF6C2L":["Phone Number"],"HFdfAu":["minute read"],"HFyYn0":["My team won the Container Custodian Achievement"],"HKH-W-":["Data"],"HKZDAB":["Cook Islands"],"HK_rDw":["Contact our Sales Team"],"HL4Uk9":["Learn how some of the world's most forward-thinking companies protect their cloud"],"HQfO_p":["Posts tagged #",["tagName"]],"HR2Q83":["Zero Critical Club"],"HTFZeF":["Nauru"],"HVWbA5":["We've sent you a password reset link."],"HbNtwZ":["Resolve cloud issues 10x faster by suggesting remediation at the correct place in the source code."],"HgfQva":["Algeria"],"HgsdQn":["One or more fields are invalid"],"HjYdjx":["What is a cloud security assessment?"],"HlzQOZ":["Effective tenant isolation ensures that different users' data and workloads\n    are securely separated, preventing unauthorized access. Implement rigorous privilege management,\n    encryption, and authentication measures to maintain distinct and secure boundaries between tenants."],"HmYN4K":["Cookie policy"],"Hmak0W":["Affected technologies"],"HxER15":["We're looking for new stars to join our growing global team at Wiz. Help us empower organizations to supercharge their cloud security."],"Hzioj4":["Career Milestones \u0026 Missteps"],"Hzowbt":["Intercept and manipulate web traffic to uncover hidden security flaws"],"HzxnjL":["Github Authentication Bypass on Major CRM"],"I0CcFU":["We couldn't find the role you're looking for at Wiz. Check back often as new positions open up frequently."],"I1gWZ6":["Download the latest Wiz collateral materials for this event"],"I6Mjue":["Meet the team"],"I7_a6b":["Popular filters"],"I9haHH":["Our first-ever user conference."],"I9pHws":["March 24th"],"IAwvQM":["Rwanda"],"IJYW1Y":["The Wiz way"],"IN83ih":["Wiz MVP Program "],"INgjXL":["Celebrate the extraordinary feat of reaching zero critical issues in their environments"],"IRxeuC":["You were right"],"IS--Lb":["Wiz House,"],"IS7Ppl":["Connect with peers"],"IST4ql":["Nominee full name:"],"ITG_vC":["Keynote"],"IV-49r":["MAINSTAGE"],"IVKbxD":["Cloud security fundamentals and best practices"],"IbYr_u":["Content type"],"IeLU_k":["Connect with an expert"],"IfFTR7":["Podcast \u0026 newsletter for cloud security pros"],"If_COr":["Get Report"],"IgrLD_":["Pause"],"Ija6SC":["Estonia"],"IoAuJG":["Sending..."],"Ireenz":["A comprehensive resource for monitoring high-profile vulnerabilities in cloud environments, tailored for security teams and cloud professionals"],"ItTmwl":["We can customize classification rules."],"ItzUoz":["6"],"IvpQKd":["Made by Wiz with love"],"Iw7UoY":["Saudi Arabia"],"IwXxWT":["Montserrat"],"Iwq-3h":["Join Wiz for an exclusive roundtable on Cloud Detection and Response (CDR), hosted by Arie Zilberstein, VP of Cloud Detection \u0026 Response at Wiz. This session will explore emerging threats, best practices for detection, and strategies for rapid response in modern cloud environments, with insights drawn from real-world experiences."],"IxwF3F":["AI Agents Never Sleep: Threat Investigation at Scale"],"Iz-MLR":["Set key metrics to track and report to stakeholders"],"J1GTIj":["AI security resource center"],"J28zul":["Connecting..."],"J3V4yP":["Bolivia"],"J46oNl":["Find exploitable exposures before hackers do"],"J6CuRE":["Data Security and Privacy"],"J6PdvT":["Mexico"],"J8vOtp":["- November 3-5, 2025 -"],"JFoZVz":["Join us this fall for our first user conference, where you'll:"],"JJ-vfH":["South Africa"],"JJGSk3":["We can enforce security policies on our Kubernetes clusters."],"JJrPCP":["We utilize agents for vulnerability management."],"JMghBl":["See how Wiz can secure your cloud with our interactive guided tour."],"JNCzPW":["Country"],"JQsvLm":["Vulnerability Research"],"JRQitQ":["Confirm new password"],"JSCsj4":["Benefits of Wiz Cloud"],"JTqZyc":["A conversation with leaders from DeepMind, Anthropic, Irregular and Wiz, followed by Neurons \u0026 Negronis, a happy hour."],"JUpQ52":["We can automatically detect and prioritize security risks across our entire cloud estate."],"JZv5pe":["Confirm RSVP"],"JbNb-6":["Booth #2148"],"JcJnn-":["Christmas Island"],"JcnjCu":["Wiz Threat Intelligence Overview"],"JdO0zq":["Integrations and Automations"],"JgN_Ij":["7:30 PM PDT"],"JgO-NS":["Has CISA KEV exploit"],"JimD7U":["Get a CVE risk assessment"],"JmxT4l":["Please enter a valid last name"],"Jnfm0u":["Get a closer look at how Wiz Cloud uncovers hidden risks in your cloud and helps you prioritize what matters most."],"JrjIRv":["Morning Keynote: Future of Cloud Security with Wiz: Vision \u0026 Roadmap and special guest speakers"],"Js6QXT":["Connect in minutes without agents"],"Jt7-j-":["Play Again"],"Ju4XwE":["Brunei Darussalam"],"JuaoGV":["Congratulations! You solved the puzzle!"],"Jy7BoA":["Train your team"],"Jy8Wxs":["Your plus one's full name"],"JyOn6x":["All partners"],"JyvG9o":["General Purpose Agents"],"K1IeRO":["Culture, Teams \u0026 Trust"],"K3AFmY":["Discover hands-on tutorials, expert-led sessions, and actionable guides designed to elevate your cloud security expertise."],"K42cxp":["1"],"K5Dgu_":["Databases"],"K6bZRM":["Myth #2: Nobody knows how to secure AI"],"K7tIrx":["Category"],"K87L7n":["Perform deep AI code analysis"],"K8OewH":["Nice reference for the team's security onboarding"],"KFZkp_":["One of our team will be touch shortly to arrange your personal demo of Wiz."],"KFcH5f":["How can we help you today..."],"KLylDc":["We know that if Wiz identifies something as critical, it actually is."],"KNF25N":["Security Advisories"],"KN_zht":["Your results"],"KRkiIq":["Share your Wizdom"],"KS75kV":["Wizdom London"],"KSvADh":["By Use Case"],"KTpaaG":["Explore the Vault of Digital Safety and Trust for your data."],"KWbjFX":["Trusted by more than 65% of Fortune 100 companies"],"KYPp2s":["Wiz secures \u003c0/\u003ethe AI frontier"],"KZNgAI":["Enjoy great conversations, delicious bites, and refreshing\n                  drinks."],"K_LU4F":["Wiz Integration (WIN) platform enables bi-directional sharing of security findings across the cloud security ecosystem to reduce risk, improve efficiency and enable an open cloud security ecosystem."],"K_YU1o":["An email has been sent with instructions on how to proceed."],"K_qaPb":["Learn about our partner ecosystem"],"KbS2K9":["Reset Password"],"Kc-tVP":["A Look Back at Wizdom London Highlights"],"KcjCpu":["Defend to MCP - Investigation Workshop"],"KdQjUs":["Application workload"],"KeJQPi":["In-person"],"KevOdr":["Uganda"],"KgI26I":["Since you cracked our challenge, drop your info below and we'll make sure you get some magic sent your way - a gift card from us at Wiz."],"KgKeSZ":["Paris, France"],"KhHo1q":["In Partnership With"],"KiWbsf":["Secure every layer of an AI-native application across the entire AI development lifecycle at machine speed."],"Kip09k":["Connects to your code, cloud, and AI to give complete visibility"],"Kk2it6":["Partnership Overview"],"KlUFEx":["The cloud security platform behind hundreds of businesses"],"Ko2cXU":["Emerging exploitation of vulnerabilities and misconfigurations in the cloud"],"KsOtXe":["Jump back into discussions on Slack or the online experience"],"KuSDAk":["Try another search maybe?"],"Kw28nq":["Connect with the community shaping what's next"],"KyWFs-":["Idan Pinto"],"Kz_PtO":["\u003c0\u003e\u003c1\u003e\u003c2\u003eFor the first time, defenders can move as fast as attackers - without sacrificing precision or slowing innovation.\u003c/2\u003e\u003c/1\u003e\u003c/0\u003e"],"L-kdv6":["Code-to-Cloud Visibility: The New Foundation for Modern Appsec"],"L-qiq-":["Market"],"L0Dcej":["Partner Alliance"],"L0SnmV":["Start assessment"],"L28Iu8":["Reduce effort to find and remediate risk with a prioritized queue of risk and guided remediation steps"],"L5xv0Z":["View next solution"],"L6PDR0":["Guided Tour"],"L6X_nR":["Clothing Size"],"L9L6uB":["Vice President / Head of Information Security"],"L9QEDr":["Inside Sales"],"LC1E-y":["DETECT AND BLOCK"],"LCesve":["10"],"LCps1s":["Cloud Security Risk Assessment"],"LDF_Hb":["Bringing a plus one?"],"LDRrpK":["Your cloud \u0026 AI\u003c0/\u003esecurity HQ"],"LGTykh":["Wizdom: London Agenda"],"LGvion":["High Profile"],"LHGEs5":["Join the Wiz MVP Program"],"LMMGPr":["Submitting..."],"LOE_ZR":["Please reach out to wizdom2025@wiz.io and we will remove you from our registration list."],"LP3v5x":["Join us to chat about building secure AI applications and exploring cloud security."],"LPCROk":["Who should attend Wizdom?"],"LPEMpH":["Go deep on our roadmap, research, and where we're headed next."],"LQRngI":["My team won the Compliance Guardian Achievement"],"LQsECg":["Wiz's CVE Database curates CVE data to create easy-to-navigate profiles that cover the entire vulnerability timeline, exploit scenarios, and mitigation steps."],"LRrNpt":["Speaking Sessions"],"LSZXlf":["Precise Detection"],"LToFQm":["Maldives"],"LUdx_M":["Schedule a demo"],"LVfDRN":["For each finding, choose a verdict: \u003c0\u003e“Exploitable”\u003c/0\u003e, \u003c1\u003e“Not Exploitable”\u003c/1\u003e, or “Inconclusive”."],"LXCDAa":["Detect hidden vulnerabilities in your cloud"],"LXHJRq":["Share on LinkedIn"],"LY9YnB":["Logging in..."],"LZ93tU":["Your resource is ready."],"LZFxxH":["Liechtenstein"],"L_M5hP":["Already completed"],"L_ydrp":["7:30 PM"],"LcET2C":["Privacy Policy"],"LdEPgp":["Certificate generated!"],"LfWFUw":["Has fix"],"LjH4J3":["Share Insights"],"Lpqkjx":["Wizdom: New York Agenda"],"LvzDBp":["Will sessions be recorded?"],"LwHB-O":["The Prompt Airlines AI Security Challenge"],"Ly2t6e":["The overall score is the macro-average across all five categories"],"M8_5Do":["Cloud Security Podcast"],"MBr5oF":["Wizdom: London Info"],"MDY7oJ":["Detect real and block exploitation attempts"],"MFljzs":["Italy"],"MJ2mX2":["9:00 - 10:00 AM PT"],"MJgG71":["Get The Cloud Security Strategy Guide"],"MMDwiM":["What's your verdict?"],"MY8ukv":["Join Wiz and our sponsors for a memorable party during RSAC\n                  2026!"],"MdoXmm":["Threat Example"],"MefUT7":["Published date"],"MhCc7B":["Colombia"],"MhMF2H":["Open Deepseek Database"],"MitjTS":["All vulnerabilities"],"Mj2Olm":["Security with a splash of Magic"],"MjhPR-":["The BIG IAM CHALLENGE"],"Mkx53P":["Aerospace"],"MnouSz":["Let's meet at RSAC"],"MoCbXu":["Secure cloud depends on a strong community. The Wiz Research team regularly shares research and resoruces with not only Wiz customers, but the security community as a whole."],"MoJaOO":["10 code snippets. Guess the security verdict. \u003c0\u003eHuman vs. AI – Let's Play!\u003c/0\u003e"],"Mp0TCF":["Threat Detection \u0026 Response"],"Mpmkw0":["Antigua and Barbuda"],"Mqy_Zy":["United States"],"MrYvHk":["Open search filters"],"MrZafN":["Assigns the right owner (team, repo, service)"],"MsTUgs":["Tunisia"],"MtZ4ZX":["Ecuador"],"Mv079I":["Tap into real-time support and peer insights across channels for every use case."],"N07tDa":["XS"],"N0V8G3":["Compliance and Governance"],"N0qXpE":["Products"],"N1X4DU":["Please insert a valid corporate email address"],"N1sRjv":["Lao People's Democratic Republic"],"N2fPNo":["Trusted by industry leaders"],"N3DRtY":["The numbers"],"N3hvtG":["Myanmar"],"N40H-G":["All"],"N6kXss":["Bangladesh"],"N9Jdlj":["Remove blind spots and improve efficiency to detect and respond to cloud risks faster."],"NAgzuq":["\u003c0\u003eThat approach doesn't scale in the AI era\u003c/0\u003e \u003c1/\u003ewhere applications change constantly and \u003c2/\u003eattackers use AI to analyze code, infrastructure, \u003c3/\u003eand runtime as one system to find a path in."],"NCBDr7":["Gibraltar"],"NCEma6":["We scan images and code for exposed secret values prior to deployment."],"NF6yj_":["Vice President of Engineering"],"NFLaUm":["Follow Wizdom on Slack"],"NGZrWo":["Watch all sessions"],"NGditG":["Egypt"],"NHRicO":["Contact us to get expert support or learn how to prepare before an incident strikes."],"NHhXUh":["Regenerate Certificate"],"NIzF1K":["Find all upcoming events, webinars, or opportunities to meet fellow community members."],"NJB26P":["Supply chain vulnerabilities"],"NJIj2Q":["WIN Partner Index 2025"],"NJPvKl":["Fuel your growth, scale your impact, and build a safer cloud together."],"NJTHFH":["Wizdom Capture the Flag challenge"],"NLBmwk":["Correct!"],"NLwHSX":["Trusted Sounding Board"],"NO-MpB":["Newsroom"],"NT-oT0":["See how Wiz turns cloud security fundamentals into real-world results."],"NToZrj":["Complete all security courses? Ready to master the Wiz platform? Join our comprehensive training program to accelerate your cloud security journey and maximize your use of the Wiz platform."],"NUrY9o":["Categories"],"NYo-Xw":["Past events"],"N_CKez":["We scan code and repositories to detect risks."],"NawEr2":["After"],"NbeF1m":["Plus one apparel size"],"Ne-1ZI":["Tuesday: Wizdom Conference - November 18th"],"Ne2RXI":["My team won the Post-Quantum Sentinel Achievement"],"Nf6ofo":["Manipulate the airline's customer service AI chatbot to get a free ticket"],"NgNAlL":["Step ",["currentStep"]," of ",["totalSteps"]],"NgaR6B":["Enter your password"],"Ngc-di":["Increase efficiency"],"Nge1WD":["CTO/CIO"],"NihQNk":["Customers"],"NjqT0h":["Referral id (optional)"],"Nk8gRW":["A unified platform consolidating all the tools you need"],"Nlp-jM":["Venezula"],"NqpJ4V":["Step ",["currentStepCount"]," of ",["stepsCount"]],"NsY3PW":["Do you have any dietary restrictions?"],"NtSOQ0":["Cloud Security Resource Center"],"Nv8bxc":["Wizdom is built for the people on the front lines — the builders, defenders, and leaders driving cloud security forward."],"NwMdRy":["AI Security Resource Center"],"Nxhgv_":["Visit Marketplace"],"O-ckU1":["Agent verdict"],"O1txz1":["Get a Personalized Demo"],"O3oNi5":["Email"],"OCfl1n":["Isle of Man"],"OG2g7H":["Error loading more items"],"OGtio_":["Investigate"],"OHdPZD":["Wrong ID"],"OHxwzx":["Sponsored by"],"OKOh_2":["Norfolk Island"],"OPMmco":["Download full report"],"OUUlO8":["Panama"],"OVrih8":["Guatemala"],"OXanGY":["Certificate link copied to clipboard."],"OYHzN1":["Tags"],"OZ8IBB":["We can detect misconfigurations in our cloud services and infrastructure as code."],"O_7I0o":["Select..."],"Oa-aaa":["Each agent-model-challenge combination is run 3 times (pass@3 — best result across runs is taken per challenge)"],"OdahP4":["User Interaction Required"],"Oec0x9":["Code and Defend in Practice: Rapid Fire Customer Insights"],"OfhWJH":["Reset"],"Oi-sHy":["Already a partner?"],"OigmPY":["Guided tour"],"OigxPq":["Spain"],"OlAl5i":["Expand all"],"On2Vs4":["Investigate novel cloud threats through AI-assisted threat research and modelling"],"OnXE_8":["You've completed all challenges – good job!"],"Oo6vLv":["View story"],"Oqt-3C":["Vulnerability Database"],"OtSx42":["Cote d'Ivoire"],"OtjenF":["Please enter a valid email address"],"Owm8iR":["Great work completing this challenge."],"P-JtrJ":["Wiz Product"],"P0avFZ":["My team won the Zero Code Critical Issues Achievement"],"P0hUT2":["Wiz MVP Program"],"P2GDaA":["Cloud Fundamentals"],"P2JfQI":["Runtime protection and threat detection"],"P2lHSk":["In Collaboration With"],"P4DkSa":["5 min | on-demand"],"P5lWAL":["This is your one-stop-shop for all Wiz events. Browse and register for upcoming sessions or catch up on what you missed with exclusive recordings"],"P7k2N-":["Brazil"],"P8fBlG":["Authentication"],"P9n7Vl":["Beyond the Buzz: How AI Is Actually Transforming Modern Security"],"PAgLp2":["Become a member"],"PDb0Ka":["Enter your email address and we'll send you a link to reset your password."],"PDi3Tz":["Sponsors"],"PE5vOp":["Gabon"],"PEJp4w":["Attackers had just made off with tens of millions of dollars in cryptocurrency. The victim had no clue how this could have happened. In this briefing we'll walk through the incident response effort and reveal the unique investigative techniques used to unravel the attack. We'll expose the full scope of this extraordinary caper and share key takeaways for defenders facing the growing threat of targeted multi-cloud attacks."],"PIqA8m":["Automatically turns risks into code fixes - opening PRs to fix issues at the source and helps write secure code from the start."],"PJgfBS":["3"],"PJz90P":["Vulnerabilities by the numbers"],"PMBwR0":["My team won the Security Score Vanguard Achievement"],"PMRSqx":["Please check your inbox and click the link to activate your account."],"PMlYL5":["The best part about working here is the people. I love working with all of the incredible teammates that support me, challenge me, and make me smile. I don't think you'll be able to find a better team anywhere else, because the best team is here."],"PONba7":["Agenda at a Glance"],"POnIT7":["Integration overview"],"PSGjEt":["Terms of Use"],"PSrCUT":["Your team's force multiplier: Specialized AI agents that work together to eliminate manual toil and accelerate every phase of the security lifecycle."],"PUC5TZ":["Join us to future-proof your security\u003c0/\u003eoperating model for the AI era"],"PUqCam":["Creating account..."],"PWDc97":["AI risks, SOC transformation, dev collaboration — we're digging into it all."],"P_15q2":["The Agent Count Off"],"P_sRfa":["1:30 - 2:30 PM PT"],"Pc0mW3":["Most frontier AI labs rely on Wiz to secure their cloud, AI workloads, and the data powering next-generation innovation."],"PddkeR":["Final Results"],"PeBC7B":["Why get certified?"],"Peo0sq":["We can generate compliance reports on-demand for audits."],"PeonZo":["To watch the video recording, complete the registration"],"PiH3UR":["Copied!"],"PlA0tk":["All incidents"],"Pls7ft":["French Guiana"],"Pn2B7_":["Current password"],"PqQb5v":["Security \u0026 Strategy: No Spin"],"PrpNI2":["Wiz Research were the first to detect signs of an ongoing campaign targeting the popular Selenium Grid service, infecting exposed instances with malware."],"Pw3pGz":["Tanzania"],"Py6p3A":["Download Badge"],"Q1z-EV":["Our Sponsors"],"Q2M5v0":["Identifies the right place for the fix"],"Q3MPWA":["Update password"],"Q8HvdN":["Wiz Code: Secure Cloud Development"],"Q8QNmU":["Cloud vulnerabilities"],"Q8ZtgG":["Tiago Bernardinelli"],"Q90Dq4":["Learn Cloud Security"],"QC4Y_R":["Cloud and AI Security require a new approach"],"QD4627":["Wednesday, August 5, 2026"],"QP-FZu":["Recorded Demo"],"QQ-p2b":["Discuss your security goals"],"QSZYwx":["Kenya"],"QVJioo":["Register for event"],"QWbEQu":["AI Security, How Wiz Protects AI Applications Roundtable"],"Q_IivK":["No AI-Zone"],"Qczd1_":["Meet the agents"],"QeKGx6":["Australia"],"Qeie0I":["Reconnaissance"],"QfP6m5":["Wiz Secops MCP Workshop"],"QkRPZH":["Get answers, fast"],"QnPVvN":["We can detect malicious models."],"QocxHi":["I just beat the Wiz Triage Agent with a perfect 10/10 on the Wiz Triage Challenge! Can you?"],"Qoq-GP":["Read more"],"QpI0Rm":["Impressive work on your cloud security posture! While you're ahead of the curve, consider partnering with our experts to identify remaining blind spots and implement targeted strategies to address evolving threats."],"QuY9hS":["Case study"],"Qv3Upd":["No AI Zone"],"QyNXn9":["K8s LAN Party"],"R-LLD6":["We are working hard to maintain robust Container and K8s security."],"R18YGl":["We can automate reporting on data regulatory compliance."],"R2SGef":["Fix it faster. Build it once, build it right."],"R2lUAl":["MVP Program"],"R3FsF4":["Download failed"],"R4ELBp":["Subscribe me to the Wiz blog digest emails"],"R78vCF":["4XL"],"R7RZI3":["WIZ PRODUCT ROOM"],"R9v_zg":["Trinidad and Tobago"],"RAnQGS":["Learn more about Wiz SAST"],"RBgm2N":["Used Wiz with DevOps project management tools to prioritize risk and view security findings at a high level.\u003cbr/\u003e\u003cbr/\u003eintegrated monitoring and discovery into DevOps workflows, enabling security without slowing organizational progress"],"RCIFEd":["November 18"],"RDQpdM":["The Wiz Certified program recognizes your cloud security skills and helps you stand out in the field. Our expanding portfolio of exams are designed by experts to ensure they're relevant, rigorous, and respected."],"RJYL1q":["Retail"],"RLFbbJ":["Wizdom: New York City"],"RM8Yed":["Come Make Some Magic at Wiz"],"RMOKHS":["My team won the Vulnerability Vanquisher Achievement"],"RQH48f":["Guides, announcements, and articles about Cloud Security and the Wiz platform."],"RS0o7b":["State"],"RStjM1":["Wiz Platform Keynote: Powering Up the Cloud Operating Model with AI"],"RVXXLy":["Your password has been changed successfully."],"RVqAw7":["More episodes"],"RXbEvi":["Updating..."],"RYccUD":["Privilege escalation"],"RbwuDW":["The Wiz Runtime Sensor"],"RcIP9J":["Start Secure \u003c0/\u003eFrom Code."],"RfwZxd":["Reset password"],"Rhcdj_":["China"],"RhsiXw":["WordPress"],"Rkx7gz":["Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses."],"Rm1gZh":["Get a personalized demo"],"Rpo5E2":["Tallying your verdicts…"],"RsRRw3":["Peru"],"RtHGDr":["Canada"],"RvSL0f":["3XL"],"RxASDd":["Executive Dinner"],"Ryrdlg":["Wiz Events | Cloud Security Webinars \u0026 Events"],"S4eumx":["Wiz connects code, cloud, and runtime into one agentic cybersecurity platform. Prevent risk, detect threats, and start secure – across every cloud and AI layer."],"S84i1o":["CISO, esure"],"S8gy7K":["Industry"],"SBt5Nl":["\u003c0\u003eWant to join us in NYC?\u003c/0\u003e\u003c1/\u003e \u003c2\u003eCheck it out here\u003c/2\u003e"],"SHcKyP":["See open positions"],"SJrrQx":["Wiz Issue Example"],"SMwD6s":["L"],"SMya4Q":["Improve MTTR and resolve threats 10x faster with AI automation for triage and response, informed by complete context and built into your workflows."],"SNQEUJ":["Austria"],"SQIIL6":["Community reactions"],"SRy70x":["Cape Verde"],"STJz1y":["Share on X"],"SWGFe1":["Comprehensive Threat Modeling"],"SYhefG":["AI researchers often share massive amounts of external and internal data to construct their AI models,\n    which poses significant security risks. Security teams must establish clear guidelines for sharing AI datasets externally.\n    The Wiz research team discovered 38TB of data was accidentally exposed by Microsoft AI researchers.\n    Using a dedicated storage account for public AI datasets could've limited exposure."],"SYvsca":["Learn what services connect with Wiz platform"],"SehceE":["Learn directly from Wiz experts in hands-on sessions and leave smarter than you came."],"SfEHfO":["Write a review on Gartner"],"SfMjSS":["Continuous and thorough security audits can help identify and mitigate potential\n    vulnerabilities in AI infrastructure. These audits should include penetration testing, vulnerability assessments,\n    and code reviews to uncover and address security weaknesses."],"ShQXgV":["Featured research"],"ShbDuS":["Subscribe Now"],"SjhaXQ":["Ethiopia"],"Skgujn":["Privileges Required"],"Sl06bB":["Hear what the world says about us in the news"],"SlfejT":["Error"],"SlqngO":["We only use cookies that are strictly necessary for the operation of the challenge."],"Sn-yiv":["Related ",["firstPrimaryAffectedTechnology"]," vulnerabilities:"],"SoYAbX":["What types of misconfigurations will a risk assessment uncover?"],"SoiZi4":["Join thousands of security researchers who have mastered bug bounty hunting"],"SppEOh":["Start assessment "],"SqxkdK":["The content in this page is licensed under the \u003c0\u003eCreative Commons Attribution Share-Alike 4.0 International License\u003c/0\u003e"],"Svzmvl":["Personalized for your team"],"SyamHc":["Don't have Slack? No problem!"],"SzoGEE":["Pay attention! You are viewing a draft version"],"SzwIaR":["Read full report"],"T6MzB-":["Not a customer? See how Wiz maps CVEs like this one to real cloud attack paths."],"T72F04":["Win together"],"T7foaC":["Optimal"],"T8zzmJ":["Dietary Restriction"],"T91vKp":["Play"],"TDAbIp":["Oman"],"TFvbe8":["Prevent Cloud and AI Risks"],"TIR_Mh":["How Fiverr reduced critical vulnerabilities to zero with a collaborative security program?"],"TJ7HQl":["Find a partner"],"TJMltH":["Subscribe me to the Wiz blog digest emails."],"TK0_UD":["Intro Questions Across Key Areas"],"TKFUnX":["Account deleted"],"TKdIxQ":["Engage in the Community in the way that works best for you, either in Slack or on our Community website. Both options offer the same content and conversations, so you can stay connected wherever you prefer."],"TL4249":["Partner directory item overview"],"TNKfnM":["Engineers"],"TPkCre":["Test your security skills against the Wiz Triage Agent. Review 10 real code snippets, identify vulnerabilities, and race the clock to prove that human expertise still reigns supreme in AppSec. Play now!"],"TYkmnh":["Integrations are essential to modern cloud security. Get a data-backed view into which ones organizations rely on to power their cloud security ecosystem."],"TbjyhA":["Docs"],"Te7PkZ":["Inventory \u0026 Visibility"],"ThK7iX":["Wizdom: Our first-ever user conference"],"TkUd-X":["Vendor advisory"],"TmYs8_":["Wiz Blog | Latest stories about Cloud Security"],"Tmu3kA":["M"],"TnVKFW":["Miles Silva"],"Tq2xei":[["name"]," integration"],"TqaVLp":["Surfaces cloud context to drive down Mean Time to Respond (MTTR)"],"TutxXj":["Affected Technologies"],"TvIV_c":["Access our free database of real-world cloud security incidents, threat actors, and attack techniques. Stay informed about the latest threats and learn from industry experiences."],"TvY_XA":["Documentation"],"TvnSrh":["Hands-on training"],"U2mFcW":["Macedonia"],"U2srSX":["We can correlate all risks found in our cloud, code, and runtime."],"U2tMC_":["Unfortunately, the role you're searching for is either unavailable or no longer exists. We encourage you to revisit frequently, as we regularly update with new positions."],"U4dvUB":["The Cloud Hunting Games"],"U7VLeS":["Crying Out Cloud"],"U8vvd7":["Join Wiz and our sponsors for a memorable party during RSAC 2026! Enjoy great conversations, delicious bites, and refreshing drinks."],"U9ZJ4w":["IOCs"],"UAiB63":["Remove Risks Anywhere You Build"],"UDY_Fo":["See the full post on"],"UDrmmr":["No results found..."],"UEAlAo":["About Wiz"],"UFzqd-":["Useful resource security engineers"],"UL8A9w":["Tag"],"UMSdcb":["Take me home"],"UNMVei":["Forgot password?"],"UOmMq6":["See the integrations in action"],"UPqS9C":["Health"],"UQ-2XC":["Real example"],"UQQFEp":["All resources"],"UWHEkW":["Work email"],"UW_6un":["Cloud Security Job Board"],"UXBCwc":["Last Name"],"UXuJ-k":["Join us for an insightful Customer Roadmap Session hosted by our co-founder and VP of Product, Yinon Costica. In this interactive session, Yinon will share our strategic vision for the future, highlight upcoming product developments, and gather your valuable feedback to shape our roadmap."],"UYVvKc":[["fullName"]," Articles"],"UYw39m":["Kuwait"],"UZiE9X":["Hacking with Web Proxies"],"UdFjm1":["This field is required to continue"],"UiQIO1":["Share your voice at Wiz events, and customer webinars"],"Ul0Z6t":["For information about how Wiz handles your personal data, please see our"],"UqOu5K":["Direct access to experts"],"Uv5Q5s":["See what our customers have to say about Wiz"],"UvweMH":["go to slide ",["slideNumber"]],"Uz2nyI":["A new operating model for AI-era security"],"V-D_YP":["Careers"],"V-Y2mD":["Bermuda"],"V1EGGU":["First name"],"V1nPjV":["Wiz Projects"],"V3B1wW":["We are working hard to protect and safeguard our critical and exposed secrets."],"V3opNT":["Mailing Country"],"V5UqEG":["Check out other open positions \u003c0/\u003e"],"V6-Y2l":["Inconclusive"],"V7Zosu":["Detect and respond at runtime"],"V8KK1F":["Search for title or content..."],"V8vpPU":["Prompt Airlines AI Security Challenge"],"V8wcWO":["My team won the Data Defender Achievement"],"V8yTm6":["Clear search"],"VAAqbc":["Chile"],"VCoEm-":["Back to login"],"VDbxzl":["Join our growing team at Wiz, and empower organizations to supercharge their cloud security."],"VFCG_o":["Afghanistan"],"VHdaJt":["Tuvalu"],"VJDY3r":["Wiz maps externally reachable assets and models initial access paths:"],"VJw9N6":["Select a session"],"VL1nMG":["Please try again or right-click the image to save."],"VNUsVw":["Live Threat - Actively Monitored"],"VTW39g":["Community Website"],"VU0qPp":["Vice President / Head of Application Security"],"VZL6RI":["Modern Slavery Statement"],"V_e7nf":["Set new password"],"V_zdDw":["New AI Operating Model for Security"],"VbVDak":["South Sudan"],"VchIUC":["Ready for a custom tour of the plaform?"],"VdD_H1":["Select a date..."],"VhMDMg":["Change Password"],"VhxrOa":["CISA KEV Release Date"],"VidUeI":["Closing Keynote"],"Vo8PIm":["Complete this form and the Wiz Incident Response Experts team will be in touch as soon as possible. For requests not involving immediate crisis support from the Wiz IR team please use \u003c0\u003ethis form\u003c/0\u003e."],"VoEdcQ":["Faster Time to Respond"],"VpwcSk":["Enter new password"],"VsAjNc":["Unified security across code, CI/CD, and cloud environments."],"Vwgp0F":["Oura Ring Giveaway for 2 Workshop Solvers"],"VyEWcB":["Become a WIN Partner"],"VzvVq2":["Wednesday – November 5th 9:00 AM"],"W2auIP":["Antarctica"],"W2pfP6":["AI Security Posture"],"W3M6CO":["Submit Flag"],"W6i55Z":["Wiz Triage Challenge — Your Results"],"W8XI42":["Get a personalized Wiz demo"],"WAavVU":["Speaking session"],"WCkz58":["Wiz Experts Team"],"WEDMq-":["Secure your cloud"],"WIvjEo":["Please check your email for the tour."],"WLfEv1":["Search country"],"WOJ-Ur":["Do I need to be a Wiz customer to attend?"],"WRd41H":["See what people who use Wiz have to say about it"],"WSRKcd":["Become a go-to Wiz resource for your team."],"WSXZwS":["Siloed tools mean less context and prioritization"],"WVCbZP":["Take a short assessment to get a clear snapshot of your current cloud security posture. Evaluate your approach across 9 key focus areas and highlight where you're strongest and where there's room to improve."],"WWsbln":["Near Moscone Center Entrance"],"WcUHtu":["You have successfully logged in."],"WdBTIc":["Bahamas"],"WfDXFI":["AI-SPM actively monitors and detects suspicious activity within AI pipelines.\n    It identifies misuse or anomalies that could indicate security breaches, allowing for swift containment\n    and removal of attack paths. Threat-detection data is correlated back to the graph-based context to empower\n    you to understand and reduce the blast radius."],"WfXgVb":["Fact ",["findingsNumber"]],"WhiQhU":["APJ: Tuesday, October 25th at 10:00am SGT"],"WiiqdI":["Business Services"],"Wm0CrL":["Be truthful"],"WvdKqJ":["Take the tour now"],"WwP4FJ":["\u003c0\u003eTraditional security was built for a slower era\u003c/0\u003e \u003c1/\u003escanning code, cloud, and runtime in silos, with manual \u003c2/\u003ecorrelation and human-driven processes cross teams."],"WxpuBN":["Test your skills with hands-on challenges and earn your bug bounty masterclass certification"],"WyBCYz":["Understand effective exposure of resources in your environment. Detect publicly exposed resources as well as resources with cross-account and cross-VPC connectivity."],"WzMCru":["User Profile"],"X0JRCl":["View the complete event schedule and breakout rooms"],"X2tah9":["Better than most security training I've seen"],"X2um06":["Connect with Wiz"],"X46cnc":["Luxembourg"],"X4D7p8":["Wednesday, March 25"],"X6zUAk":["Press Media Kit"],"X7WVRj":["Block lateral movement in progress"],"X7sI7-":["How AI is Transforming Cloud Security, The Threat Landscape and AI powered Wiz, Roundtable"],"X9yAes":["French Polynesia"],"XAxbue":["Full visibility into every application and workload in your environment without agents. Detect vulnerabilities, host configuration assessment against CIS Benchmarks, and application misconfigurations."],"XDJRcs":["Timor-Leste"],"XE05-B":["There is so much that I love about Wiz, but one of the biggest things is how everyone works together as one team - I love that I can reach out to any Wizard, in any country, in any team, at any level, and I know they will do their best to help not only me, but our customers too."],"XEV_uU":["Exploitation steps"],"XHhtk4":["Protect \u003c0\u003e\u003c1\u003eEverything\u003c/1\u003e\u003c/0\u003e\u003c2/\u003e You Build and Run"],"XKvT9s":["Chief Security Officer"],"XLrWyA":["Not ready for a demo? Request pricing"],"XMC-ix":["Malta"],"XNwth0":["Secure from the first line of code in the IDE to CI/CD and deployment."],"XOhcXT":["T-shirt Size"],"XPW0U9":["Grenada"],"XRtj1M":["For more success stories\u003c0/\u003e"],"XTtR6a":["Germany"],"XU7LAM":["Get a 1-on-1 review of your cloud security posture"],"XXZQ1w":["Fix security issues directly in your IDE, pull requests, or CI/CD to prevent risks from reaching your cloud."],"XYLcNv":["Support"],"XboRc5":["The good, the bad, and the vulnerable"],"Xi2Lk-":["Be a trusted sounding board for peers navigating cloud transformation"],"XlDNiy":["Master your AI Readiness Program"],"XlFJcL":["Lunch"],"XmVUbU":["Accuracy"],"XojTzX":["Svalbard and Jan Mayen"],"XqOJaw":["Detection and response built for the cloud"],"Xr-BoS":["Explore the latest ",["tagName"]," vulnerabilities in the CVE database"],"XrMPEd":["Explore the platform"],"XspGRu":["Train Your Team for Cloud"],"XtFNg_":["Between"],"Xv6MtD":["True AI readiness comes down to two core variables: speed of action and breadth of visibility.\u003c0/\u003eOur AI Threat Readiness Model delivers a practical, four-pillar framework to help you evolve your security strategy and outpace attackers at machine-speed."],"XvjC4F":["Saving..."],"Xwlwdm":["Risk"],"Xx1RhR":["Inadequate Access Controls: Misconfigured access controls often lead to over-privileged accounts or exposed resources. This can occur when permissions are not properly restricted, allowing users or services to access data and resources they shouldn't have access to."],"XxUW61":["Do you provide the ability to detect AI technologies, SDKs, and services? (Sagemaker, Bedrock, VertexAI, Azure OpenAI, OpenAI)"],"Y4Wm44":["Join the Wizdom Community"],"Y6ALuA":["Attack Vector"],"YBjzsN":["Work Email Address"],"YCzKAA":["Sierra Leone"],"YEngFo":["Work Email"],"YH2SkJ":["Guyana"],"YIix5Y":["Search..."],"YJ4hU8":["Networks / Environment"],"YPOHAm":["Norway"],"YR9YS-":["Please enter a valid first name"],"YRzbxV":["Popular Integrations"],"YUMCCZ":["Agent Configuration"],"YcfUZ9":["Contact Us"],"YfGx2x":["Cloud Threat Landscape"],"YgC9rK":["CloudSec Academy"],"YgVqbC":["Wiz at Black Hat"],"Yh_Orf":["All event types"],"YjF_wa":["See where cloud security is heading"],"YjXLAQ":["Customer Stories"],"Yk6Pty":["Wizdom: New York Sessions"],"YlQoTX":["Please enter a valid corporate email address e.g yourname@company.com"],"Yna0Ae":["Finally, users are presented with their overall risk score and a breakdown of their performance across each security domain."],"YqFVsX":["Featured events"],"YqbCZi":["4"],"Ysk0LC":["Silver Sponsors"],"YsoGlG":["Incident Response Resources"],"YtzEr1":["We have the ability to detect attack paths in AI pipelines."],"Yww33P":["Cloud Native Security"],"YyVgNg":["NVD"],"Z3FXyt":["Loading..."],"Z5B5iA":["Join the exclusive club of organizations with zero critical vulnerabilities"],"Z5SGAh":["7"],"Z6_U2Z":["Explore Integrations"],"Z8lGw6":["Share"],"Z9APBa":["Already a partner? \u003c0\u003eLog in \u003c1/\u003e\u003c/0\u003e"],"ZCcuSU":["PQC Tester"],"ZDIydz":["Get started"],"ZFKRXv":["Questions about scheduling your exam?"],"ZFfy9b":["Moldova"],"ZGYyQp":["Wiz Bug Bounty Program"],"ZHnu2I":["We have the ability to detect lateral movement paths from AI pipelines to cloud environments."],"ZNGNK5":["If you have any questions regarding certification, please email \u003c0\u003eWizCerts@wiz.io\u003c/0\u003e."],"ZQA8ce":["S"],"ZQKLI1":["Danger Zone"],"ZQceZY":["Myth #1: AI is not my problem (yet)"],"ZR4aUu":["Best Streak"],"ZYaanS":["We can benchmark our cloud security posture against industry standards"],"ZagZfu":["Regulatory and compliance obligations: Particularly in sectors handling confidential data, such as finance and healthcare, there are stringent compliance standards to meet. Failure to adhere to these standards can result in substantial penalties and legal consequences. A thorough cloud security assessment ensures that your organization's cloud operations align with industry regulations, eliminating potential pitfalls."],"Zb8H71":["Using recent vulnerabilities as examples, Wiz presents insights on vulnerability management in cloud environments, along with the threat research team s methodology for using vulnerability intelligence."],"ZdSMKV":["AI security blueprint for frontier models"],"Zdmlf_":["We are curating a group of the best minds in security to attend Wizdom, spots on the waitlist will be prioritized for Wiz customers and potential customers. Partner sponsors will also be in attendance at the event."],"ZgihWd":["We have the ability to detect misconfigurations in AI services."],"ZpORBp":["Yemen"],"ZuKoNC":["Join Wiz for the Executive Women's SecuriTea Party at RSAC, this exclusive gathering brings together executive women in cybersecurity for candid discussions on leadership, industry challenges, and the evolving threat landscape."],"ZuLy43":["Phone number"],"ZvXBKQ":["11:15 - 12:00 PM PT"],"ZvrHyO":["Wiz is very proud to continuously grow its Bug Bounty Program, inviting cybersecurity enthusiasts, researchers and ethical hackers to contribute to the enhancement of Wiz. If you have identified a vulnerability, we want to hear from you, so click the Report button below!"],"Zw7BYH":["Secure your entire environment"],"ZzGRa1":["Your demo request has been received. A member of our team will be in touch shortly to arrange your personal demo."],"ZzH0Q-":["Your password has been successfully reset."],"_-B2jI":["Breaking into a Major Bank"],"_00BsH":["Inside a Cloud Extortion Attack: A Case Study From the Front Lines"],"_4gGIX":["Copy to clipboard"],"_9z2L0":["Collateral materials"],"_AY7nZ":["YES, Hands - On workshop is for me!"],"_Ah5Zz":["Indicators of compromise"],"_Be9Gl":["Position ID"],"_Dvjt0":["Wiz connects code, cloud, and runtime into a single security graph that provides the end-to-end context required to automate risk reduction and threat response, enabling security teams to operate at AI speed. AI alone doesn't make security faster. \u003c0\u003eContext does\u003c/0\u003e."],"_H43dG":["Click the link below to watch the recorded demo:"],"_HfBox":["Build Self-Healing Code \u0026 Applications"],"_IBv6X":["Verify your email"],"_IVPxW":["Stay Safe \u0026 Informed: Receive the Latest Cloud Security News, Real Attack Insights, and Expert Guidance to Protect Your Environment."],"_IX_7x":["Other"],"_M2Q0c":["Explore cloud security guides and reports"],"_MqPke":["Nice catch. Let's knock this critical out."],"_NuhbF":["We have visibility into the relationships between our cloud assets (e.g., which VMs are connected to which databases)"],"_P2rw1":["Tutorials, sessions, and guides designed to elevate your cloud security expertise"],"_PhMe9":["Learn about Wiz Certified program policies."],"_QeJFM":["Academy"],"_RDWeR":["Bring together leaders driving cloud transformation and shaping the future of security"],"_TZr4T":["SSRF Vulnerability on Major Gaming Company"],"_TaFPN":["Platinum Sponsors"],"_VG8pv":["Think like a Hacker: Detect \u0026 Respond to Attack Surface Risks"],"_Wn_xz":["5"],"__qj0f":["Take a moment to recharge, refuel with a fresh cup of coffee, and challenge a friend to a board game. No algorithms, just great vibes."],"_j2w3t":["Web CTF challenges — analyzing source code and writing working exploits to capture flags"],"_jkz-z":["Cloud \u0026 AI Security Platform"],"_lDBHm":["FAQ"],"_m4Yae":["Which session will you be attending?"],"_nT6AE":["New password"],"_oMQRK":["Use the Wiz Sensor to identify and patch critical threats. Avoid unnecessary noise and win the race."],"_obdm7":["The Wiz Certified program recognizes your cloud security skills and helps you stand out in the field."],"_p3DVR":["Take the tour"],"_pZelF":["Sharpen your incident response skills and save the secret recipe"],"_rQBtr":["1 regeneration remaining"],"_tZEjV":["How it works?"],"_zVZqo":["Wiz sensor"],"a-EHPy":["Review Findings \u0026 Explanations"],"a0C0BC":["Build detections and alert customers to emerging vulnerabilities, exposures, and campaigns"],"a4N_Bg":["Load More"],"a7Lkch":["We'll break down how we took over a major cloud provider's managed database service. From sandbox escape all the way to complete admin access to every customer DB on the platform. Join us as we dive into one of the most impactful cloud vulnerabilities to date and discover how attackers can target major cloud services and learn to design hardened multi-tenant environments."],"a7ZKnZ":["Incorrect flag"],"a8RTmD":["Wiz Cloud"],"a8TU4M":["CTF Challenges"],"aB6Nqf":["Download now"],"aBaHnh":["Watch 12-min demo"],"aDCjSL":["Get a demo now"],"aDnm0m":["Domain Registrar Data Exposure"],"aDskE-":["Risk Score Calculation"],"aHCEmh":["Pricing"],"aHOq-X":["Wiz: AI Cybersecurity for All Your Cloud and AI Applications"],"aIDYyb":["Wiz code"],"aIqdqa":["Define clear ownership, roles, and decision making processess"],"aKCy_u":["November 18: Wizdom Conference Schedule"],"aLEpSZ":["Exploitation Probability (EPSS)"],"aMTfRY":["Jersey"],"aMsKN2":["Palestine"],"aOfYYP":["Accessibility needs or accommodation request:"],"aS0j7M":["Wiz Blog"],"aUr7uZ":["Stop by the Wiz Agent\u003c0/\u003eLab at Booth #2148!"],"aVV-nh":["My team won the Attack Surface Annihilator Achievement"],"aZ7OhP":["One platform to secure cloud and AI from code to runtime"],"a_hoEI":["Gold Sponsors"],"acnTfa":["My team won the Zero Time to Respond Achievement"],"agQ1lR":["The Newsletter"],"ah-Lhh":["Learn what's working from your peers — not just the theory."],"ahs2b1":["Wiz Defend Overview"],"aiiFCX":["Respond to Threats"],"aj-mt_":["See what's happening now"],"ajjtsq":["Amsterdam, Netherlands"],"akVOx3":["View event"],"akvfbO":["Break the myth"],"alCVSV":["Do you use automated tools to continuously assess compliance with relevant standards (e.g., CIS, NIST, PCI DSS)?"],"apki72":["Meet our partners + ecosystem"],"aq2hAK":["A threat intelligence database"],"aqxYLv":["Education"],"asJJyV":["Share security findings across the cloud security ecosystem to reduce risk, improve efficiency and enable an open cloud security ecosystem."],"astDB-":["Blog"],"aw_B9H":["AI Security: Fact vs Fiction"],"axubI2":["Wiz \u0026 Daylight Partnership: From Wiz Defend Alerts to Zero Threat (The Lovable Use Case)"],"b1wgAh":["and ",["overflowCount"]," more"],"b2TTej":["Careers at Wiz"],"b5BTgL":["See the Wiz agents in action"],"b7CRBq":["High profile vulnerabilities"],"b82s8L":["Love from the community"],"b8a_z-":["See Wiz in Action"],"bGDmft":["Continue reading"],"bMixqd":["Why do organizations need a cloud security assessment?"],"bMv8HD":["We are working hard to reduce the external attack surface of our environment."],"bNold_":["Explore Vulnerabilities"],"bRN5nm":["Software"],"bTKWbr":["See how top teams are solving challenges, securing their environments, and using the platform day to day."],"bWUMw7":["Confidentiality Impact"],"bWq-Ad":["Government"],"bZLAxn":["Models evaluated:"],"bagUOY":["Explore more upcoming events with Wiz"],"bbCeF-":["Start course"],"bc49HL":["November 17-19   |   London"],"bcJmci":["Join our monthly CTF challenge! Dive into real-world cloud security scenarios crafted by top Wiz researchers"],"bdqAV_":["Apply Now"],"bdztP2":["Research"],"bh3WAH":["San Marino"],"bhXS1u":["Time is based on your local timezone"],"biIgZ4":["Generating your certificate..."],"blW8gp":["Costa Rica"],"blWhqM":["See Wiz Defend in action—real-time cloud detection and response powered by runtime visibility and Wiz's Security Graph."],"boWrrD":["Naomi Lane"],"btfNFS":["Multi-purpose coding agents evaluated on security tasks."],"byY-Xd":[["count"]," regenerations remaining"],"byhqNA":["Stay ahead of cloud threats and protect AI applications with real-time threat detection, investigation and response across every layer of your cloud environment."],"c0lUpz":["What's Next for Security: Adapting the CISO Playbook for the AI Era"],"c24-0g":["9:30 - 10:30 AM PT"],"c3Pmnb":["Define outcomes"],"c4FPOl":["Secure every layer of cloud and AI applications"],"c7mAvD":["New Caledonia"],"c7yvtA":["Switzerland"],"cBl382":["Full database"],"cCtl0D":["Learn how to secure cloud environments and applications, from infrastructure to AI, and empower your team with essential cloud security skills."],"cFMnFo":["Details on the incident..."],"cGug85":["Modernizing the SOC for the Cloud Era"],"cHmbxW":["A group of security experts devoted to identifying, investigating, and neutralizing threats to the modern cloud environment."],"cIkvYM":["Book a demo"],"cMPyYS":["Cloud Detection and Response, Built for AI Threat Landscape Roundtable"],"cNSojf":["Capture The Flag"],"cSDptC":["North America"],"cSev-j":["Filters"],"cUD6H0":["Get Ready..."],"cVRMs6":["Teams now ship applications 100× faster. AI generates\ncode, wires infrastructure, and deploys to production in\nminutes. Ideas move from code to pipeline, cloud, and\nruntime in hours."],"cbihRn":["10 min | self-paced"],"ccNXt6":["\u003c0\u003eThanks for your demo request!\u003c/0\u003e We'll be in touch soon."],"cdUSNa":["10:15 - 11:00 AM PT"],"cf12oe":["Wiz Cloud: Manage Security Posture"],"cf6QwZ":["Get a personalized walkthrough based on your environment."],"chBlTD":["Most Recent"],"chZCuo":["Download the datasheet\u003c0/\u003e"],"chqr93":["British Virgin Islands"],"cj6Ir8":["We monitor for suspicious identity-based activities in your cloud environment."],"clu_wY":["Watch how the Wiz protects cloud environments from code to runtime in our 12 minutes recorded demo"],"cnGeoo":["Delete"],"cpNoc4":["Nicaragua"],"crJjjK":["Any dietary or mobility requirements you'd like to share with us?"],"crqnhh":["Runtime protection \u0026 threat detection and response born for cloud"],"cv3Xrt":["Access now"],"cvagGg":["Reviews"],"cxiDpZ":["See the platform"],"czJnn4":["Phishing warning"],"czsjcX":["Pitcairn"],"d-bRAT":["Establish governance"],"d5o1NA":["Connects cloud security professionals with global job opportunities, from entry-level to executive roles"],"d6K_XT":["Be the first to hear about product updates, events, and more"],"d7Kp2g":["Break"],"d8PhMo":["NYC event"],"d8d2ht":["Strong tenant isolation"],"dExHFe":["Agent On the Loose Hunt"],"dFpN0D":["Wiz Portal"],"dGevQn":["Arrivals + networking"],"dIslm4":["\u003c0\u003eSecurity, re-built for the AI era.\u003c/0\u003e \u003c1/\u003eSecurity must move as fast as development - understanding applications, continuously analyzing risk, responding to threats, and fixing issues in code. Security becomes continuous and automated, aligned with how modern software is built. Wiz makes this possible."],"dL-_e_":["Learn the fundamentals of bug bounty hunting and earn your certificate by solving hands-on challenges."],"dOM663":["Select all options that apply"],"dOfvPx":["WIZ IN PRACTICE"],"dZGcjQ":["See Wiz in action"],"db5CDd":["Already a member?"],"ddkbVy":["$2,000"],"dfpOnk":["We couldn't find the the integration you're looking for..."],"dgoIcV":["CISA KEV Due Date"],"dh7dqK":["Watch now"],"dhNDw4":["2XL"],"dihZwh":["No data found"],"dkoili":["Join our experts for in-depth sessions on AI security and cloud protection."],"dllrIh":["Watch the Wiz Defend Product Demo"],"drjqvo":["Maps out resources to reveal toxic combinations and AI risk"],"dvYuhh":["Moderate"],"dxhZ7N":["Visibility into installed cloud middleware"],"dxxVfd":["AI has become omnipresent, spawning a new breed of threats that require unique defenses."],"e-RpCP":["Sign up"],"e0wmKo":["Onsite training and hands-on labs will be offered onsite. Some may require pre-registration - we'll share more details as the agenda gets finalized. These sessions will help prep you for the Wiz Certification Exam, which you can take at a later date."],"e3-qo8":["We can automatically recommend IAM policies based on historical utilization."],"e3nmuE":["The website syncs directly with Slack. So you'll see the same channels and posting threads as everyone else."],"e6bnE0":["Need a breather from all the AI talk? Step into the \u003c0\u003eWiz No-AI Zone,\u003c/0\u003e located steps away from the Moscone entrance."],"e7IQ7O":["Security Democratization"],"eBY9t3":["Visit Docs"],"eFLdcq":["PLENARY"],"eKVHOq":["Discovers every attack path with automated penetration testing and risk discovery."],"eNv7iA":["Join us to chat about building secure AI applications and exploring cloud security"],"eODNrw":["Additional resources"],"ePYQjq":["Identity"],"eSi1os":["Discover new tools, connections, and success stories."],"eT0pTr":["Croatia"],"eTXHNR":["All scoring is deterministic (no LLM-as-judge): flags, endpoint matches, vulnerability locations, and call graphs are validated programmatically"],"eUi0X3":["All Locations"],"eWIRh7":["Meet developers where they are"],"eZX0nQ":["Watch how Wiz protects cloud environments from code to runtime."],"eZozeb":["The Journey to Secure the Cloud"],"e_eaLe":["Data Security Research"],"eaUTwS":["Send reset link"],"ef5S9h":["Working with Wiz, as a team, is very collaborative. To be able to get up and running within a couple of weeks was amazing."],"efOen6":["Certificate regenerated!"],"efdrrk":["Available on"],"efgh4i":["CTF CHALLENGES"],"egkNh9":["Watch demo"],"ej33Qe":["Dive into a network full of miscongurations and exploit vulnerabilities with the goal of conquering a Kubernetes cluster"],"ekdhM0":["XL"],"emPCne":["Is high profile threat"],"epKOQY":["Is shadow AI putting your organization at risk? Are your current defenses AI-ready? Get answers, expert strategies, and actionable insights to secure your cloud environment. Let's dive in."],"esQWPd":["Fill out the form below and we'll reach out with more details."],"euWDcq":["Vulns, Meet Context: How Modern Teams Cut Through the Noise"],"eun_IU":["Saint Barthélemy"],"ewDg7v":["Viet Nam"],"ewcdQV":["Green Agent: Precision Remediation"],"ezm6uU":["Welcome to Wiz: Success in Your First 90 Days"],"f-SmuP":["Translation Test"],"f0pbHk":["pts"],"f1LKk_":["Monday - November 3rd"],"f6xzpj":["We have policies in place to enforce compliance across our cloud environment."],"fBB0MH":["We use cloud-native security analytics to detect threats."],"fDPr0Q":["Mauritius"],"fFWMB8":["Angola"],"fGbeDK":["What do you want to learn today?"],"fH87ky":["Welcome to CloudSec Academy, your guide to navigating the alphabet soup of cloud security acronyms and industry jargon. Cut through the noise with clear, concise, and expertly crafted content covering fundamentals to best practices."],"fL90pP":["\u003c0\u003eWiz House,\u003c/0\u003e 661 Howard St, San Francisco, CA 94105"],"fNFBnk":["Don't worry, we're looking into it"],"fOoh-2":["Boost your AWS IAM skills with our unique CTF challenge"],"fT-67O":["Wednesday – November 19th 9:00 AM"],"fWsBTs":["Something went wrong. Please try again."],"fX1rcP":["Benchmark your Cloud Security Posture"],"fYHG5A":["Cuba"],"fZfuDM":["Engage online"],"f_JA9t":["See how Wiz detects exploitable vulnerabilities across cloud workloads. \u003c0\u003eWatch 12-min demo \u003c1/\u003e\u003c/0\u003e"],"f_qi1V":["Earn your credential"],"fbfcI2":["Prove you know how to use Wiz Cloud effectively."],"fcMrkO":["Virtual event"],"fcuK98":["Executive Women's SecuriTea Party"],"fdKrX_":["Challenge completed successfully."],"fgLNSM":["Register"],"fgSkPR":["CNA Score"],"fj5byd":["N/A"],"fl_qbv":["Albania"],"fpdnBQ":["The Snowball Effect: A Practical Playbook for Supply Chain Incident Response"],"fr2N9b":["Paraguay"],"frLdCa":["Contact partner"],"fsZFtR":["We couldn't find the role you're looking for..."],"ftezqy":["Travel \u0026 Transportation"],"fthr44":["Saint Helena"],"fwNXKx":["Do you use a Kubernetes Security Posture Management (KSPM) tool to automate security and compliance for your entire Kubernetes architecture?"],"fx1Qjp":["Wiz Defend: Respond to cloud threats"],"fx8S4T":["No regenerations remaining"],"fyTjTq":["Dive into a network full of miscongurations and exploit vulnerabilities with the goal of conquering a Kubernetes cluster (CTF)"],"g4FIry":["Cloud security emojis that don't take themselves too seriously"],"g5ESEk":["March 2026"],"g7wz9l":["Go to resource"],"gB2Shl":["Your verdict"],"gB5OYq":["Register Now"],"gBdwma":["My team won the Identity Investigator Achievement"],"gCPpHv":["Wiz Threat Research intel"],"gD3QDt":["See how Wiz can secure your cloud with our on-demand recorded demo."],"gEwhO_":["Your account has been permanently deleted."],"gFvEqY":["Exploitable"],"gGG74Q":["AI Triage"],"gH_KcK":["Please enter your name below"],"gHrNie":["Wiz Green agent"],"gI3gHl":["Secure your cloud wherever you run it"],"gPiMRB":["What does it mean to be an MVP?"],"gSbWVI":["Become a Wiz Technology Partner"],"gVOp-D":["Learn how real-world vulnerabilities are discovered and exploited"],"gYEK3J":["We can detect and alert on potential data exfiltration attempts."],"gYVSK2":["Secure every application you build in the cloud, from infrastructure to data."],"gbsvz8":["The page you are looking for could not be found"],"gcFBCv":["Cocos (Keeling) Islands"],"gcacFr":["The Cloud Security Self Assessment"],"gieJ5k":["XXL"],"gjpdaf":["Report"],"gmT0gf":["Threat Detection and Response"],"gmWYJ7":["Error occurred while loading data"],"gop0rv":["Wiz Support Plans"],"goy-kw":["%s | Wiz Careers"],"gu5nXC":["Watch recording"],"gukqfD":["See all"],"gv5bh0":["Cloud Asteroids"],"gxQC8C":["Connect in minutes to gain immediate visibility into your cloud and its security posture"],"gyXpQN":["Upcoming events"],"h1fttR":["Register now"],"h3dVV5":[["readingTime"]," min"],"h3gsU9":["South Georgia and the South Sandwich Islands"],"h5vZgN":["LIVE UPDATES"],"hDSbd2":["Areas of activity"],"hE9ZW-":["the full announcement"],"hFkAdK":["Wiz provides a single pane of glass to see what is going on in our cloud environments."],"hK6QXm":["Secure by Default: Leading Through the AI Shift"],"hKCcFB":["the Wiz Triage Agent?"],"hLBqO-":["Tokelau"],"hLS9DK":["Can you detect and respond to threats in your cloud environment based on cloud events?"],"hLzgst":["Workshops"],"hMJzn0":["Please enter a valid company name"],"hP1NpU":["Data access chains"],"hPXNm1":["Working at Wiz"],"hPkt77":["Act confident, stay humble"],"hQRttt":["Submit"],"hSE2AB":["K8s LAN PARTY"],"hSn7-e":["Tools \u0026 Open-Source Projects"],"hW-Pn3":["Become a Partner"],"hWdRe-":["Obtain a Wiz certification for Wiz Cloud and share your achievement with others."],"hWpTOI":["Designed to support the cloud security programs of organizations of any size and industry."],"hXSTLN":["Slovenia"],"hXzOVo":["Next"],"haGmzm":["2:25 - 3:15 PM PT"],"hanb5o":["Greg Poniatowski"],"hcqzcm":["Haiti"],"hg51QW":["Additional Wiz resources"],"hgDmXs":["3:00 - 4:00 PM PT"],"hhzNF3":["Deep risk assessment: Detect risk across vulnerabilities, misconfigurations, identities, network exposures, secrets, and malware, all without agents all on the same unified platform."],"hklP_j":["Category Comparison"],"hklXty":["Wiz customer?"],"hoo_6Y":["Platform walkthrough"],"hosXEg":["Shape the Industry"],"hrMr5i":["feedback"],"hrpeuS":["Work the Issue: Interactive Talks with Nike and Workday"],"htCPf9":["Portugal"],"htk05A":["David Estlick"],"hwfcws":["Failed to load more episodes. Please try again."],"i2jOnz":["We can detect lateral movement paths."],"i5c2xT":["New attacks, techniques and threat actors are discovered every day"],"i7j-rI":["Andorra"],"i8Q8cL":["Wiz Research"],"i8Req7":["We have a process for prioritizing and remediating identified vulnerabilities and misconfigurations with context."],"i9SVRr":["Sydney, Australia"],"iCLdhc":["Onsite live training: Wiz Cloud core"],"iDZxFa":["Can you identify effective permissions for human and non-human identities in your environment and from your IdP to cloud?"],"iEQQyu":["Agent"],"iFCUWn":["South Korea "],"iFHxEX":["Start Assessment"],"iH8pgl":["Back"],"iHMl1A":["View challenges"],"iINci7":["----"],"iIp52C":["Something went wrong. Give it another go."],"iIy15Z":["For each domain where users answer \"Yes,\" they are presented with a detailed checklist of additional questions."],"iJeUrb":["Click \u003c0\u003e\u003c1\u003ehere\u003c/1\u003e\u003c/0\u003e for more information."],"iKGEhY":["No Fix"],"iKN1ng":["Challenges"],"iMHEwF":["CVEs with an exploit from the last 60 days"],"iMLwL6":["Added at: ",["formattedAddedAt"]],"iNr66b":["Round ",["roundNumber"]],"iNuP7T":["4:30 - 5:30 PM PT"],"iP3ZRb":["Listen on"],"iSiFYa":["Build"],"iSkah5":["Bouvet Island"],"iUCxsS":["A single platform for your cloud and AI security use cases"],"iURmkR":["AI for a new era of agentic security"],"iV9bf1":["Used Wiz to create an agentless solution for quick risk identification and better cloud environment monitoring.\u003cbr/\u003e\u003cbr/\u003eEstablished efficient remediation of vulnerabilities, leading to “zero critical” status"],"iVPdbh":["CVE Database - ",["tagName"]," Vulnerabilities"],"iVYfke":["wiz defend"],"iWOlMs":["Vanuatu"],"iZWlw6":["Challenge"],"iZtA-0":["Wiz Defend combines eBPF-powered runtime signals from the Wiz sensor, deep analysis of cloud \u0026 SaaS logs and agentless risk context so you can detect emerging threats faster and understand the full story of the attack path and potential blast radius in minutes. Reduce MTTR by 10x with AI-powered investigations from the Blue Agent."],"idLsC0":["Wizdom Community"],"ifBBL9":["9"],"igYuRv":["Where Trust meets Cloud Security"],"iga-2_":["Interactive product tour"],"ihpYw-":["Contact Press"],"iiAe02":["Tuesday, August 4th"],"inn753":["Time Attack"],"ioxFvl":["Driving Outcomes"],"irDc-v":["Trust deeply in a team that has handled thousands of cloud incidents. We'll help you understand the attack path, blast radius, and build back safer."],"isRobC":["New"],"ixVSln":["WIN with us"],"iyBlTD":["Bookmark now"],"iySmR3":["Test your investigation skills and K8s knowledge"],"iz4Qas":["Prepare for the exam."],"j2SHMc":["See firsthand how Wiz AI agents can work for you. Come meet us at our booth to chat about Wiz AI agents and watch live demos with our team."],"j4Cy-P":["We can automatically detect misconfigurations, exposed APIs, and open ports on our Kubernetes clusters?"],"j8NbND":["Wiz Party"],"jDRLsx":["Cloud Engineering, Juniper Networks"],"jF-fph":["Integrate with Wiz"],"jIhOia":["Eritrea"],"jJn9OW":["One Key to Rule Them All: Taking Over a Flagship Cloud Service"],"jNVqJp":["Solutions"],"jNh_AH":["Sign in to solve the challenge"],"jO6Jeo":["Generates direct code \u0026 infra fixes to code owner"],"jOTRkh":["Mandalay Bay GH"],"jS5Pxs":["Guides \u0026 reports"],"j_6FJh":["Threat detection in AI pipelines"],"ja3lDX":["Ghana"],"jaVMVr":["Hear what's working in the real world"],"jcnScd":["Code and CI/CD Policies"],"jeuZj4":["Swaziland"],"jfC_xh":["Contact"],"jgcGGG":["Wednesday – November 19th 1:00 PM"],"jhTA11":["Technology"],"jkJJnP":["Cybersecurity in the Age of AI"],"jl4rt2":["Explore our collection of cloud security threat research, white papers, podcasts, best practices cheat sheets, and more. Filter by topic and cloud environment."],"jnMw6c":["Made with 💙 by"],"jnxEAC":["Leader in Cloud \u0026 AI security software on G2"],"jpwpCC":["Prioritize risks with context"],"jqOtp6":["Watch video"],"jruEGL":["Become a Wiz MVP"],"jsP3SM":["Round ",["roundNumber"],"/",["totalRounds"]],"jxJwxN":["Ready to see Wiz\u003c0/\u003ein action?"],"k4C6HS":["Our incident response team is ready."],"k4I7F8":["Impact"],"k60q3g":["Your recording is ready."],"k7xMp5":["Wall Street"],"k8CACG":["Cloud security that enables innovation"],"kBafMj":["Get a free trial"],"kCAA6P":["Myth #3: There's no way to find AI risks"],"kEnpKE":["Party With Us"],"kF6OEh":["Key takeaways"],"kFnHaf":["From trading floors to cloud infrastructure, New York City now welcomes the brightest minds in cloud security."],"kKlR_A":["We are working hard to ensure Code \u0026 CI/CD pipelines are secure."],"kLQb8g":["Be recognized publicly with MVP badges, certifications, and more"],"kODvZJ":["First Name"],"kQbI8C":["Exploitation Probability Percentile (EPSS)"],"kRUWRF":["The cloud threat landscape is unique and ever-changing"],"kRkTOo":["Anguilla"],"kRwwve":["Start now"],"kS-L0p":["Do you have a comprehensive inventory of all your cloud assets and technologies across multiple cloud providers?"],"kS4khS":["Saint Martin"],"kUzM_6":["Who are we, and what we stand for"],"kbIk45":["Wiz Red agent"],"keVrBH":["Your certificate is ready."],"kevRK3":["Congo"],"kgqPHn":["CISO"],"kh1Jc5":["Watch Now"],"khvk5g":["All Integrations"],"kijBC_":["Create policies, SLAs, and exception processes and track progress"],"kiw5SB":["Breakout sessions + Executive track"],"kjMQ0M":["Cloud User"],"kl-Asz":["Wednesday, March 25th"],"kl4SY_":["Tuesday, March 24"],"klOeIX":["Failed to change password"],"kmnbu8":["Build with the Wiz Integration (WIN) program to expand your market presence and help provide real value to your customers"],"knvDLF":["Lovable moves fast, and so do attackers. When they needed to ensure their cloud environment was fully protected without building an internal SOC, they turned to Wiz Defend for cloud detection and Daylight Security as their MDR provider to close the loop. In this session, hear directly from Wiz and Daylight on how a shared customer achieved zero threats backlog with Daylight's agentic MDR ingesting Wiz Defend alerts and resolving them before they become incidents. No noise. No missed signals. Just outcomes."],"kpgmML":["Zambia"],"kpr28H":["Let's talk about how we can work together."],"kqWy2-":["How Juniper Networks reduced risk and cloud costs in weeks"],"krAJef":["Ireland"],"ksYtgA":["at Black Hat"],"ku4j2Z":["Operationalizing Cloud Security: Lessons from Long-Time Wiz Customers"],"kudAzT":["We have the ability to detect sensitive data used for AI training."],"kuo6Wq":["Ready to start?"],"kw9260":["We can detect sensitive data in code and CI/CD."],"kx1Aee":["Back to sign up"],"kzGXoP":["Find answers to your questions in our platform manual"],"l-a3gb":["You missed this one"],"l30ulY":["Select labels"],"l5mTeO":["Speaking Session"],"l6_cc_":["We have visibility into the security posture of our serverless functions."],"l75CjT":["Yes"],"l8TORb":["reviews"],"l8XoTb":["Wednesday - November 5th"],"l9d049":["Wiz Research reverse engineer the malware and investigate infected machines determining that attackers abused features of the Selenium WebDriver API to execute Python scripts through a reverse shell, ultimately deploying cryptojacking malware."],"lBlInY":["Don't have Slack?"],"lD1JA7":["But here are our some of our reading recommendations"],"lFs2ri":["Wiz Sensor: Runtime Protection"],"lGM7IZ":["Server side error occurred"],"lMiPSm":["Is there a Wiz partner you work with?"],"lP5p_v":["We're located here, but have people everywhere"],"lQa3W0":["Namibia"],"lTo_3_":["Netherlands"],"lVlJIo":["Request assessment"],"lXzpe4":["This report was generated using AI"],"l_tRWq":["10:00 - 11:00 AM PT"],"lh59Sp":["Want to connect with our team onsite?"],"lhszFW":["Wiz Integrations"],"li2PYj":["Real stories, real strategies"],"lmTh30":["I scored ",["correctCount"],"/",["total"]," on the Wiz Triage Challenge. Can you beat the AI at security triage?"],"lnIEXc":["Take the guided tour"],"lqJBDJ":["Earn your official Bug Bounty Masterclass certificate"],"lsgvh7":["What happens if I can no longer make it to Wizdom?"],"lt3xT-":["Watch the recorded demo"],"lxqJj_":["Back to Wiz"],"m1XCvw":["Monitor progress"],"m1YQdV":["Advance your career"],"m4ZGQw":["This action is irreversible and will permanently delete your account and all your data associated with it."],"m8tKkP":["Methodology"],"mDNaRA":["INCIDENT TIMELINE"],"mEUAC7":["Schedule a meeting at Black Hat"],"mFJ8ye":["Save time and resources with complete visibility into the SDLC and developer autonomy to code with security context."],"mG8SZd":["CISO Origins \u0026 Evolution"],"mKVLgG":["Mailing Address"],"mMw4GY":["Conclusions"],"mPkInZ":["Partners"],"mQcEGg":["Trusted by the most innovative companies in the world"],"mR5ekm":["Search a topic..."],"mRvhOV":["Download Now"],"mUv9U4":["Sales"],"mVfxVn":["Get a demo"],"mWDwlN":["Deliver innovative integrations with Wiz to solve customers' cloud security issues while establishing trust and expertise."],"mWoNJT":["Romania"],"mXaR4g":["Is there a dress code?"],"maAk7F":["FIX AT SCALE IN CODE"],"mfnh4U":["All Industries"],"mgrjGS":["Lateral movement"],"mmHTAo":["Already a Slack user?"],"mpAmDi":["Malawi"],"mpnyjj":["Misconfiguration Research"],"mpsPhb":["Watch on"],"msVlpf":["Strategic event"],"mxoUY1":["Smart Prioritization"],"myyHLb":["Mali"],"mzI_c-":["Download"],"n0zvQK":["In your demo you will learn how Wiz can:"],"n25nMV":["Argentina"],"n9WtD7":["The Ultimate Cloud Security Championship"],"n9tneg":["Wiz delivers context-driven insights needed to remove the most critical cloud risks and protect your sensitive assets."],"nAZgOx":["We can detect runtime threats in our workloads"],"nCSmDh":["We are working hard to detect and respond to threats quickly."],"nDMLu_":["Get the report"],"nEKGGI":["Conclusion \u0026 Next Steps"],"nLMdM8":["Learn from others"],"nN6ipi":["Exit preview mode"],"nOhz3x":["Logout"],"nOuOZK":["Copy link to this update"],"nS578T":["Wiz Code Issue Example"],"nTWWCZ":["Low"],"n_P90f":["Wiz Partner Alliance Directory"],"n_d3zN":["Finland"],"n_qhAO":["Certification resources"],"n_rrHm":["Comoros"],"nawctw":["Related Events"],"nbebS4":["AI-Powered Wiz"],"nbfdhU":["Integrations"],"ncknN-":["Academy tagged #",["tagName"]," | CloudSec Academy"],"nf0Fki":["Challenge your cloud security knowledge"],"nfcrer":["We couldn't score your run"],"nj2MP8":["Vulnerabilities"],"nkEPgb":["Benin"],"nla2Qm":["Securing the Stack: A Hands-On Cloud Risk Workshop"],"nmfUpD":["Eliminate critical risks with a unified platform that protects sensitive assets from cloud to AI."],"nnIui6":["Sweden"],"nqRHyO":["Give your whole SecOps suite, from SOC to Threat Intelligence to Incident Response, detection and response capabilities that were born in the cloud, reducing noise and improving security across your cloud environment."],"nrTNms":["Search by CVE ID or technology"],"nrZauA":["The types of AI risk that apply to your organization depend on the AI that you employ and deploy. Understanding the security controls to set up around AI requires you to first have a good overview of the security risks that come with GenAI."],"nrt2Gl":["Here you will find all of our Security certificates, attestations, compliance documents, and etc."],"ntRxPY":["Azerbaijan"],"nttppr":["Check out our open positions around the world. If you can't find what you're looking for, check back often as new positions open up frequently."],"nv-3dM":["One-stop-shop for all Wiz events"],"nvkD7e":["Defend Fundamentals"],"nwpsa3":["Still got some questions unanswered? "],"nwtY4N":["Something went wrong"],"o-g6jA":["Fill out the form below and a Wiz expert will reach out to schedule a dedicated time to meet."],"o23a84":["Code-to-Cloud Context"],"o5lEK3":["Aland Islands"],"o8kJul":["We can correlate runtime threats to cloud context."],"oI9WXf":["Discovering and validating web vulnerabilities through live interaction"],"oJO7qt":["We have a process for continuous assessment and improvement of our cloud security posture"],"oKCdRV":["1:15 - 2:05 PM PT"],"oNbwTX":["I agree that my contact information will be collected by Wiz and its Partners who may contact me about their services, product releases, industry news, and events. You can unsubscribe at any time. Please contact Wiz's Partners directly or refer to their privacy policies for information on how they process your data. If you would like to revoke your consent from outreach from Wiz, you may do so at any time by emailing \u003ca href=\"mailto:wizdom2025@wiz.io\"\u003ewizdom2025@wiz.io\u003c/a\u003e."],"oO5I74":["Europe: Tuesday, October 25th at 1:00pm CEST"],"oTc4Fz":["Effective internet-exposure of endpoints \u0026 services"],"oUAlz2":["Watch the demo"],"oXda6F":["Our mission"],"oZyG4C":["Continue with Google"],"oaf9oI":["See the full picture with Wiz"],"od7fDj":["How to integrate with Wiz in 7 steps"],"ogtYkT":["Password updated"],"oizm5i":["Provides high-fidelity, cross-layer cloud threat detection out of the box"],"okYAYd":["Your display name has been changed successfully."],"olNCJZ":["Choose your own community experience!"],"onXi3e":["By Industry"],"onjURy":["How do I get certified or join hands-on labs?"],"ooEKM6":["Demonstrate your Wiz mastery"],"optr1f":["Monday - November 17th"],"orflwg":["Agents run in isolated Docker containers with no internet access, no CVE databases, and no external resources — the agent cannot browse the web, install packages, or access any information beyond what is in the container"],"orlSPx":["Gain visibility into every cloud resource in your environment and identify misconfigurations, with over 1,400 built-in rules. Detect and block misconfigurations early in your development cycle with IaC scanning."],"ot7qsv":["Clear all filters"],"oycB-7":["Security at AI speed, powered by context."],"ozOYrE":["Start Game"],"p2_GCq":["Confirm Password"],"p5y4pn":["Share practical insights and real-world experience"],"pFBC2A":["Why Join?"],"pFJP92":["Wizdom: London Sessions"],"pGWSZE":["Join the Team"],"pH2laq":["Learn about the full power of the Wiz cloud security platform. Built to protect your cloud environment from code to runtime."],"pIBdY3":["Use Cases"],"pJFgWQ":["We can visualize vulnerability attack paths on a security graph."],"pJpjwU":["Identity and Access Management"],"pNz3lv":["The key benefits of Wiz"],"pO6gQd":["Wiz Triage Challenge"],"pRCms6":["Integrates with"],"pRi2SX":["The websites where jobs at Wiz will be posted are:"],"pSz05C":["All actors"],"pTgaCc":["🔗 Positions Link Generator"],"pWmfQV":["Foundations"],"pXwsZN":["See what full-stack visibility changes. In the AI era, attackers can discover and exploit exposures at machine speed—but defenders with the Security Graph have something attackers never will: complete context across infrastructure, applications, identities, runtime, and data. Put that advantage to the test in a live CTF. Pit your favorite AI security tools against Wiz Red Agent on the same attack scenarios and see what AI can do when it's powered by the full context of your environment.\n"],"pY_4NT":["Are you staying for breakout sessions after lunch?"],"paSYoX":["Both Session 1 and 2"],"pax-DH":["Share:"],"pdhTU7":["Full review"],"pf2Lsc":["AI Threat Readiness: Outpace Modern Attackers"],"pfNCly":["XXXL"],"phzWwi":["Bourbon Steak Restaurant"],"pjkYWc":["Investigation Graph"],"pk-1Mf":["Detect and contain threats in real time"],"pl7R5z":["Do you scan for vulnerabilities in your cloud workloads (VMs, containers, serverless functions)?"],"pmfDAs":["My team won the Secret Keeper Achievement"],"pn2ogq":["Papua New Guinea"],"pnh2Ja":["NY Cyber Czar: Welcome to NYC"],"po-ple":["Wizmojis"],"poWt2S":["I agree that my contact information will be shared with Wiz and its \u003ca href=\"http://wiz.io/wizdom\" target=\"_blank\"\u003ePartners\u003c/a\u003e who may contact me about Wiz product releases, industry news, and events. You can unsubscribe at any time. Please contact Wiz's Partners directly or refer to their privacy policies for information on how they process your data. If you would like to revoke your consent, you may do so at any time by emailing \u003ca href=\"mailto:wizdom2025@wiz.io\"\u003ewizdom2025@wiz.io\u003c/a\u003e."],"ppa4Jh":["Watch on-demand"],"pq7gHu":["Position not found. Please check the position ID"],"puGTG2":["Has Fix"],"pwuiCT":["I agree that my contact information will be shared with Wiz and its Partners who can contact me for marketing purposes, including to share with me information about their services and products. For more information about how Wiz processes your personal data see Wiz's \u003ca href=\"https://wiz.io/privacy-policy\"\u003ePrivacy Policy\u003c/a\u003e. For more information about how Wiz's Partners process your personal data, please contact Wiz's Partners directly or refer to their privacy policies."],"q-m21P":["Bonaire"],"q0Sfm8":["Recognized \u003c0\u003e\u003c1\u003emarket leader\u003c/1\u003e\u003c/0\u003e by top analysts"],"q4la5W":["Relax \u0026 Recharge"],"q5Hyjj":["You can report suspicious recruiting related messages by forwarding the email to"],"q8yluz":["Your name"],"qAeqhI":["Mayotte"],"qBL0qL":["Technologies"],"qCj_gh":["$5,000"],"qDGyhf":["In the press"],"qDyqCh":["Affected packages and libraries"],"qEGD0F":["Middleware"],"qIYQhC":["Director of Vulnerability Management"],"qJLttu":["Topic"],"qJb6G2":["Try Again"],"qMACzp":["You'll see \u003c0\u003e10 real code snippets\u003c/0\u003e reviewed by our AI-powered triage agent for vulnerabilities."],"qMgKul":["Job title"],"qN9XXd":["Guernsey"],"qNEZ0W":["Add the Community workspace to your Slack desktop and Slack mobile app."],"qP2-4s":["Western Sahara"],"qQcK1A":["Wiz Incident Response"],"qQqegu":["Peer-to-Peer Exchange – Building the Golden Workflow"],"qR1d_5":["Get certified"],"qY7ueU":["Using the Wiz eBPF Runtime Sensor, combined with deep analysis of cloud and SaaS logs and rich application and code context, Wiz can:"],"qYYZGC":["Monaco"],"qZ7Dii":["Your organization's cloud security posture needs immediate attention. We strongly recommend reaching out to our experts for a comprehensive security assessment and remediation plan."],"qZKP6t":["Bringing a +1?"],"q_10QK":["Account Executive"],"qaO9G4":["Has initial access potential"],"qavm0B":["Devices"],"qc9sKJ":["All regions"],"qg770h":["Mailing State (Ohio, Ontario, etc.)"],"qgTbCB":["We are working hard to patch and eliminate risks."],"qgi2wZ":["Botswana"],"qjANqE":["Wiz ranked as the #1 CSPM, CNAPP \u0026 CDR by G2"],"qlnmzF":["Wiz gives us the ability to find the most critical vulnerabilities in our infrastructure to make sure we're solving for the issues that will have the biggest impact."],"qrRU-a":["Tuesday,"],"qsZIK5":["3:00 - 4:30 PM PT"],"qvWGzP":["Collapse all"],"qygrfN":["General Roadmap Session"],"r-hG_r":["My team won the Shield Bearer Achievement"],"r6EbBL":["Interested in a 1-to-1 demo?"],"r8D_lU":["Increase adoption and stickiness of your product for existing customers and unlock new use cases for prospective users."],"r9t6zg":["November 4"],"r9uo9-":["Dietary requirements or restrictions:"],"rEJeNQ":["Wiz at Black Hat 2026"],"rGw7Pk":["News \u0026 Press"],"rJ3Pt7":["What our team loves about Wiz"],"rLmL4z":["Vice President / Head of Security Operations"],"rQFCoH":["Israel"],"rQdXWy":["Kyrgyzstan"],"rQqP1P":["Europe"],"rRoe5e":["Wizdom: London"],"rSmISd":["Reunion"],"rVsp1w":["How to Play?"],"rVuapL":["Topics you would like to cover"],"rXQe-M":["Customer Reviews"],"rYuwwi":["Why Attend?"],"rauLEz":["Aruba"],"rdUucN":["Preview"],"rdcbuy":["Experience the Wiz platform today"],"reDzcw":["Protect Everything\u003c0/\u003e You Build and Run in the Cloud"],"rgOoVi":["A conversation with leaders from DeepMind, Anthropic, Irregular and Wiz"],"rjZpLn":["Learn"],"rkOfsg":["Conduct Regular Audits"],"rnAbrx":["Has CISA Kev exploit"],"rsUflA":["Something went wrong generating your certificate. Please try again."],"rvYwD0":["Community Slack"],"rw1pSS":["10:30 - 11:30 AM PT"],"rwCsyF":["United Arab Emirates"],"rx1loD":["Fiji"],"rxEvnk":["Webinar"],"rxWA39":["Welcome back!"],"s-MGs7":["Resources"],"s0uesk":["The perfect setting — from cultural icons to cloud pioneers."],"s11wys":["Get all the information you need about Cloud Risk, and how to mitigate it, from the experts at Wiz"],"s3ke8B":["Experiencing an incident?"],"s5jOrm":["$20,000"],"s9irlx":["Kazakhstan"],"sBJ5MF":["Sources"],"sBK7Z6":["We scan Infrastructure as Code (IaC) templates for security issues before deployment."],"sBQFjV":["Mozambique"],"sIE9gk":["Trusted by security teams all over the world"],"sIIkBy":["Impact, Exploitability, and Mitigation Steps"],"sLECWi":["Guadeloupe"],"sLu4l2":["Using graph context and ownership mapping, Wiz:"],"sNzEjO":["Agentless scanning: Wiz's agentless scanning provide visibility into every resource in your environment and every technology running on top of them, across virtual machines, containers, and serverless."],"sQia9P":["Log in"],"sR5UHc":["No episodes found"],"sah5If":["Join Wiz's Customer Incident Response team for a practical guide to handling emerging supply chain attack TTPs — and leave with a real-world tested playbook for uncovering supply chain attacks, limiting the blast radius, and achieving complete mitigation."],"sc_hbk":["Create new label \"",["inputValue"],"\""],"scu3wk":["Model"],"sdeZ26":["Yes, I agree to receive marketing emails and calls in line with Wiz's \u003ca href=\"https://www.wiz.io/privacy-policy\"\u003eprivacy policy\u003c/a\u003e."],"seWmno":["Master bug bounty hunting"],"se_Yqn":["What's New?"],"sfl1gY":["Proactive Prevention"],"sfwBnA":["Poland"],"sgNKsT":["Runtime protection and threat detection for your workloads"],"sgdNSF":["Cloud-native expertise on call"],"sgvjwG":["DevSecOps"],"shq3dj":["Best User Experience I have ever seen, provides full visibility to cloud workloads."],"si-1TP":["Libyan Arab Jamahiriya"],"siffd-":["Download event collateral materials"],"sj-Yr2":["My team won the Response Ranger Achievement"],"sjIe4N":["Visibility through AI-BOM"],"sjRNAr":["Detective mode activated… Let's see what really happened."],"sjgdCa":["Meet our Leadership"],"skKTDB":["Chad"],"smCaVK":["Wiz Booth"],"srd1FO":["The future is AC/DC: the Agent Centric Development Cycle"],"ss3YZQ":["Lebanon"],"sta3kf":["Customers rate Wiz \u003c0/\u003e#1 in cloud security"],"stjfz2":["Published at"],"suigXz":["Greece"],"svAaIv":["Latest discoveries"],"swtPMv":["Remove noise and wasted effort on false positives with cloud context, cross-layer correlation, and behavioral analytics."],"szjGix":["Wizdom: New York Speakers"],"t-nQm6":["Code to Cloud Context"],"t0qQZE":["Confirm your password"],"t1RF_q":["Cayman Islands"],"t2QO_2":["Saint Pierre and Miquelon"],"t2SHAJ":["Based on methodology used to find bugs on the most popular companies"],"t2rBZB":["Correct"],"t31ktB":["Our Wiz account team is focused on our success. It was thanks to this partnership that we were able to hit zero critical issues in a matter of weeks, while significantly reducing cloud costs, and preventing future issues by scanning in our pipelines prior to deployment."],"t3JQx_":["Nominator first name"],"t7Vyp5":["Master essential cloud security skills"],"t83X8Y":["Customers rate Wiz #1 \u003c0/\u003ein cloud security"],"tCN0kq":["AI Vanquisher — this human just defeated an AI agent"],"tCstiQ":["Feel free to share any additional information with us"],"tEmKxX":["Closing Remarks"],"tFc3gQ":["The field contains invalid text"],"tHPrTV":["Hungary"],"tHXdNK":["Agentless visibility \u0026 risk prioritization that proactively reduces the attack surface"],"tK8fzT":["Nominee email address"],"tKT93_":["See how Wiz safeguards your AI usage"],"tMq1xU":["Somalia"],"tPQi71":["Korea"],"tPeAHE":["Lithuania"],"tQdGl2":["Tweet"],"tQpob9":["See Full Agenda"],"tRxyew":["All articles"],"tS-8Ms":["You solved the challenge!"],"tX1oEz":["Critical risk prioritization: Prioritize risk remediation with a single queue of prioritized risk providing the best next action for your teams to take, enabling all your teams to collaborate and improve your security and compliance posture."],"tZtPRG":["Mongolia"],"t_baUA":["Do you use a Cloud Security Posture Management (CSPM) tool to assess your cloud environment?"],"ta8MBZ":["Wiz Vulnerability Database"],"tdZpCd":["Trust Center"],"tfRMjR":["Pulse Stage O2"],"thRyi6":["High-profile Vulnerability"],"tk1Nk_":["Wrong"],"tk9Mvx":["Cloud incidents need cloud-specific expertise. Wiz Incident Response delivers the right team and technology to contain threats quickly, limit impact, and restore confidence in your environment."],"tl45tj":[["tagName"]," Vulnerabilities"],"toPXyR":["Please insert a valid phone number"],"trNmBM":["Togo"],"tst44n":["Events"],"ttiuZu":["Asia Pacific"],"tu1pwS":["Wiz Defend"],"tvBjci":["Domain-Specific Checklists"],"txAvvp":["New threat actors, campaigns, techniques, and malware"],"tz9s9x":["Cloud Security Courses"],"tzdgE1":["Breakout sessions"],"u-_OOb":["Introduction"],"u-p3ki":["We can detect overly permissive IAM policies and roles."],"u2Fg0e":["We automatically detect exposed credentials"],"u3FB8Z":["Watch how Wiz turns instant visibility into rapid remediation."],"u3wRF-":["Published"],"u8JHrO":["Clear filters"],"u9BKlM":["Latest from our podcast"],"uA5QMo":["London event"],"uAQUqI":["Status"],"uAzDPW":["Walk away with insights on how Wiz Defend + Daylight MDR work together in practice, what \"zero threat\" actually looks like for a fast-growing AI company, and why context—not just alerts—is what separates real MDR from alert forwarding."],"uImFCC":["Armenia"],"uJ-Ve2":["Region"],"uJRjos":["Please copy the link manually."],"uK3_63":["See how Wiz protects you against AI threats"],"uPut5m":["Thursday, August 6, 2026"],"uSOilm":["Prioritize and reduce risk with end-to-end visibility"],"uT447A":["30-minute expert session"],"uYalQI":["Seamlessly integrate with Wiz to deliver complementary solutions with enhanced functionality, offer greater customer benefits, and tap into new business opportunities and revenue streams."],"u_S-jA":["We can detect over-privileged permissions on serverless workloads."],"u_TfmK":["Schedule a meeting at RSAC"],"uaqp6S":["World class research into cloud attacks"],"ubMngG":["Transform your cloud and AI security operating model with a single platform that enables collaboration between developers and security"],"udiWWI":["Conference"],"udjL-1":["Aner Reiner"],"uhnEuH":["Thank you"],"uj8VF6":["Start secure from code to CI/CD to cloud"],"ujGlBo":["Attend Code Summit (virtual)"],"ukis8m":["Wednesday - November 19th"],"ulNR-X":["Bosnia and Herzegovina"],"umGaDy":["Bulgaria"],"umtW2J":["This is a limited-invitation session. Contact your Wiz POC for more information."],"uoz_L1":["Service type"],"uqSEm2":["Let's get in touch"],"uqun6A":["Jordan"],"urXs97":["Strategic Event"],"uvIqcj":["Workshop"],"uvMbtd":["What are the components of a cloud security assessment?"],"uwueRD":["Cloud Security Assessment"],"uzTDL4":[["0","plural",{"one":["Featured event"],"other":["Featured events"]}]],"v0ccu5":["It's not about where you are — it's about where you're going. Wizdom helps you get there faster."],"v4CtjI":["Accidental data exposure"],"v4MqJv":["Join Wiz for an executive roundtable hosted by Alon Schindel, VP of Threat Research \u0026 AI, exploring how AI is reshaping both the threat landscape and modern security operations. We'll discuss how attackers are leveraging AI, how to evaluate AI security capabilities, the new risks emerging in cloud environments, and how security teams can use AI to detect, prioritize, and respond faster."],"v4fiSg":["Check your email"],"v4uh_J":["Cloud Native Workloads Demand a Cloud Native Runtime Solution"],"v5ktBc":["Ready to see Wiz in action?"],"vCn-7U":["Incident response services"],"vERlcd":["Profile"],"vGzZWo":["Tonga"],"vJfJ-u":["Energy"],"vQPCWm":["Sri Lanka"],"vQ_yB-":["3:15PM - 3:35PM"],"vUlie8":["Search anything..."],"vZxn2Y":["Eliminate critical exposures, scan with AI"],"v_CdYa":["Join the first-ever Wizlympics, the cloud-security Olympic games! Use our sensor to avoid fake cloud services and collect real cloud services to win. Let the games begin!"],"vaVv8o":["AI Research"],"vdFw0m":["Sponsored by Wiz"],"veAi__":["Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses. Start your assessment!"],"vf6D2v":["See all reviews"],"vgt6y4":["Enables response and containment before business impact"],"vhZAeL":["10x higher efficiency"],"vkkkEn":[["name"]," partner directory item"],"vm8MtN":["The reviews are in"],"voqWOr":["You're all set!"],"vp0nbc":["Lead by example"],"vq5dSy":["We scan container images for vulnerabilities prior to deployment."],"vqSBim":["By signing up for the Community, I acknowledge that I have read and agree to the \u003ca href=\"https://legal.wiz.io/legal#communities-t-o-s\" target=\"_blank\"\u003eCommunity Guidelines\u003c/a\u003e and Wiz's \u003ca href=\"https://www.wiz.io/privacy-policy\" target=\"_blank\"\u003ePrivacy Policy\u003c/a\u003e."],"vs3Wtl":["Kick off your Black Hat 2026 experience in style!"],"vsekIw":["AI is heavily based on open-source datasets, models, and pipeline tools with limited security controls.\n    Vulnerabilities exploited in the supply chain can not only compromise the AI system but also extend to other production components.\n    Attacks may involve model subversion or injecting adversarial data into compromised datasets."],"vtGGEp":["See the full list"],"vuJh6h":["Your SecOps Team at Cloud Speed"],"vvA_9-":["Cloud \u0026 AI Security"],"vw-Elj":["AI-Powered Code-to-Cloud Defense"],"vxUtn8":["happy hour"],"w-Ei0L":["Please note that the Wiz MVP Program is only open to current Wiz customers"],"w4rOrx":["Interactive walkthrough of how Wiz simplifies cloud security."],"w6uMH2":["Cambodia"],"w7hwVU":["Free Cloud Risk Assessment"],"w9k801":["Iraq"],"wArYzY":["AI Security"],"wBGokl":["Sign up to receive the latest updates in cloud security directly to your inbox"],"wDO6zE":["Advanced research into cloud threats"],"wDSiNh":["\"The Wizdom Community is a central place to go for questions about onboarding, configuring and implementing Wiz features. If there's something you want to see changed or a gap to be filled, it's all right there at your fingertips.\""],"wGbiSC":["Attack surface scanner (reachable, exploitable)"],"wHnHp2":["By registering, you acknowledge that you have read and agree to the \u003c0\u003eWiz Privacy Policy\u003c/0\u003e."],"wIiKpA":["Sample Cloud Security Assessment Report"],"wInVp1":["WIN with us \u003c0/\u003e"],"wJMoGX":["Join our experts to hear real incident response stories from real breaches, with practical lessons and takeaways for defenders."],"wJaJqs":["PEACH"],"wL3cK8":["Latest"],"wLr8vQ":["Hidden vulnerabilities: It's a common misconception that a system is secure if everything seems fine on the surface. Many vulnerabilities lie dormant, only to be exploited when least expected. You can unearth these silent threats through cloud security posture assessments and mitigate them before they become full-blown issues."],"wMHvYH":["Value"],"wNf6uF":["Schedule a 30-minute live product demo with expert Q\u0026A"],"wOXsal":["Live Demo"],"wQ2Gbh":["DevSecOps Engineer, Fiverr"],"wS7dPo":["Posts by ",["fullName"]],"wTsRJd":["Read the blog \u003c0/\u003e"],"w_CsdC":["Wiz Code"],"waiDjs":["Cloud Asset Inventory and Visibility"],"wdxz7K":["Source"],"wfCsZf":["Attackers move at machine speed. Wiz makes you faster. Surface your riskiest exposures and shut down threats before they're exploited. Get a demo."],"wfKZhy":["Social Security or tax identification number"],"wkjzL5":["We monitor data flows between our cloud assets and third-parties."],"wlUNax":["Real SAST Findings"],"wq5Kd5":["Bug Bounty Masterclass"],"wtaqzP":["Indicators of compromise (IOCs)"],"wxriu9":["Your pass includes access to all keynotes, breakout sessions, networking events, meals, and conference materials. Training courses may require separate registration."],"x0GG8L":["Engage on Slack"],"x4WJD2":["Senior IT Technician"],"x76C_t":["Guinea-Bissau"],"x8GeCD":["Display name updated"],"xBVetu":["Has public exploit"],"xDsmP9":["Agenda"],"xIfKEA":["All categories"],"xLFTwf":["Speakers"],"xNlTFr":["Cyber Model Arena"],"xOvvOo":["Siloed tools mean less context and slower response"],"xPIgZA":["We use a tool to prioritize and manage vulnerabilities across our cloud environments."],"xR7k0Y":["Philippines"],"xSivXY":["Gain complete visibility into your multi-cloud environment with agentless scanning"],"xU1qXy":["CISO CONFESSIONS"],"xVtOyQ":["Cyprus"],"xYilR2":["Media"],"xd4hpv":["An exclusive gathering of cloud security leaders, innovators, and practitioners."],"xdA_-p":["Tools"],"xedxPb":["Geography"],"xgb6MQ":["Podcast \u0026 newsletter by cloud security pros, for cloud security pros"],"xhKfwK":["Already a partner?\u003c0\u003eLog in\u003c1/\u003e\u003c/0\u003e"],"xjMNkv":["Join us in London"],"xowcRf":["Terms of Service"],"xtG1lm":["CVEs added monthly"],"xtH599":["Claim Certificate"],"xtixwX":["Director of Application Security"],"xtzjDN":["Watch the full video from the event"],"xzWjqC":["Wiz AI-APP = Holistic security born in the cloud"],"y0DAVa":["My team won the Risk Reducer Achievement"],"y1BZvY":["Available PDF revisions for download"],"y3lI2Q":["Apparel size (top)"],"y4CtQD":["Indonesia"],"y5Qdr2":["Secure every stage of your SDLC to gain visibility \u0026 prevent risks in code, pipeline, registries and images"],"y6s8j1":["London, UK"],"y7ydbz":["Unified Security Policy From Commit to Runtime"],"y81Mn2":["Attack surface scanning"],"y9BYLH":["Prevent risks before they reach production with developer guardrails–enforcing a zero critical issues policy in production environments."],"yDXBv4":["Vulnerabilities Scanning"],"yDxQmr":["Looking Ahead: What We're Building for 2026"],"yF1kh7":["Join the team"],"yIRev4":["Create a password"],"yIh-nF":["Join Wiz and our sponsors for a memorable party during Black Hat\n                  2026!"],"yM-Nnb":["Schedule your proctored exam, online or onsite at a test center today."],"yQ2kGp":["Load more"],"yRZyYq":["CVE ID"],"ySt79A":["Take me to London"],"yU2Rfe":["We are working hard to maintain industry leading Post Quantum Readiness Score."],"yXF1X7":["Contact us now"],"yYxB17":["Clear all"],"yZ2Uoi":["A multidisciplinary group of security experts devoted to identifying, investigating, and neutralizing threats to the modern cloud environment."],"y_8NWL":["Employees can choose to work from one of our global offices, fully remote, or a mix of the two."],"ybyak3":["Please check the form and try again"],"yd_Ltz":["CISA KEV exploit"],"ygFCNV":["In this hands on competition, you'll use Wiz across Defend, Code, and Cloud to investigate misconfigurations, trace vulnerabilities, and defend CISOtopia's cloud environment against real-world attack techniques."],"yhxFLZ":["Events \u0026 Webinars"],"yjkELF":["Confirm New Password"],"ykyODs":["Failed to delete account"],"ymgsJd":["Top industry leaders chatted with us"],"yn1Jhl":["Kiribati"],"ypS2RC":["Identifying known vulnerability patterns in source code (Python, Go, Java)"],"yqSKG6":["Reach out to our sales team to answer your questions about Wiz's cloud solutions and connect you to helpful resources like reports, research, and case studies."],"yrrdJP":["Wiz Cloud Core"],"ysQ-nD":["Richard Frost"],"ytyI_J":["Our locations"],"ywiRLX":["Oh no... Something went wrong!"],"yx_fMc":["High"],"yzwOid":["Making Magic Happen"],"z03k4N":["Wiz is a hybrid company rooted in flexibility."],"z0t9bb":["Login"],"z5Kyx7":["One-Click Remediation"],"z7ht1P":["Martinique"],"z7q_DL":["Forensics"],"z8F4_3":["Your email"],"zD3jNw":["Read full story"],"zDUlT7":["top threats"],"zFbSBo":["Cloud Risk Assessment"],"zGbOVS":["Company Name"],"zJfCcx":["Samoa"],"zLsfil":["The field contains invalid characters"],"zMWHsv":["Budget, Boards \u0026 the Business"],"zNTAKG":["Happy Hour sponsored by WIN Partners"],"zO4kir":["Bug Bounty MasterClass"],"zR77i0":["Proactive risk mitigation with context"],"zSK15N":["Why become \u003c0/\u003ean MVP?"],"zSjLBQ":["November 3-5   |   NYC"],"zTqYgg":["Can you automatically discover and classify sensitive data across your cloud environment?"],"z_Bl3V":["The Wiz MVP Program brings together forward-thinking leaders who are driving cloud transformation and shaping the future of security."],"zbXrv_":["Investigations start with complete cloud and runtime context. Wiz instantly connects the dots: identifying attack paths, pinpointing root cause, and guiding focused remediation."],"zdAhU_":["Applications must be finalized within 12 weeks. After 12 weeks, the application will expire and must be submitted again."],"zk7UvH":["Cloud Security Risk Assessment Tool"],"zogv8V":["Our recruiting processes will not ask you to provide financial information, including but not limited to:"],"zrXVzp":["Check if a domain supports PQC"],"zrhWlq":["Nepal"],"ztHB6a":["Neurons \u0026 Negronis"],"zuXEC4":["Our first-ever user conference. Coming to NYC and London."],"zucql-":["Menu"],"zwWKhA":["Learn more"],"zzT8N4":["Follow along on our website"]},"landingPage":{"_locales":["en_US"],"id":"ctnWrKX9S7m-f4RPk82RhA","title":"Wiz Go for Startups","sections":[{"__typename":"PopupHeroSectionRecord","mediaType":"animation","title":"Cloud Security Built for Startup Speed","caption":"Wiz Go for Startups","description":"Wiz Go is a complete cloud security bundle for fast-moving teams—offering full visibility, protection, and flexibility with startup-friendly pricing.","heroVideo":null,"heroImage":null,"heroAnimation":{"url":"https://www.datocms-assets.com/75231/1748421338-hero-animation.json"},"ctaLabel":"Apply now","centerAlignment":false,"formId":{"marketoFormId":1001},"formHeadline":"","formContent":"","showG2CountInFormPopup":false,"formCtaLabel":"","postSubmitMessageTitle":"","postSubmitMessageContent":"","secondaryCtaLabel":"Download Wiz Go Datasheet","secondaryCtaLink":"https://www.datocms-assets.com/75231/1748419296-wiz-go-for-startups.pdf","showCustomerLogosBlock":false},{"__typename":"CustomerLogosSectionRecord","theme":{"value":"white"},"customerLogoSection_title":"Trusted by the most innovative startups in the world","customers":[{"id":"46357770","name":"Wolt","logo":{"url":"https://www.datocms-assets.com/75231/1659145362-62d9c6456eea0396432058ac_wolt_logo-1.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"44081612","name":"Redis","logo":{"url":"https://www.datocms-assets.com/75231/1772031063-redis_logo_red_rgb.svg"},"whiteLogo":{"url":"https://www.datocms-assets.com/75231/1673110024-redis_white2.svg"},"logoVisualWeightScaleFactor":1.4},{"id":"46357797","name":"Atlan","logo":{"url":"https://www.datocms-assets.com/75231/1660518792-atlan-blue-1.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"74511716","name":"Fiverr","logo":{"url":"https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"46097237","name":"Lili Bank","logo":{"url":"https://www.datocms-assets.com/75231/1659134461-lili.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1.2},{"id":"55721016","name":"LogicGate","logo":{"url":"https://www.datocms-assets.com/75231/1665697477-logicgate-inc-logo-vector-1.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},{"id":"ZjUvIR9JQIyJnoyUqKcMqw","name":"Otto","logo":{"url":"https://www.datocms-assets.com/75231/1713249970-logo.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"44081636","name":"Plaid","logo":{"url":"https://www.datocms-assets.com/75231/1658682450-62d9a61fd7693f8697c2fb6b_plaid-logo.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"46501978","name":"Tide","logo":{"url":"https://www.datocms-assets.com/75231/1659875369-tide-logo-blue-noreg.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},{"id":"37630684","name":"Yotpo","logo":{"url":"https://www.datocms-assets.com/75231/1656632744-yotpo-logo.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1}],"customerLogoSection_content":""},{"__typename":"FeatureListStorySectionRecord","theme":{"value":"white"},"caption":"","title":"The all-in-one package for startups","featureListStorySection_body":"Wiz Go is our tailored security package designed for lean, fast-moving startups. It bundles the key capabilities across:","features":[{"id":"NXn4P9kZScaNzRr2GlXwlQ","title":"Wiz Code","description":"Wiz Code enables you to secure every stage of your SDLC to gain visibility \u0026 prevent risks in code, pipeline, registries and images.","icon":{"url":"https://www.datocms-assets.com/75231/1745330201-group-1000003488.svg"},"storyImage":null,"storyAnimation":{"url":"https://www.datocms-assets.com/75231/1726146342-iac-scanning.json"},"storySolutionAnimation":null},{"id":"b9OutNM8T4yA4Mz8Fu8zNg","title":"Wiz Cloud","description":"Wiz Cloud provides agentless visibility \u0026 risk prioritization that proactively reduces the attack surface.","icon":{"url":"https://www.datocms-assets.com/75231/1747043563-group-1000003137.svg"},"storyImage":null,"storyAnimation":{"url":"https://www.datocms-assets.com/75231/1727182099-security-graph.json"},"storySolutionAnimation":null},{"id":"OrES_dznQlWxqphNPhBphQ","title":"Wiz Defend \u0026 Runtime Sensor","description":"Wiz Defend and the Runtime Sensor provide threat detection and response plus runtime protection born for cloud.","icon":{"url":"https://www.datocms-assets.com/75231/1747043549-group-1000002132.svg"},"storyImage":null,"storyAnimation":{"url":"https://www.datocms-assets.com/75231/1727250675-k8-runtime-protection.json"},"storySolutionAnimation":null}]},{"__typename":"FeatureListSectionRecord","theme":{"value":"light"},"caption":"Wiz Go for Startups","title":"Benefits of Wiz Go for Startups","featureListSection_body":"Designed for speed, built for scale, priced for startups.","features":[{"id":"HGXcMZPhQJu4EVNBpW9-aw","title":"Secure without slowing down","description":"Security that fits the pace of product teams—not the other way around.","icon":{"url":"https://www.datocms-assets.com/75231/1747906376-iconleft.svg"}},{"id":"ZeZb0oisQT-zkOsmcR3alA","title":"Grows with you","description":"From MVP to scale, Wiz Go supports your next stage of your cloud security maturity journey.","icon":{"url":"https://www.datocms-assets.com/75231/1693318944-group-1000002530.svg"}},{"id":"Sy2XtRGdTfuiKQplPFEFrg","title":"Small security team? No problem.","description":"Built for lean teams, with clear priorities and automation that works out of the box.","icon":{"url":"https://www.datocms-assets.com/75231/1724438693-1692874764-group-1000002780.svg"}}]},{"__typename":"SingleMediaSectionRecord","singleMediaSection_title":"Move fast by focusing on what actually matters","singleMediaSection_caption":"Wiz security graph","singleMediaSection_description":"The Wiz Security Graph shows you what’s truly at risk and helps you focus on the issues that matter most.","video":null,"animation":{"url":"https://www.datocms-assets.com/75231/1727182186-attack-path-analysis.json"}},{"__typename":"FeatureCaseStudiesSectionRecord","theme":{"value":"dark"},"featureCaseStudiesSection_title":"Why startups choose Wiz","caseStudies":[{"id":"bUkODnZ3R_GXQyDUk-2x7w","slug":"fiverr-zero-criticals","title":"How Fiverr reduced critical vulnerabilities to zero with a collaborative security program ","customer":{"name":"Fiverr","industry":"business_services","brandColor":{"hex":"#37AE69"},"logo":{"url":"https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg"},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"video":null,"coverImage":{"portrait":{"srcSet":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25\u0026fit=crop\u0026h=700\u0026w=500 125w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5\u0026fit=crop\u0026h=700\u0026w=500 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75\u0026fit=crop\u0026h=700\u0026w=500 375w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026h=700\u0026w=500 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5\u0026fit=crop\u0026h=700\u0026w=500 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2\u0026fit=crop\u0026h=700\u0026w=500 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3\u0026fit=crop\u0026h=700\u0026w=500 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4\u0026fit=crop\u0026h=700\u0026w=500 2000w","webpSrcSet":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 125w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 375w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026fm=webp\u0026h=700\u0026w=500 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4\u0026fit=crop\u0026fm=webp\u0026h=700\u0026w=500 2000w","sizes":"(max-width: 500px) 100vw, 500px","src":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026h=700\u0026w=500","width":500,"height":700,"aspectRatio":0.7142857142857143,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLExYTDhgQFRkYDhMNFhUMFxoZGBYVFiEaHyslHR0oHSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHRAOHS8cFhwvLy8vLy8vLy8vLy8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAEQMBIgACEQEDEQH/xAAZAAADAQEBAAAAAAAAAAAAAAAABQYHBAH/xAAiEAABBAECBwAAAAAAAAAAAAAAAQIDBBEFUQYSExQVMUH/xAAXAQADAQAAAAAAAAAAAAAAAAACAwQB/8QAGREBAAIDAAAAAAAAAAAAAAAAAAECEiEx/9oADAMBAAIRAxEAPwB0nELWzYyOKmt9RqYMulvYse/pUaHfjc1EVwMtrXa08s4BR3MO6AAoxZbfruZIqodeiyyJIiZUADkmnVNzSbnoALUv/9k="},"landscape":{"srcSet":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25\u0026fit=crop\u0026h=600\u0026w=1000 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5\u0026fit=crop\u0026h=600\u0026w=1000 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75\u0026fit=crop\u0026h=600\u0026w=1000 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026h=600\u0026w=1000 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5\u0026fit=crop\u0026h=600\u0026w=1000 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2\u0026fit=crop\u0026h=600\u0026w=1000 2000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3\u0026fit=crop\u0026h=600\u0026w=1000 3000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4\u0026fit=crop\u0026h=600\u0026w=1000 4000w","webpSrcSet":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.25\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 250w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.5\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=0.75\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 750w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 1000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=1.5\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 1500w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=2\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 2000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=3\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 3000w,https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?dpr=4\u0026fit=crop\u0026fm=webp\u0026h=600\u0026w=1000 4000w","sizes":"(max-width: 1000px) 100vw, 1000px","src":"https://www.datocms-assets.com/75231/1699638781-brooke-cagle-tlg2hcpitze-unsplash.jpg?fit=crop\u0026h=600\u0026w=1000","width":1000,"height":600,"aspectRatio":1.6666666666666667,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLDxILDhgbGg4UDhkVDREMFx8ZGCITFhUaIC0jGh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0NFjsdFhw7NS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIAA8AGAMBIgACEQEDEQH/xAAXAAADAQAAAAAAAAAAAAAAAAAABQYE/8QAHRAAAQQDAQEAAAAAAAAAAAAABAABAgMFBhJBEf/EABcBAAMBAAAAAAAAAAAAAAAAAAIDBQH/xAAZEQACAwEAAAAAAAAAAAAAAAAAEQECQTH/2gAMAwEAAhEDEQA/AKDL5qdNLvGSwYfYb77eO0iPldcO/wBkkePKvFOZml6hw1Qy/wBkzhIY7SaaFObCxBoEX68QkT0oVrCP/9k="}}},{"id":"55608971","slug":"redis","title":"Real-time data platform Redis gets total multi-cloud visibility with Wiz  ","customer":{"name":"Redis","industry":"technology","brandColor":{"hex":"#FF4438"},"logo":{"url":"https://www.datocms-assets.com/75231/1772031063-redis_logo_red_rgb.svg"},"whiteLogo":{"url":"https://www.datocms-assets.com/75231/1673110024-redis_white2.svg"},"logoVisualWeightScaleFactor":1.4},"video":null,"coverImage":{"portrait":{"srcSet":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.25\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 125w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.5\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.75\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 375w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=1.5\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 750w","webpSrcSet":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.25\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 125w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.5\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.75\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 375w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=1.5\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500 750w","sizes":"(max-width: 500px) 100vw, 500px","src":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=700\u0026w=500","width":500,"height":700,"aspectRatio":0.7142857142857143,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBg0NCAgUChYXDhUQDQ4NDhYNDRENFxMZGBYVFhUaHysjGh0oKSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDgwOEA0NHS8cFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAEQMBIgACEQEDEQH/xAAZAAEBAAMBAAAAAAAAAAAAAAAABgMEBwH/xAAhEAABAwMEAwAAAAAAAAAAAAAAAQIDBAUxFSFBURMyYv/EABYBAQEBAAAAAAAAAAAAAAAAAAMCAf/EABcRAQEBAQAAAAAAAAAAAAAAAAARQSH/2gAMAwEAAhEDEQA/AOjx1UbX5M0k7HJspDzXV7J/bk3YLsrm7uBvSTim8rewT2qfQKqYgZrmslRnk3o65UjyADpseai7sAG1kf/Z"},"landscape":{"srcSet":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.25\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.5\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.75\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 750w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 1000w","webpSrcSet":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.25\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 250w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.5\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 500w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026dpr=0.75\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 750w,https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fm=webp\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000 1000w","sizes":"(max-width: 1000px) 100vw, 1000px","src":"https://www.datocms-assets.com/75231/1668018539-1568905394732.jpg?crop=focalpoint\u0026fit=crop\u0026fp-x=0.44\u0026fp-y=0.61\u0026h=600\u0026w=1000","width":1000,"height":600,"aspectRatio":1.6666666666666667,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLChMLDhgQDhUNDh0RFg0VFx0ZGBYTIhUmJisjHR0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg4OHA0NEi8oFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIAA8AGAMBIgACEQEDEQH/xAAYAAACAwAAAAAAAAAAAAAAAAAGBwAEBf/EAB0QAAEEAwEBAAAAAAAAAAAAAAEAAgMEBRESIQb/xAAVAQEBAAAAAAAAAAAAAAAAAAACA//EABcRAAMBAAAAAAAAAAAAAAAAAAACIQH/2gAMAwEAAhEDEQA/AGJYycYg6KrV87DI3naErf0LJKR00rIpZUlziCVJmGiwP7mXZEzwqJfXsw9w1sqJY0Bq0//Z"}}}]},{"__typename":"CustomerQuoteSectionRecord","customerQuoteSection_caption":"Feedback","customerQuoteSection_title":"See what our users think about Wiz","customerQuoteSection_description":"","theme":{"value":"light"},"quotes":[{"id":"H_PY4rCnTAWOFRrZ-4meNg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"From a CIO perspective, Wiz has helped us strengthen how we understand and manage cloud security risk. It provides clear visibility across complex cloud environments, helps teams prioritise the issues that matter most, and supports more effective collaboration between security, infrastructure, and engineering teams...Overall, Wiz... has helped us move faster while maintaining the deep levels of security oversight we expect. - Alasdair Redmond, CIO at Endava","externalLink":""},{"id":"FM3snWeIQPGv9eaPFN3XbQ","__typename":"CustomerTestimonialWebRecord","source":"gartner","quote":"As a CISO, finding a cloud security platform that delivers both breadth and usability is rare.","externalLink":""},{"id":"Pnah69myThav0pvHojeJig","__typename":"CustomerTestimonialWebRecord","source":"gartner","quote":"Wiz is a one-stop shop for all of your cloud cybersecurity needs. The velocity at which they release new features is impressive (daily).","externalLink":""},{"id":"Yd-eiCitTBmJq3Cjw96gbg","__typename":"CustomerTestimonialWebRecord","source":"peerspot","quote":"[Wiz's] contextual risk insights have transformed how our teams prioritize and remediate cloud exposures.","externalLink":"https://www.peerspot.com/vendor_dashboards/wiz/reviews"},{"__typename":"CustomerTestimonialRecord","id":"XOg4zt25SWWiQtuYQ4_iHA","quote":"Wiz’s Attack Path Analysis doesn't just list vulnerabilities. It maps how an attacker could move... we can ignore 90% of the noise and focus our engineering resources on the 1% of issues that represent a true breach path. [Wiz has] moved from patching everything to securing what matters.","customer":{"name":"Octus","logo":{"url":"https://www.datocms-assets.com/75231/1780913912-octus.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Chief Technology Officer","attributionName":"Vishal Saxena","attributionFace":{"url":"https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1779128835-vishalsaxenaoctus.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLERURDhYQDg0NEBENFg0YFx8ZGCIVIhUaHysjHR0oHSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDw0OHBANFi8cFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAEBAAMAAAAAAAAAAAAAAAAABgMFB//EACAQAAICAgICAwAAAAAAAAAAAAABAgMEBQZBEYESITH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAgME/8QAGBEBAQEBAQAAAAAAAAAAAAAAAAEDEgL/2gAMAwEAAhEDEQA/AKvbUzqoZN0fKV/sz8g3l0ammS1G9nG5eX2EyPPbquui44yBp9PtJZGJHw+gJcx2kuVXr8SJCxS+pIA2IxccXyLFjJNgAjTP/9k="}}},{"id":"LOHgpnSLR2uyYHWzLQM1sg","__typename":"CustomerTestimonialWebRecord","source":"gartner","quote":"Our overall experience with Wiz has been very strong. It delivers fast time to value, strong cloud visibility and an intuitive experience that helps teams investigate and prioritize issues effectively.","externalLink":""},{"id":"BrJkB3c9TQ6ELaIWuDZO7w","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"No product in cloud security can match Wiz's capabilities. ","externalLink":""},{"id":"CriQ9gkdTueQ9xoOwfIukA","__typename":"CustomerTestimonialWebRecord","source":"gartner","quote":"As a CISO, finding a cloud security platform that delivers both breadth and usability is rare.","externalLink":""},{"id":"ctTk7sLHSdu3sgbUdEQ6_Q","__typename":"CustomerTestimonialWebRecord","source":"peerspot","quote":"Wiz significantly helped with our compliance requirements.","externalLink":""},{"id":"IkYnG2OPSZeVnnDcXsU-2A","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz helps me view new and old vulnerabilities across the cloud infrastructure and aligns compliance with industry standards. I like the compliance status chart and severity-sorted findings, making it easier to prioritize remediation based on severity levels.","externalLink":"https://my.g2.com/wiz-wiz/review_activity/12738840?filters%5Bnps_score%5D=\u0026filters%5Bperiod%5D=\u0026filters%5Bprimary_region%5D=\u0026filters%5Bread%5D=\u0026filters%5Breview_source%5D=\u0026filters%5Bstatus%5D=\u0026filters%5Btemplate_keyword%5D=\u0026filters%5Bupdated_at_gt%5D=2025-11-14T00%3A00%3A00-06%3A00\u0026filters%5Bupdated_at_lte%5D=2026-05-14T23%3A59%3A59-05%3A00\u0026max=25\u0026order=most_recent\u0026page=1#survey-response-12738840"},{"id":"YXa9Oi8VSwSb5mluO-ykaw","__typename":"CustomerTestimonialWebRecord","source":"peerspot","quote":"[Wiz's] powerful AI engines also recommend best solutions to apply to identified vulnerabilities and identified gaps related to coding scenarios especially. It also suggests the best way to patch vulnerabilities and other related issues. This is really helpful.","externalLink":""},{"id":"ZeZLABonTLSKZB-Ms37YnQ","__typename":"CustomerTestimonialWebRecord","source":"peerspot","quote":"Wiz is very effective and very advanced compared to other solutions. It is helpful to use and user-friendly from the customer's view. It is easy to use, easy to handle, and easy to customize for our scenarios especially.","externalLink":""},{"id":"SNxbkVjhQXKrHjlKgOvlqg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"I use Wiz to solve visibility issues, find exposed assets, and assess workloads in clouds. It also helps detect misconfigurations and minimize cybersecurity risks, while the implementation is simple and fast, providing visibility of the environment in a short time.","externalLink":""},{"id":"BhthwzaWSEK_-DrJnE6ngw","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"[Wiz] provides a very explanatory graphic that helps prioritize and resolve threats, from development to production deployment.","externalLink":""},{"id":"HYOdeYmWSpCl75pKgpa2bw","__typename":"CustomerTestimonialWebRecord","source":"peerspot","quote":"Wiz distinguished itself immediately in the PoC, surfacing important issues that were entirely missed by both the products we were already using and other CNAPP's that we tested.","externalLink":""},{"id":"dNVoL7cRStKn10mUp350UA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz has been a game-changer for our hospital's cloud security strategy. Its comprehensive visibility, real-time alerting capabilities, and user-friendly interface have markedly improved our ability to secure our cloud infrastructure.","externalLink":""},{"id":"JJdofUDvT4qKkbxyhs-Dcw","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"I find Wiz incredibly useful for identifying the security weaknesses of cloud applications and infrastructure. It helps detect and close vulnerabilities and threats effectively.","externalLink":""},{"id":"MHNL9Y6uRaKizz4m18GgyQ","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz has truly transformed the way our security teams, engineers, and developers work...delivering in-depth insights into nearly every facet of our cloud environments in real time, giving us a high level of confidence in the data and results it provides. My teams rely on Wiz daily, and it has rapidly become an essential part of our operations.","externalLink":""},{"__typename":"CustomerTestimonialSocialRecord","id":"MQ9qjde_Rx6zNaWfcSkMrg","name":"Sam Chehab, Head of Security and IT","photo":{"url":"https://www.datocms-assets.com/75231/1767729398-sam-chehab.jpeg"},"quote":"Reaching zero criticals on Wiz wasn’t an accident; it’s the outcome of a deliberate, engineering-first security program we’ve built. We embedded secure-by-default guardrails into our CI/CD pipelines, built auto-remediations, eliminated configuration drift, and established a clear remediation cycle with ownership and SLAs by giving engineers feedback early in the development loop. We moved beyond CVSS only prioritization by correlating findings with Wiz’s contextual insights blast radius, exploitability, identity paths, and real exposure, so teams focused on what truly reduces risk... Combined with continuous monitoring through Wiz’s graph, this approach ensures we close the right gaps quickly.","socialMediaType":"linkedin","socialIdentifier":"Postman"},{"id":"Vu_pa9WxRgmQ4_ohuKQuGA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"The UI, use-ability and rich feature set make Wiz the best in breed product in the CSPM space.","externalLink":""},{"id":"OgiXXqjxRLi5eAfiOvHPYg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz doesn't just highlight problems - it provides clear guidance on how to fix issues, with links to relevant documentation and remediation steps.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"JiDYwaOvQn6LMZoqoMgEXg","quote":"Wiz Code helps us make decisions based on contextualized data and takes the guesswork out of secure development.","customer":{"name":"Ledger","logo":{"url":"https://www.datocms-assets.com/75231/1739997421-ledger-wordmark-black-rgb.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"Staff Cloud Security Engineer","attributionName":"Enguerrand Allamel","attributionFace":{"url":"https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.25\u0026fm=webp 148w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.5\u0026fm=webp 297w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.75\u0026fm=webp 446w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?fm=webp 595w","webpSrcSet":"https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.25\u0026fm=webp 148w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.5\u0026fm=webp 297w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?dpr=0.75\u0026fm=webp 446w,https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?fm=webp 595w","sizes":"(max-width: 595px) 100vw, 595px","src":"https://www.datocms-assets.com/75231/1746652184-1700692023043.jpg?fm=webp","width":595,"height":595,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBhEQCAgQCgoNDhcNDQ0NFhENDREPFx8ZGBYfFhUaHysjGh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBAQHDsoIh87NTwvLzY7Ly81Ly8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLzUvLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAEBAQEBAAAAAAAAAAAAAAAABAYFA//EAB0QAAICAgMBAAAAAAAAAAAAAAADAQIEIQUVMjH/xAAYAQADAQEAAAAAAAAAAAAAAAAEBQYDAv/EABwRAAIBBQEAAAAAAAAAAAAAAAECAAMEBRESIf/aAAwDAQACEQMRAD8AykrtFNHixLZWdno8mtN2F+LbCfWymus0obQiqhYsw2ZmmUtEbBe/hMpnmwCKeXBWdm2dTqX9vmtVqSPIz8+q/QBAXLHuP6AGpFTncxf2QAHUieRMnHs//9k="}}},{"id":"abLzCeu9Rgi5VSZUFfD2KQ","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"We had a very smooth experience and easy implementation process, starting from the initial contact up, through understanding our needs, up to configuring the services to adress exactly the specific needs that we had. It integrated flawlessly with our tech stack. We use the services every day. Fully recommend!","externalLink":""},{"id":"X0Q6MiMcQfO-tN8ILKwmDA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"It does exactly what it promises to do. Simple and agentless to set up and integrate, zero operational impact when using it, amazing metrics out of the box and all issues found are explained well and concisly, allowing any secureity team member to use the info effectively. Also, it is continually being improved.","externalLink":""},{"__typename":"CustomerTestimonialSocialRecord","id":"FH6llG9OReOsWaBmyKfu1g","name":"Dimitri Lubenski , Head of Technology and Innovation, Siemens","photo":{"url":"https://www.datocms-assets.com/75231/1722355386-1517822870179.jpg"},"quote":"It is indeed a remarkable success story! In a short period of time we achieved a transformational impact on the security posture of the entire public cloud ecosystem. That was supercharged by consistent automation, streamlined processes and communication. We are excited to continue this partnership and drive further innovation in the future!","socialMediaType":"linkedin","socialIdentifier":"Dimitri Lubenski "},{"__typename":"CustomerTestimonialRecord","id":"VM2PpI_lQr6b5Du__kBpGA","quote":"The integrated view and attack path analysis capabilities Wiz provides helps enable our security and development teams to narrow down which areas they should focus on, avoiding alert fatigue.","customer":{"name":"ThoughtWorks","logo":{"url":"https://www.datocms-assets.com/75231/1742930957-thoughtworks-logo.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"CISO","attributionName":"Nitin Raina","attributionFace":{"url":"https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.25\u0026fm=webp 104w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.5\u0026fm=webp 208w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.75\u0026fm=webp 312w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?fm=webp 416w","webpSrcSet":"https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.25\u0026fm=webp 104w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.5\u0026fm=webp 208w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?dpr=0.75\u0026fm=webp 312w,https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?fm=webp 416w","sizes":"(max-width: 416px) 100vw, 416px","src":"https://www.datocms-assets.com/75231/1746810301-1677629545777.jpg?fm=webp","width":416,"height":416,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLCgoLDhgcGg0NDh0XHREhHSsdHSYrFiEmHzEvIR0qHhUdJUEmOjk2MjIyHSI9PTcwPSs1Mi8BCgsLDg0OHA0QHDspHygvLy8vLzU7Ozs1Ly8vLy81NS81Ly8vLy8vLy8vLy8vLy81LzUvLy8vLzUvLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAADAQEAAAAAAAAAAAAAAAAABgcEAf/EACEQAAEEAgICAwAAAAAAAAAAAAEAAgQFAxEGMTJBEhMV/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAaEQACAwEBAAAAAAAAAAAAAAAAAgEDESES/9oADAMBAAIRAxEAPwCh3Nhb4Kx7seANcR2Aps+3vzm2WHyVS5BJkY613xxdpIa6Q/CXfWO0Nj9KKk2BpoJtvJq2F2MbA7IQtHG88l0INLBoITK3CZ6+mTklw/8AKcWsAU0l8pkR4ztD2uIR2RGjVNPkZOG8ykZI+nDYQhCZYjCd2nT/2Q=="}}},{"__typename":"CustomerTestimonialRecord","id":"KvAmBFeIRDeiiCM8j9TGGA","quote":"By streamlining our security operations with Wiz, we’ve successfully achieved a 0 failure of remediation SLA while still maintaining developer velocity.","customer":{"name":"Grammarly","logo":{"url":"https://www.datocms-assets.com/75231/1738200783-grammarly_primary_lockup_light_bg.svg","alt":null,"responsiveImage":null},"whiteLogo":{"url":"https://www.datocms-assets.com/75231/1738729493-grammarly_primary_lockup_monochrome_black-1.svg","alt":null,"responsiveImage":null},"logoVisualWeightScaleFactor":1.5},"attributionTitle":"CISO","attributionName":"Sacha Faust","attributionFace":{"url":"https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1746810272-1741378208010.jpg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICBESDxYLDhIWFhgNFREVDxUPHRYZGBYWFhUaHysjGh0oKRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDgsOHA0QHC8eFigvLy8vLy8vLzUvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAEAAwEBAAAAAAAAAAAAAAAABAUGBwL/xAAdEAACAgMBAQEAAAAAAAAAAAAAAgEDBAUGEUES/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwQB/8QAFxEBAQEBAAAAAAAAAAAAAAAAAQIAEf/aAAwDAQACEQMRAD8Aya6Ct6pUsdRyqUqzkDL2k4z+QWGB0vlH5AhctBza/jtV5sJiPgPXD7hZzJZvoKinQod3M9hFdjkbFsrS2FAMmTPS8285e6qloaAAOSaGl7v/2Q=="}}},{"__typename":"CustomerTestimonialRecord","id":"PSS9-NkAQWya7CuAzbEQsg","quote":"Wiz allowed us to give solid proof to the regulator auditors, clients, and investors, proving that we actually are as good as we say we are. We can illustrate that we meet requirements around security.","customer":{"name":"Monese","logo":{"url":"https://www.datocms-assets.com/75231/1722349244-monese-vector-logo-2022.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"CISO","attributionName":"Aneel Sandhu","attributionFace":{"url":"https://www.datocms-assets.com/75231/1719421661-aneel.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.25\u0026fm=webp 50w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.5\u0026fm=webp 100w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.75\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?fm=webp 200w","webpSrcSet":"https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.25\u0026fm=webp 50w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.5\u0026fm=webp 100w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?dpr=0.75\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1719421661-aneel.jpg?fm=webp 200w","sizes":"(max-width: 200px) 100vw, 200px","src":"https://www.datocms-assets.com/75231/1719421661-aneel.jpg?fm=webp","width":200,"height":200,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLEBIVDhgQDhUUDh0WDQ4YFxcZGBYfFhUmHysjJh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0NHC8cFh0vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAADAAMAAAAAAAAAAAAAAAAABQYBAwf/xAAgEAABBAEEAwAAAAAAAAAAAAACAAEEBTEDBhESE1GR/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwQB/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAECIRH/2gAMAwEAAhEDEQA/AH2tua5z43+KatN524ShHxvn0ujSDiiLt0FRN0EZ5jF1HKimmLM4bn3Pca9cLtpvj0hOIcuCFeIkwYQt6wnOiu6mSNAuGdRV5ZSGHtyhCSEhE8FgXk19HhjdYQhLxAt6f//Z"}}},{"id":"eyylN8gIT06PZDlO7M-_vg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz is a rare tool that delivers more value than what is promised, without needing a complex set up or expensive professional services to get right. Take 5 minutes to set up, and you are getting visibility no other tool in the market can give.","externalLink":""},{"id":"NBOaovV9SGazGK08k0lsTw","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Using Wiz you can focus on the most important vulnerabilities, those that are exposed to Internet and have an exploit in the wild. And you can do that with only few clicks using Graph Explorer.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"ShYNdHRDT_GjsVZwXSRx9A","quote":"You never know what the next Log4J is going to be. With Wiz, I can monitor patterns before they get too big to handle. I can review top emerging vulnerabilities, see how many systems we have that may be impacted, and share my findings with our security champions through internal Slack channels to get ahead of threats","customer":{"name":"Private Research University","logo":{"url":"https://www.datocms-assets.com/75231/1729704410-private-research-institute.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"Director of Cloud Security","attributionName":"Noah Abrahamson","attributionFace":{"url":"https://www.datocms-assets.com/75231/1677874004-noah.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1677874004-noah.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1677874004-noah.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoIEgsXFg0NDhgKDQ0NEBENDQ0SFxYlGBYfIiEaHysjGh0oHRUiJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg4CHA0QHDsoHBw7Oy8vLy82Ly8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAXAAEBAQEAAAAAAAAAAAAAAAAABgUC/8QAHhAAAgICAgMAAAAAAAAAAAAAAAEDBAIFYYERExT/xAAXAQEAAwAAAAAAAAAAAAAAAAAFAwQG/8QAGhEAAgMBAQAAAAAAAAAAAAAAAQMAFSUEAv/aAAwDAQACEQMRAD8ArL0KUDMOKNe3s3ttNhjXbJyrbwc3Zcc0WMi5V5U2Hg3Egdq1GokBNbhXCFuVqmY222fmnk+CSp7lfW1yAZd/o2Uf5BlSqhuYyQpgATV6NcIc4apn/9k="}}},{"id":"apF7Bg5zQRuc5dzZNUs3MA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz has proven to be an invaluable asset in our cybersecurity toolkit. ","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"55649392","quote":"Multi-cloud enablement is at the heart of our transformation strategy and security is paramount. Wiz helps us visualize our entire cloud environment and drive actionable insights, in minutes. They’ve made cloud security an enabler for Morgan Stanley and helped us break down the barriers between security and development teams.","customer":{"name":"Morgan Stanley","logo":{"url":"https://www.datocms-assets.com/75231/1664387970-morgan_stanley_logo.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Co-CTO","attributionName":"Katherine Wetmur","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1673478113-katherine-wetmur-morgan-stanley.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgRDwoXDhAQDg0NFRUNFg4YFxMZGCIfFiEdHysjJh0oHSEWMDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBAQHC8cFig7Ly8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAXAAEBAQEAAAAAAAAAAAAAAAAABQQG/8QAIRAAAgEDAwUAAAAAAAAAAAAAAAECAwQRBRIhExQVMUH/xAAXAQEBAQEAAAAAAAAAAAAAAAAEAgMB/8QAGBEAAwEBAAAAAAAAAAAAAAAAAQIRAAP/2gAMAwEAAhEDEQA/AL19uWSOt3XNV5f74tpkCWpSjXeGT0c3Vy5iazJ1HLgGC21KU6nIN1YzGfmLpd7e1KNCTb+HIefqd48+sgHOii6uTGapb641MACFUTGdjd//2Q=="}}},{"__typename":"CustomerTestimonialRecord","id":"a44dawXtRBy6TtOIIpVR-A","quote":"There's a really damn good reason they blast off the edges up-and right on quadrants in their space -- it's not even close out there in practice.  From documentation, to UX, to feature deployment, to sales, to support, and beyond, the Wiz team is crushing it every day for us and isn't just one of the best vendors I have today, but have ever had.","customer":{"name":"FullStory","logo":{"url":"https://www.datocms-assets.com/75231/1708529013-fullstory-ar21-1-2.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1.2},"attributionTitle":"VP, Security Engineering \u0026 GRC","attributionName":"Mark Stanislav, PhD ","attributionFace":{"url":"https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.25\u0026fm=webp 120w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.5\u0026fm=webp 240w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.75\u0026fm=webp 360w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?fm=webp 480w","webpSrcSet":"https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.25\u0026fm=webp 120w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.5\u0026fm=webp 240w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?dpr=0.75\u0026fm=webp 360w,https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?fm=webp 480w","sizes":"(max-width: 480px) 100vw, 480px","src":"https://www.datocms-assets.com/75231/1712597265-aw1nl2f2yxrhcnmvzg93bmxvywquanblzw.jpg?fm=webp","width":480,"height":480,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLFQoLDhoVFQ0ZDhkVFB0NIxoZGCIfFhYdHysjGh0oHSEWJTUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0QHDUcFh01Ly8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAEAAgMAAAAAAAAAAAAAAAAABQYEBwj/xAAkEAABBAECBgMAAAAAAAAAAAABAAIDBAVRkQYREhMxYSEjQf/EABYBAQEBAAAAAAAAAAAAAAAAAAMCAP/EABcRAQEBAQAAAAAAAAAAAAAAAAEAAhH/2gAMAwEAAhEDEQA/ANl3IY4SSCoeCVjr/Tz/AFS90QSPI7w3Vae6Gtkx9o86o9dlyHK4xwgAHmiU3R2IWkSDxqisWJyduf2cT5eS30mV26wszmspDYbJ3DuiJtZKMLyksRx/ka7A0yH49oiLAUK9v//Z"}}},{"__typename":"CustomerTestimonialRecord","id":"fcg8WuZhRC-v3J_JgWrm6Q","quote":"There was no technology in the industry that could provide the level of detail that Wiz does.","customer":{"name":"Naval Information Warfare Center Pacific","logo":{"url":"https://www.datocms-assets.com/75231/1719126585-niwc-pacific-logo-1-black-text-67.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"Managing Director, Public Sector","attributionName":"Michael Johnson ","attributionFace":null},{"__typename":"CustomerTestimonialRecord","id":"93478441","quote":"Wiz’s agentless solution was able to get us 100% coverage quickly and at scale. Wiz gives us the contextual view of risks in our environment so we can properly understand and prioritize them based on our knowledge of what’s critical.","customer":{"name":"ASOS","logo":{"url":"https://www.datocms-assets.com/75231/1658681633-asos.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":0.9},"attributionTitle":"Enterprise and Principal Security Architect","attributionName":"Brad Abel","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.25\u0026fm=webp 63w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.5\u0026fm=webp 126w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.75\u0026fm=webp 189w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?fm=webp 253w","webpSrcSet":"https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.25\u0026fm=webp 63w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.5\u0026fm=webp 126w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?dpr=0.75\u0026fm=webp 189w,https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?fm=webp 253w","sizes":"(max-width: 253px) 100vw, 253px","src":"https://www.datocms-assets.com/75231/1673649495-brad-abel.jpeg?fm=webp","width":253,"height":253,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoRDw0VDRQPDhMNDQ4NEBENDQ0OFxcZGBYfFhUaHysjGh0oHRUWJTUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0QHC8cFh0vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAaAAEAAQUAAAAAAAAAAAAAAAAABgECBAUH/8QAHhAAAgICAgMAAAAAAAAAAAAAAAIBAwQFE4ERFCP/xAAVAQEBAAAAAAAAAAAAAAAAAAADAv/EABkRAQADAQEAAAAAAAAAAAAAAAEAAhEhMf/aAAwDAQACEQMRAD8A3O1mPXkxNEni7su2mRHEU0d6Q4dl2XQ5JitcNVAKU3pxQCxchp2c3ytolyF+sylVoAEsGyqvJKKM75QACwMhvs//2Q=="}}},{"id":"V_cHOs4MTnOwjz179Y-rPA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Finally a tool that actually gives you the data you need and functional processes.","externalLink":""},{"id":"91460490","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"A \"MUST HAVE\" Tool in any CISO Stack: Holistic approach, high-quality visibility, reliable and effective. I consider it the most effective tool in my security stack.","externalLink":""},{"id":"YxGxfyVtR0ifHvA5vJjUKg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz stands out in the crowded CNAAP and CSPM market due to its innovative graph-based approach to security, ruthless prioritization of critical risks, and ability to provide comprehensive visibility across numerous cloud environments. Not only do these key features allow us to identify and remediate vulnerabilities more efficiently than with traditional tools, but Wiz's agentless architecture and intuitive interface make it remarkably easy to deploy and manage across our complex infrastructure. Within a short time frame, we achieved full visibility without any operational overhead, allowing our security team to quickly identify critical vulnerabilities and address them promptly.","externalLink":""},{"__typename":"CustomerTestimonialSocialRecord","id":"97151706","name":"JJ McMahon","photo":{"url":"https://www.datocms-assets.com/75231/1674067226-jj-mcmahon.jpeg"},"quote":"Wiz enables us to get more visibility to more teams with more context than we’ve ever had. ","socialMediaType":"linkedin","socialIdentifier":"Enterprise Security Architect @ Farmers Insurance"},{"id":"91460519","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz is beyond impressive -- it is a game changer.","externalLink":""},{"id":"NyktGWw2RvarRuqpLTKI5g","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"WIZ is changing the play ground, allowing great visibility, and consistent proactiveness to support required new challenges and threats with a solid supporting team.","externalLink":""},{"id":"91460526","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz has changed the definition of a fine cloud security tool. I have not seen any cloud security tools capable of doing what wiz does with maximum accuracy. Wiz is straightforward to deploy and presents the findings in a way which makes it really easier for us to focus on severe and critical issues first.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"93474216","quote":"I think Wiz is changing the industry. If you use clouds and you’re scaling, and you don’t have Wiz, you’re in trouble.","customer":{"name":"Assent","logo":{"url":"https://www.datocms-assets.com/75231/1672782389-logo.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Manager, Security and Network Operations","attributionName":"Darcy Boynton","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1673643713-darcy-boynton.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoSDggWChENDhgNDQ0NDh0NDQ0NFxQZGCIVIhUaHyslGh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0QHC8cFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAEBAQEBAAAAAAAAAAAAAAAABQcGBP/EAB0QAAEEAwEBAAAAAAAAAAAAAAABAgMFBCExQRH/xAAWAQADAAAAAAAAAAAAAAAAAAAAAwT/xAAXEQEBAQEAAAAAAAAAAAAAAAABAgAR/9oADAMBAAIRAxEAPwDQLPNY6PpPxM2P70iW9k5sCkattHyS99J7HPiTm0Vc9iM6Dmly/sSbAA5bB3eS3bGuOuiJWsjSVdegF9yYhea+jWuYAAJMtXu//9k="}}},{"__typename":"CustomerTestimonialSocialRecord","id":"97151720","name":"Patrick Lafleur, CRISC, CDPSE","photo":{"url":"https://www.datocms-assets.com/75231/1674067393-patrick-lafleur.jpeg"},"quote":"I’ve never posted about a product before, but the amount of visibility Wiz can give you with almost no set up is game changing.","socialMediaType":"linkedin","socialIdentifier":"Information Security Manager @ Maple"},{"__typename":"CustomerTestimonialRecord","id":"208485993","quote":"Wiz has paid for the five years subscription in a matter of one week.","customer":{"name":"Bridgewater Associates","logo":{"url":"https://www.datocms-assets.com/75231/1656631622-bridgewater-logo.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":0.7},"attributionTitle":"Former CSO","attributionName":"Igor Tsyganskiy","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.25\u0026fm=webp 140w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.5\u0026fm=webp 280w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.75\u0026fm=webp 420w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?fm=webp 560w","webpSrcSet":"https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.25\u0026fm=webp 140w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.5\u0026fm=webp 280w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?dpr=0.75\u0026fm=webp 420w,https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?fm=webp 560w","sizes":"(max-width: 560px) 100vw, 560px","src":"https://www.datocms-assets.com/75231/1673479202-igor-tsyganskiy-bridgewater.jpg?fm=webp","width":560,"height":560,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBhUSEhAPDQgNDxANBwsNDRENDQ4NFxUZGBYTFhUaHysjGh0oKRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA4QHDEdFigvNS8vLy81Ly8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAEBAQEBAAAAAAAAAAAAAAAABAMFAf/EABoQAAIDAQEAAAAAAAAAAAAAAAABAgMEEhH/xAAXAQEBAQEAAAAAAAAAAAAAAAAFBAEA/8QAFxEAAwEAAAAAAAAAAAAAAAAAAAECEf/aAAwDAQACEQMRAD8ArzNJl0ppwOTRaiiWnyIeqeCUShqaSPCPTp6QIqp6c5RlTYbza4AG1CwnimR2WRABHULTXTP/2Q=="}}},{"__typename":"CustomerTestimonialRecord","id":"ZZtrTbL3T1qnKBv8blR4fA","quote":"Every single person we’ve worked with at Wiz has been helpful, personable, and responsive. Wiz’s team has been invaluable in our success, and the support has been excellent.","customer":{"name":"Schrödinger","logo":{"url":"https://www.datocms-assets.com/75231/1719125353-schrodinger.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Senior Security Engineer, Schrödinger","attributionName":"Ryan Murphy","attributionFace":{"url":"https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.25\u0026fm=webp 84w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.5\u0026fm=webp 168w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.75\u0026fm=webp 252w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?fm=webp 337w","webpSrcSet":"https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.25\u0026fm=webp 84w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.5\u0026fm=webp 168w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?dpr=0.75\u0026fm=webp 252w,https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?fm=webp 337w","sizes":"(max-width: 337px) 100vw, 337px","src":"https://www.datocms-assets.com/75231/1719346248-1583605028656.jpg?fm=webp","width":337,"height":337,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLFhERFQ8NFQ0NGh0NFhEYFxUZGBYVFhYdHysjJh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0NHDkcFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAaAAEAAgMBAAAAAAAAAAAAAAAABQYCAwQB/8QAHxAAAgIDAAIDAAAAAAAAAAAAAAECBAMFIREiBhMU/8QAFgEBAQEAAAAAAAAAAAAAAAAABAMC/8QAFxEBAQEBAAAAAAAAAAAAAAAAAQIAEf/aAAwDAQACEQMRAD8Au97eZvzteTRr97OGNuTRTsl+1lh4bM4KzLByQNXPInmmdvu45ZP2QK9DS2rTbcwUF0GJ7o6xeywjw8hs7X08YAxgxi65uefye7UXGADZBoVdd3//2Q=="}}},{"id":"Xu9vW1SLRZCZyXnTzhJShw","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"I like Wiz because it elevates my security to the next level. Its advanced features and user-friendly interface provide comprehensive protection and ensure that my data and systems are always secure. With Wiz, I have peace of mind knowing that my security measures are robust and reliable.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"I_DqZwT1TaCfgp0DptFDFQ","quote":"Wiz gives us a common language between security and engineering. It's one tool that everybody has access to, it’s super intuitive, and it’s easy to leverage because the context we need to work together and do our jobs is all in one place.","customer":{"name":"Zendesk","logo":{"url":"https://www.datocms-assets.com/75231/1734638304-logo_primary_espresso.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"Director of Product Security","attributionName":"Koen Hendrix","attributionFace":{"url":"https://www.datocms-assets.com/75231/1736424116-koen.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.25\u0026fm=webp 75w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.5\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.75\u0026fm=webp 225w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?fm=webp 300w","webpSrcSet":"https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.25\u0026fm=webp 75w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.5\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?dpr=0.75\u0026fm=webp 225w,https://www.datocms-assets.com/75231/1736424116-koen.jpeg?fm=webp 300w","sizes":"(max-width: 300px) 100vw, 300px","src":"https://www.datocms-assets.com/75231/1736424116-koen.jpeg?fm=webp","width":300,"height":300,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgXFg0QDhUZDQ0NFRUNFg0YFx0ZGCIVFhUdHysjHR0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHA0NHC8dIh0vLy8vLy8vLy8vLy8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAXAAEBAQEAAAAAAAAAAAAAAAAGAAMC/8QAIBAAAgICAgIDAAAAAAAAAAAAAAEEBQIDERIGYRUhQf/EABYBAQEBAAAAAAAAAAAAAAAAAAQDAf/EABgRAAMBAQAAAAAAAAAAAAAAAAABEQID/9oADAMBAAIRAxEAPwATVw3sjJMV/DrGn7eg7XSccIiaYi2Wfan68/hnRKleTcD0uDi4zSI7e9ZR28siLZyoH23TTx6g2yK/lsQ7PGtuNa/siCdG6O5JQL2dRvjxXwyIi+W4F2lT/9k="}}},{"__typename":"CustomerTestimonialRecord","id":"51030250","quote":"Wiz gives us visibility across our entire cloud stack and provides deeper and broader context on the risks in our environment to prioritize addressing the issues that matter. ","customer":{"name":"Chipotle","logo":{"url":"https://www.datocms-assets.com/75231/1676281437-chipotle.svg","alt":null,"responsiveImage":null},"whiteLogo":{"url":"https://www.datocms-assets.com/75231/1676288176-chipotle-horizontal-white.svg","alt":null,"responsiveImage":null},"logoVisualWeightScaleFactor":1},"attributionTitle":"CISO","attributionName":"David Estlick","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.25\u0026fm=webp 50w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.5\u0026fm=webp 100w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.75\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?fm=webp 200w","webpSrcSet":"https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.25\u0026fm=webp 50w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.5\u0026fm=webp 100w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?dpr=0.75\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?fm=webp 200w","sizes":"(max-width: 200px) 100vw, 200px","src":"https://www.datocms-assets.com/75231/1673477782-david-estlick-chipotle.jpeg?fm=webp","width":200,"height":200,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICAgLDgoQDhMVFhcZDhERFg0NFx8dGCIfFhUdHysjGikoHSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBAQHDsoIh87LzUyOzs7LzUvLy8vNTU1Ly8vNS8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAACAwEAAAAAAAAAAAAAAAAABgQFBwH/xAAfEAABBAICAwAAAAAAAAAAAAAAAQMEBQIhERIjJDH/xAAXAQEAAwAAAAAAAAAAAAAAAAAEAQID/8QAGxEAAgMBAQEAAAAAAAAAAAAAAQIAAxIRBDH/2gAMAwEAAhEDEQA/AM5iVOTricoozsUXgTROgRWUyTSDTGhtZMoFutPY7x0jMy67oVRO2P0B4vIjSY8aOG62dHyFsrAY8MpmJXTJBngz/XACtyjUjyO2JT3UpXOdgACkUZg7XbZn/9k="}}},{"id":"HWFgbnKkS6eMw3KavoBWzg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"One of the best security solutions I have ever used.","externalLink":""},{"id":"ejHZLBcfQ1Wp9d2EOzbRgg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz - much better than the rest!","externalLink":""},{"id":"91460484","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz provides me as a CISO a clear risk-based view of the product lines and divisions I protect. When I advise security leaders of cloud-native / cloud-reliant companies I implore them to explore Wiz, from my perspective this is a required tool in every CISOs toolkit.","externalLink":""},{"__typename":"CustomerTestimonialSocialRecord","id":"97149060","name":"Clement Notin","photo":{"url":"https://www.datocms-assets.com/75231/1674067032-clement-notin-twitter.jpg"},"quote":"Sharing research... 👏 ...results 😍 ...methodology  Thank you  @wiz_io , you rock!","socialMediaType":"twitter","socialIdentifier":"@cnotin"},{"__typename":"CustomerTestimonialSocialRecord","id":"97147215","name":"Corey Zaner","photo":null,"quote":"Wiz is leading the way! Happy customer.","socialMediaType":"linkedin","socialIdentifier":"Manager, Cloud Security Architecture @ Chevron Phillips Chemical Company"},{"id":"91460489","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz is allowing our organization to make sense of the highly dynamic and extremely complex multi-cloud environment that is at the base of our infrastructure. Without Wiz, we could never hope to continuously and automatically detect security issues and vulnerabilities as they materialize in our environment.","externalLink":""},{"id":"L7bAsW0JQny0VkHedAE4Hg","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"I am able to prioritize with Wiz with no effort from my part and most importantly I can customize the rules to fit my organization perfectly with unmatched granularity.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"55721018","quote":"We were able to get 100+ findings from Wiz within 2 days of deployment, compared to an individual needing 6 months to deliver that type of information. The time to value and saving at least one headcount is a huge ROI for us.","customer":{"name":"LogicGate","logo":{"url":"https://www.datocms-assets.com/75231/1665697477-logicgate-inc-logo-vector-1.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":2.2},"attributionTitle":"VP, Information Security \u0026 IT","attributionName":"Heath Anderson","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.25\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.5\u0026fm=webp 300w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.75\u0026fm=webp 450w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?fm=webp 601w","webpSrcSet":"https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.25\u0026fm=webp 150w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.5\u0026fm=webp 300w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?dpr=0.75\u0026fm=webp 450w,https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?fm=webp 601w","sizes":"(max-width: 601px) 100vw, 601px","src":"https://www.datocms-assets.com/75231/1673643979-heath-anderson.jpeg?fm=webp","width":601,"height":601,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoIDhELDxUQDhUNDQ0NGhENFhEYFxsdGBYfIiEaHysjGh0oHSEiMDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBANHC8iFik7OzIvLy8vLy8vNS8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAaAAACAgMAAAAAAAAAAAAAAAAABgEHAgQF/8QAHhAAAgICAgMAAAAAAAAAAAAAAAMBAgURBIEGFHH/xAAWAQEBAQAAAAAAAAAAAAAAAAADBAH/xAAaEQACAwEBAAAAAAAAAAAAAAAAAQIEEgMR/9oADAMBAAIRAxEAPwCws+uvrSLmKpp8/Rh8hbWvHk4WGbSXdh95P0prpZGGKTC4JM2vpVUEjwm8knRLQsZ/KwxejQw3JrFtkAbYitCVm8jEzm0lcAACwisk3RvR/9k="}}},{"__typename":"CustomerTestimonialSocialRecord","id":"97151662","name":"Sagar","photo":{"url":"https://www.datocms-assets.com/75231/1674067111-sagar-twitter.jpg"},"quote":"Amazing job  @wiz_io   First CosmosDB and now PostgreSQL ! 🔥","socialMediaType":"twitter","socialIdentifier":"@sschhatrala"},{"__typename":"CustomerTestimonialSocialRecord","id":"97149030","name":"Quang Vo","photo":{"url":"https://www.datocms-assets.com/75231/1674066909-quang-vo-twitter.jpg"},"quote":"ChaosDB vulnerability from  @wiz_io   team is such an amazing bug, you guys should get more than 100k bounty for this level of severity. Thanks for the clear explanation and the walk through of your researcher mindset. Admirable!!! 👏","socialMediaType":"twitter","socialIdentifier":"@mr_r3bot"},{"id":"91460488","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"New Sheriff in Town: Wiz makes addressing cloud security issues much easier than any other tool I have ever utilized.","externalLink":""},{"id":"93478416","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":" I firmly believe that Wiz is worth the hype. The product has given us significantly improved visibility into our cloud security posture - and after only a few conversations/demos, it was clear that Wiz was at least two years ahead of other products in the market (including the native cloud vendor tools!)","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"42578016","quote":"Wiz strikes the right balance between providing high-level visibility into our whole cloud posture and giving engineers the hands-on capabilities to resolve issues on the ground. Wiz allows us to scale the cybersecurity team's reach through technology.","customer":{"name":"Fox","logo":{"url":"https://www.datocms-assets.com/75231/1656290326-fox_wordmark.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Chief Security Officer","attributionName":"Melody Hildebrandt","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1673478682-melody-hildebrandt.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICBQXDxULDhUNDQ0VEBYNDQ0NGh8fGCIVFhUdHysjGh0oKRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBAQHDUoIiIvLy81Ly81Ly8vNS8vLy8vLy8vLy8vLy8vLy81Ly8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAEAAgMAAAAAAAAAAAAAAAAABQYDBAf/xAAeEAACAwACAwEAAAAAAAAAAAAAAQIDBAURElGBI//EABUBAQEAAAAAAAAAAAAAAAAAAAQD/8QAHBEAAgMAAwEAAAAAAAAAAAAAAAECAxEiMTIh/9oADAMBAAIRAxEAPwDqnI2zjlZX8NnloffskuX1SeV9FXxaLVq+kZ24xFS4l5jLxqQNGq2c6EBEbNQWa+mLkofi0QdFSVva9gB7EtE1eSbrscakAC8UsCz7P//Z"}}},{"__typename":"CustomerTestimonialSocialRecord","id":"97151888","name":"Bilal Omarjee","photo":{"url":"https://www.datocms-assets.com/75231/1674068001-bilal-omarjee.jpeg"},"quote":"Nobody beats the wiz!","socialMediaType":"linkedin","socialIdentifier":"Principal Cloud Architect @ Oracle"},{"id":"91459852","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"One of the best Cloud Security products on the market: Their customer success teams are fantastic and are always very responsive and helpful.","externalLink":""},{"id":"91459844","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz demonstrates the future of cloud security tools. Wiz avoids the pitfalls of overt complexity, providing a best-in-class security risk management platform that is simple to deploy, easy to navigate and affordable, whilst at the same time providing complete visibility of your cloud technology stack. ","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"97176163","quote":"Seeing the risks and findings mapped to the different certifications in Wiz really helps me focus and prioritize my work.","customer":{"name":"Fiverr","logo":{"url":"https://www.datocms-assets.com/75231/1673046363-fiverr_logo_09-2020.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1},"attributionTitle":"Security Manager","attributionName":"Idan Pinto","attributionFace":{"url":"https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1674076584-idan-pinto-fivver.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoICBALEBILDhgQEBgOEhENDQ0NFx8hGBYfIiEaHysjGh0oHSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg0OHBAQHC8oFh07NTIvLy8vLy8vLy81NTUvLzUvLy8vLy8vLy81Ly8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAZAAADAAMAAAAAAAAAAAAAAAAABgcBAwX/xAAhEAABAwMEAwAAAAAAAAAAAAAAAQIEAwURElFhcQYhYv/EABYBAQEBAAAAAAAAAAAAAAAAAAQDAv/EABoRAAIDAQEAAAAAAAAAAAAAAAABAhIhAwT/2gAMAwEAAhEDEQA/ALBIwkd2dhS1NbPXsap1RrIzsiO+YxLiqckej0X54qo3wH6l9AaLZKpoidGSsXgXpFWOfdbliM9V2JTO8obQvCt+gAz0WmfPN1HazeR06tFq8AAForAnSbsf/9k="}}},{"__typename":"CustomerTestimonialSocialRecord","id":"97151754","name":"Craig Sayler","photo":{"url":"https://www.datocms-assets.com/75231/1674067600-craig-sayler.jpeg"},"quote":"The most valued goal for cybersecurity is first frictionless visibility, That one sentence describes Wiz extremely well. Well done Wiz!","socialMediaType":"linkedin","socialIdentifier":"Cybersecurity Leadership @ Ontra"},{"id":"91460467","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz stands on top of the CSPM mountain!","externalLink":""},{"__typename":"CustomerTestimonialSocialRecord","id":"97152553","name":"Glenn","photo":{"url":"https://www.datocms-assets.com/75231/1674068547-glenn-twitter.jpg"},"quote":"If you have a sizeable cloud presence, you should be considering  @wiz_io","socialMediaType":"twitter","socialIdentifier":"@hiddenillusion "},{"id":"91460491","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"In the competitive environment, Wiz has no real competitors. We migrated from first-generation CSPM into wiz with the combined CSPM, CIEM and Vulnerability management and were hugely impressed. The fidelity of the results was a big organizational win and allowed us to prioritize what matters.","externalLink":""},{"id":"91459864","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz has helped us identify some of the poor practices and approaches we have been taking when using cloud services. Since using wiz, we have been able to address significant concerns, educate our engineering teams on best practices, and take a more secure approach to leverage the cloud for our needs.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"97178177","quote":"What stood out about Wiz for me was it has a very intuitive interface and a really simple dashboard. The fact that it's cloud native and agentless meant we could have it up and running in a matter of minutes and have clear, actionable information","customer":{"name":"Priceline","logo":{"url":"https://www.datocms-assets.com/75231/1658682031-priceline.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1.1},"attributionTitle":"Cloud Security Architect","attributionName":"Andrew McKenna","attributionFace":{"url":"https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.25\u0026fm=webp 97w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.5\u0026fm=webp 194w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.75\u0026fm=webp 291w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?fm=webp 388w","webpSrcSet":"https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.25\u0026fm=webp 97w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.5\u0026fm=webp 194w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?dpr=0.75\u0026fm=webp 291w,https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?fm=webp 388w","sizes":"(max-width: 388px) 100vw, 388px","src":"https://www.datocms-assets.com/75231/1674078696-andrew-mckenna-priceline.jpeg?fm=webp","width":388,"height":388,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBg0LEgoXBwoIExgHCQcHEBEJDRENFxMZGBYVFhUaHysjGh0oHSEWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLBQUFEAUFEC8cFhwvLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAaAAACAgMAAAAAAAAAAAAAAAAABgQFAQID/8QAHBAAAgIDAQEAAAAAAAAAAAAAAAIBBAMFEzES/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAL/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwDrUeIaC8xPHOBRwXPloL6vdVsJKmm5ZXxgQtnYVl9ABSpbRM0wMNe1HEyAEO9aiYAAA//Z"}}},{"__typename":"CustomerTestimonialSocialRecord","id":"132889328","name":"Noah Abrahamson","photo":{"url":"https://www.datocms-assets.com/75231/1677874004-noah.jpeg"},"quote":"Sometimes, ignorance is bliss—say, deliberately not checking this week's performance of your retirement account 💸. When it comes to cloud computing ☁️ and protecting Stanford data 🧑🏻‍💻 however, it can be devastating. You just can't not know. Our team will soon be putting powerful tools ⚡️ with actionable insights 🚨 in the hands of our campus cloud technologists. 🌲","socialMediaType":"linkedin","socialIdentifier":"Director of Cloud Security @ Stanford University"},{"id":"91460533","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Everyone's time is valuable. Don't let your security posture suffer while trying to sort through a spreadsheet export with 3500 rows. Wiz measures risk along multiple dimensions: vulnerabilities, misconfigurations, clear-text secrets, internet exposure, and available script-kiddie exploits to help you zero in on the most important items to resolve immediately.","externalLink":""},{"id":"91460466","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"After using similar systems and leading tools in the market to protect our cloud, we moved to this tool and we can't stop admiring its endless capabilities. It centers several tools under it in an amazingly easy user-friendly and clear way and one of its great pros is that it's agentless. Excellent and available support and perfect documentation.","externalLink":""},{"__typename":"CustomerTestimonialRecord","id":"93465256","quote":"Wiz was really the first platform we saw where getting visibility across our entire environment was a one and done set up.","customer":{"name":"Cushman \u0026 Wakefield","logo":{"url":"https://www.datocms-assets.com/75231/1659135129-cushman.svg","alt":null,"responsiveImage":null},"whiteLogo":null,"logoVisualWeightScaleFactor":1.4},"attributionTitle":"CISO","attributionName":"Erik Hart","attributionFace":{"url":"https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg","alt":null,"responsiveImage":{"srcSet":"https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?fm=webp 800w","webpSrcSet":"https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.25\u0026fm=webp 200w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.5\u0026fm=webp 400w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?dpr=0.75\u0026fm=webp 600w,https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?fm=webp 800w","sizes":"(max-width: 800px) 100vw, 800px","src":"https://www.datocms-assets.com/75231/1673642893-erik-hart.jpeg?fm=webp","width":800,"height":800,"aspectRatio":1,"alt":null,"title":null,"base64":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHBwgHBgoIERAPDQ4NDhgNEg0NDhENFg0NFx8aGCIVFhUaHysjGh0oHRUWJDUlKC0vMjIyGSI4PTcwPCsxMi8BCgsLDg4OHBAQHC8cFhwvNS8vLy8vLy8vLy8vNS8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL//AABEIABgAGAMBIgACEQEDEQH/xAAYAAEBAQEBAAAAAAAAAAAAAAAABQQGA//EAB0QAAICAwADAAAAAAAAAAAAAAABAgQDERIFExT/xAAXAQADAQAAAAAAAAAAAAAAAAACAwQA/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAERAgP/2gAMAwEAAhEDEQA/AO0zc/OyO5Lpm2VqPoZFsXIQmwNZdD5NQoQa0DBjvKUQMWXCbbVPLPd5x6Itu4tNgD9JU3JuGaHmI41oADElCfbdP//Z"}}},{"__typename":"CustomerTestimonialSocialRecord","id":"132889373","name":"Sam Wholley ","photo":{"url":"https://www.datocms-assets.com/75231/1677874634-sam-wholley.jpeg"},"quote":"Wiz is the fastest SaaS company to $100M in ARR and $200M in ARR, and has changed how security intelligence is acted upon with a unique data architecture. When you impress Igor Tsyganskiy, you're doing something very right","socialMediaType":"linkedin","socialIdentifier":"Partner @Lightspeed Venture Partners"},{"id":"byBzmw0ISS-LFKo_qzhepA","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"Wiz is the clear leader in CNAPP/CSPM ","externalLink":""},{"id":"GB-uAAR2SgaYJ8KmdZif3w","__typename":"CustomerTestimonialWebRecord","source":"g2","quote":"n the realm of cloud security, finding a tool that combines both power and simplicity is paramount. My favourite tool, Wiz, exemplifies this by offering an exceptional feature known as Security Graphs. This innovative feature sets Wiz apart in the cybersecurity landscape, offering an intuitive yet profoundly effective way to visualize and manage cloud security.","externalLink":""}]}],"includeDemoCallToActionSection":true,"seo":{"title":"Wiz Go for Startups","description":"Wiz Go is a complete cloud security bundle for fast-moving teams—offering full visibility, protection, and flexibility with startup-friendly pricing.","image":null,"twitterCard":null},"hideNavbarItems":true,"indexPage":true,"footer":"default","navigation":"default"},"draftMode":false,"locale":"en-US"},"__N_SSG":true},"page":"/lp/[lpSlug]","query":{"lpSlug":"startups"},"buildId":"6sFXKMZ7VMIRaiO-2DJM9","isFallback":false,"isExperimentalCompile":false,"gsp":true,"locale":"en-us","locales":["en-us","es-es","it-it","pt-br","fr-fr","de-de","ja-jp","ko-kr"],"defaultLocale":"en-us","scriptLoader":[]}</script></body></html>