[{"data":1,"prerenderedAt":951},["ShallowReactive",2],{"/blog/announcing-package-hunter":3,"navigation-en-us":166,"banner-en-us":594,"footer-en-us":604,"blog-post-authors-en-us-Dennis Appelt":848,"blog-related-posts-en-us-announcing-package-hunter":863,"blog-promotions-en-us":888,"next-steps-en-us":941},{"id":4,"title":5,"authors":6,"body":8,"category":145,"date":146,"description":147,"extension":148,"externalUrl":149,"faq":149,"featured":150,"heroImage":151,"meta":152,"navigation":153,"path":154,"seo":155,"slug":160,"stem":161,"tags":162,"template":164,"updatedDate":149,"__hash__":165},"blogPosts/en-us/blog/announcing-package-hunter.md","Meet Package Hunter: A tool for detecting malicious code in your dependencies",[7],"Dennis Appelt",{"type":9,"value":10,"toc":135},"minimark",[11,15,18,23,44,58,66,70,90,95,110,114],[12,13,14],"p",{},"Modern programming ecosystems make code reuse exceptionally easy. No matter the\nprogramming task at hand, chances are there is a package in a public registry\nsuch as rubygems.org or npmjs.com that implements that task.",[12,16,17],{},"While the reuse of publicly available packages reduces the time necessary to write an app, this reuse\nbrings its own set of challenges. Apps quickly depend on hundreds of packages,\nand programmers often simply just trust that these packages don't contain malicious code.\nIn an ideal world, all depended-upon code is thoroughly vetted before being included in a program – however, this is often unfeasible in practice due to the sheer amount of dependency code that needs to be reviewed and the lack of existing tools to help with vetting dependency code.",[19,20,22],"h2",{"id":21},"malicious-code-in-the-wild","Malicious code in the wild",[12,24,25,26,32,33,37,38,43],{},"Past incidents like ",[27,28,31],"a",{"href":29,"rel":30},"https://gist.github.com/jpmcb/4e45eb04534f9a6f5ab9d99912a697d9",[],"malicious\ncode"," in the\npopular package ",[34,35,36],"code",{},"event-stream"," demonstrate that threat actors actively use public\npackage registries as a distribution channel for malicious code. This incident\nwasn't a single event either. A recent\n",[27,39,42],{"href":40,"rel":41},"https://link.springer.com/chapter/10.1007/978-3-030-52683-2_2",[],"review of open source software supply chain attacks"," found\nmany similar malicious packages in the wild.",[12,45,46,47,52,53,57],{},"The techniques to deliver malicious dependencies have also become more sophisticated.\nEarlier this year a security researcher discovered an implementation quirk in\nmany popular package managers, dubbed ",[27,48,51],{"href":49,"rel":50},"https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610",[],"Dependency\nConfusion",",\nthat can be used to trick package managers to install dependencies from an\nattacker-controlled location instead from a trusted, private package registry.\nUpon installation of the manipulated dependency, the researcher could execute arbitrary code,\nwhich could have led to compromise of production systems or CI environments.\nExisting dependency scanners typically don't detect if a dependency executes\nmalicious code, as these tools are limited to identifying\ndependencies with ",[54,55,56],"em",{},"known"," vulnerabilities.",[12,59,60,61,65],{},"Although GitLab was not directly affected by Dependency Confusion, we took ",[27,62,64],{"href":63},"/blog/deep-dive-investigation-of-gitlab-packages/","added measures to ensure packages and registries operate the way we expect them to and are continually monitored and secured",",\nand set out to build tooling to detect and prevent similar incidents in the future.",[19,67,69],{"id":68},"package-hunter-detect-malicious-code-in-program-dependencies","Package Hunter: Detect malicious code in program dependencies",[12,71,72,73,77,78,83,84,89],{},"In response to these challenges and a need for tooling to validate supply chain security, ",[74,75,76],"strong",{},"we've developed Package Hunter and are releasing it for use by the community.","\nPackage Hunter is a tool to analyze a program's dependencies for malicious code and other unexpected behavior by installing the dependencies in a sandbox environment and\nmonitoring system calls executed during the installation. Any suspicious system calls are reported to\nthe user for further examination. Package Hunter uses ",[27,79,82],{"href":80,"rel":81},"https://falco.org/",[],"Falco"," under the hood for system call monitoring.\nIt currently supports testing NodeJS modules and Ruby Gems. Refer to the\n",[27,85,88],{"href":86,"rel":87},"https://gitlab.com/gitlab-org/security-products/package-hunter/-/blob/master/README.md",[],"docs","\nfor more technical details.",[91,92,94],"h3",{"id":93},"how-to-get-started-with-package-hunter","How to get started with Package Hunter",[12,96,97,98,103,104,109],{},"Package Hunter integrates seamlessly with GitLab. To get started, use the GitLab\n",[27,99,102],{"href":100,"rel":101},"https://gitlab.com/gitlab-org/security-products/package-hunter-cli/-/blob/main/README.md#gitlab-ci",[],"CI template"," to add a Package Hunter job to\nyour project and follow the ",[27,105,108],{"href":106,"rel":107},"https://gitlab.com/gitlab-org/security-products/package-hunter/-/blob/master/README.md#installation",[],"instructions"," for setting up a\nPackage Hunter server.",[91,111,113],{"id":112},"weve-tested-package-hunter-now-its-your-turn-let-us-know-what-you-think","We've tested Package Hunter, now it's your turn. Let us know what you think!",[12,115,116,117,122,123,128,129,134],{},"We have been using Package Hunter internally to test GitLab's dependencies since November 2020.\nBy making it publicly available, we hope to enable other projects to\ndetect malicious code in their dependencies before it causes any harm and also to increase\nthe general confidence in open source supply chains. Package Hunter is free and open source.\nAt GitLab, we believe ",[27,118,121],{"href":119,"rel":120},"https://handbook.gitlab.com/handbook/company/mission/#everyone-can-contribute",[],"everyone can contribute",".\nIf you have found a bug, have a feature suggestion, or want to contribute code, we want to hear from you!\nCheck out the ",[27,124,127],{"href":125,"rel":126},"https://gitlab.com/gitlab-org/security-products/package-hunter/-/issues",[],"issue tracker"," for planned features or to submit bug reports and follow ",[27,130,133],{"href":131,"rel":132},"https://gitlab.com/gitlab-org/security-products/package-hunter#learn-more",[],"these resources to learn more",".",{"title":136,"searchDepth":137,"depth":137,"links":138},"",2,[139,140],{"id":21,"depth":137,"text":22},{"id":68,"depth":137,"text":69,"children":141},[142,144],{"id":93,"depth":143,"text":94},3,{"id":112,"depth":143,"text":113},"security","2021-07-23","We developed, tested and open sourced a new tool to analyze program dependencies and protect the supply chain.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682075/Blog/Hero%20Images/package-hunter.png",{},true,"/en-us/blog/announcing-package-hunter",{"title":156,"description":147,"ogTitle":156,"ogDescription":147,"noIndex":150,"ogImage":151,"ogUrl":157,"ogSiteName":158,"ogType":159,"canonicalUrls":157},"Package Hunter: Detect malicious code in dependencies","https://about.gitlab.com/blog/announcing-package-hunter","https://about.gitlab.com","article","announcing-package-hunter","en-us/blog/announcing-package-hunter",[145,163],"security research","BlogPost","oF9hdH6r6MRndvZhj8kcPnFzawU2jFMcKiL6d12xYWo",{"logo":167,"freeTrial":172,"sales":177,"login":182,"items":187,"search":514,"minimal":545,"duo":564,"switchNav":573,"pricingDeployment":584},{"config":168},{"href":169,"dataGaName":170,"dataGaLocation":171},"/","gitlab logo","header",{"text":173,"config":174},"Get free trial",{"href":175,"dataGaName":176,"dataGaLocation":171},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":178,"config":179},"Request a demo",{"href":180,"dataGaName":181,"dataGaLocation":171},"/sales/?contact-topic=request-demo","sales",{"text":183,"config":184},"Sign in",{"href":185,"dataGaName":186,"dataGaLocation":171},"https://gitlab.com/users/sign_in/","sign in",[188,217,317,322,436,492],{"text":189,"config":190,"menu":192},"Platform",{"dataNavLevelOne":191},"platform",{"type":193,"columns":194},"cards",[195,201,209],{"title":189,"description":196,"link":197},"The intelligent orchestration platform for DevSecOps",{"text":198,"config":199},"Explore our Platform",{"href":200,"dataGaName":191,"dataGaLocation":171},"/platform/",{"title":202,"description":203,"link":204},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":205,"config":206},"Meet GitLab Duo",{"href":207,"dataGaName":208,"dataGaLocation":171},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":210,"description":211,"link":212},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":213,"config":214},"Learn more",{"href":215,"dataGaName":216,"dataGaLocation":171},"/why-gitlab/","why gitlab",{"text":218,"left":153,"config":219,"menu":221},"Product",{"dataNavLevelOne":220},"solutions",{"type":222,"link":223,"columns":227,"feature":296},"lists",{"text":224,"config":225},"View all Solutions",{"href":226,"dataGaName":220,"dataGaLocation":171},"/solutions/",[228,252,275],{"title":229,"description":230,"link":231,"items":236},"Automation","CI/CD and automation to accelerate deployment",{"config":232},{"icon":233,"href":234,"dataGaName":235,"dataGaLocation":171},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[237,241,244,248],{"text":238,"config":239},"CI/CD",{"href":240,"dataGaLocation":171,"dataGaName":238},"/solutions/continuous-integration/",{"text":202,"config":242},{"href":207,"dataGaLocation":171,"dataGaName":243},"gitlab duo agent platform - product menu",{"text":245,"config":246},"Source Code Management",{"href":247,"dataGaLocation":171,"dataGaName":245},"/solutions/source-code-management/",{"text":249,"config":250},"Automated Software Delivery",{"href":234,"dataGaLocation":171,"dataGaName":251},"Automated software delivery",{"title":253,"description":254,"link":255,"items":260},"Security","Deliver code faster without compromising security",{"config":256},{"href":257,"dataGaName":258,"dataGaLocation":171,"icon":259},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[261,265,270],{"text":262,"config":263},"Application Security Testing",{"href":257,"dataGaName":264,"dataGaLocation":171},"Application security testing",{"text":266,"config":267},"Software Supply Chain Security",{"href":268,"dataGaLocation":171,"dataGaName":269},"/solutions/supply-chain/","Software supply chain security",{"text":271,"config":272},"Software Compliance",{"href":273,"dataGaName":274,"dataGaLocation":171},"/solutions/software-compliance/","software compliance",{"title":276,"link":277,"items":282},"Measurement",{"config":278},{"icon":279,"href":280,"dataGaName":281,"dataGaLocation":171},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[283,287,291],{"text":284,"config":285},"Visibility & Measurement",{"href":280,"dataGaLocation":171,"dataGaName":286},"Visibility and Measurement",{"text":288,"config":289},"Value Stream Management",{"href":290,"dataGaLocation":171,"dataGaName":288},"/solutions/value-stream-management/",{"text":292,"config":293},"Analytics & Insights",{"href":294,"dataGaLocation":171,"dataGaName":295},"/solutions/analytics-and-insights/","Analytics and insights",{"title":297,"type":222,"items":298},"GitLab for",[299,305,311],{"text":300,"config":301},"Enterprise",{"icon":302,"href":303,"dataGaLocation":171,"dataGaName":304},"Building","/enterprise/","enterprise",{"text":306,"config":307},"Small Business",{"icon":308,"href":309,"dataGaLocation":171,"dataGaName":310},"Work","/small-business/","small business",{"text":312,"config":313},"Public Sector",{"icon":314,"href":315,"dataGaLocation":171,"dataGaName":316},"Organization","/solutions/public-sector/","public sector",{"text":318,"config":319},"Pricing",{"href":320,"dataGaName":321,"dataGaLocation":171,"dataNavLevelOne":321},"/pricing/","pricing",{"text":323,"config":324,"menu":326},"Resources",{"dataNavLevelOne":325},"resources",{"type":222,"link":327,"columns":331,"feature":425},{"text":328,"config":329},"View all resources",{"href":330,"dataGaName":325,"dataGaLocation":171},"/resources/",[332,365,392],{"title":333,"items":334},"Getting started",[335,340,345,350,355,360],{"text":336,"config":337},"Install",{"href":338,"dataGaName":339,"dataGaLocation":171},"/install/","install",{"text":341,"config":342},"Quick start guides",{"href":343,"dataGaName":344,"dataGaLocation":171},"/get-started/","quick setup checklists",{"text":346,"config":347},"Learn",{"href":348,"dataGaLocation":171,"dataGaName":349},"https://university.gitlab.com/","learn",{"text":351,"config":352},"Product documentation",{"href":353,"dataGaName":354,"dataGaLocation":171},"https://docs.gitlab.com/","product documentation",{"text":356,"config":357},"Best practice videos",{"href":358,"dataGaName":359,"dataGaLocation":171},"/getting-started-videos/","best practice videos",{"text":361,"config":362},"Integrations",{"href":363,"dataGaName":364,"dataGaLocation":171},"/integrations/","integrations",{"title":366,"items":367},"Discover",[368,373,378,383,387],{"text":369,"config":370},"Customer success stories",{"href":371,"dataGaName":372,"dataGaLocation":171},"/customers/","customer success stories",{"text":374,"config":375},"Blog",{"href":376,"dataGaName":377,"dataGaLocation":171},"/blog/","blog",{"text":379,"config":380},"Demo Hub",{"href":381,"dataGaName":382,"dataGaLocation":171},"/demo-hub/","demo hub",{"text":384,"config":385},"The Source",{"href":386,"dataGaName":377,"dataGaLocation":171},"/the-source/",{"text":388,"config":389},"Remote",{"href":390,"dataGaName":391,"dataGaLocation":171},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":393,"items":394},"Connect",[395,400,405,410,415,420],{"text":396,"config":397},"GitLab Services",{"href":398,"dataGaName":399,"dataGaLocation":171},"/services/","services",{"text":401,"config":402},"Contribute",{"href":403,"dataGaName":404,"dataGaLocation":171},"https://contributors.gitlab.com","contribute",{"text":406,"config":407},"Community",{"href":408,"dataGaName":409,"dataGaLocation":171},"/community/","community",{"text":411,"config":412},"Forum",{"href":413,"dataGaName":414,"dataGaLocation":171},"https://forum.gitlab.com/","forum",{"text":416,"config":417},"Events",{"href":418,"dataGaName":419,"dataGaLocation":171},"/events/","events",{"text":421,"config":422},"Partners",{"href":423,"dataGaName":424,"dataGaLocation":171},"/partners/","partners",{"config":426,"title":429,"text":430,"link":431},{"background":427,"textColor":428},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":432,"config":433},"Read the latest",{"href":434,"dataGaName":435,"dataGaLocation":171},"/whats-new/","whats new",{"text":437,"config":438,"menu":440},"Company",{"dataNavLevelOne":439},"company",{"type":222,"columns":441},[442],{"items":443},[444,449,455,457,462,467,472,477,482,487],{"text":445,"config":446},"About",{"href":447,"dataGaName":448,"dataGaLocation":171},"/company/","about",{"text":450,"config":451,"footerGa":454},"Jobs",{"href":452,"dataGaName":453,"dataGaLocation":171},"/jobs/","jobs",{"dataGaName":453},{"text":416,"config":456},{"href":418,"dataGaName":419,"dataGaLocation":171},{"text":458,"config":459},"Leadership",{"href":460,"dataGaName":461,"dataGaLocation":171},"/company/team/e-group/","leadership",{"text":463,"config":464},"Handbook",{"href":465,"dataGaName":466,"dataGaLocation":171},"https://handbook.gitlab.com/","handbook",{"text":468,"config":469},"Investor relations",{"href":470,"dataGaName":471,"dataGaLocation":171},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":473,"config":474},"Trust Center",{"href":475,"dataGaName":476,"dataGaLocation":171},"/security/","trust center",{"text":478,"config":479},"AI Transparency Center",{"href":480,"dataGaName":481,"dataGaLocation":171},"/ai-transparency-center/","ai transparency center",{"text":483,"config":484},"Newsletter",{"href":485,"dataGaName":486,"dataGaLocation":171},"/company/contact/#contact-forms","newsletter",{"text":488,"config":489},"Press",{"href":490,"dataGaName":491,"dataGaLocation":171},"/press/","press",{"text":493,"config":494,"menu":495},"Contact us",{"dataNavLevelOne":439},{"type":222,"columns":496},[497],{"items":498},[499,504,509],{"text":500,"config":501},"Talk to sales",{"href":502,"dataGaName":503,"dataGaLocation":171},"/sales/","talk to sales",{"text":505,"config":506},"Support portal",{"href":507,"dataGaName":508,"dataGaLocation":171},"https://support.gitlab.com/hc/en-us","support portal",{"text":510,"config":511},"Customer portal",{"href":512,"dataGaName":513,"dataGaLocation":171},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":515,"login":516,"suggestions":523},"Close",{"text":517,"link":518},"To search repositories and projects, login to",{"text":519,"config":520},"gitlab.com",{"href":185,"dataGaName":521,"dataGaLocation":522},"search login","search",{"text":524,"default":525},"Suggestions",[526,528,532,534,538,542],{"text":202,"config":527},{"href":207,"dataGaName":202,"dataGaLocation":522},{"text":529,"config":530},"Code Suggestions (AI)",{"href":531,"dataGaName":529,"dataGaLocation":522},"/solutions/code-suggestions/",{"text":238,"config":533},{"href":240,"dataGaName":238,"dataGaLocation":522},{"text":535,"config":536},"GitLab on AWS",{"href":537,"dataGaName":535,"dataGaLocation":522},"/partners/technology-partners/aws/",{"text":539,"config":540},"GitLab on Google Cloud",{"href":541,"dataGaName":539,"dataGaLocation":522},"/partners/technology-partners/google-cloud-platform/",{"text":543,"config":544},"Why GitLab?",{"href":215,"dataGaName":543,"dataGaLocation":522},{"freeTrial":546,"mobileIcon":551,"desktopIcon":556,"secondaryButton":559},{"text":547,"config":548},"Start free trial",{"href":549,"dataGaName":176,"dataGaLocation":550},"https://gitlab.com/-/trials/new/","nav",{"altText":552,"config":553},"Gitlab Icon",{"src":554,"dataGaName":555,"dataGaLocation":550},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":552,"config":557},{"src":558,"dataGaName":555,"dataGaLocation":550},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":560,"config":561},"Get Started",{"href":562,"dataGaName":563,"dataGaLocation":550},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":565,"mobileIcon":569,"desktopIcon":571},{"text":566,"config":567},"Learn more about GitLab Duo",{"href":207,"dataGaName":568,"dataGaLocation":550},"gitlab duo",{"altText":552,"config":570},{"src":554,"dataGaName":555,"dataGaLocation":550},{"altText":552,"config":572},{"src":558,"dataGaName":555,"dataGaLocation":550},{"button":574,"mobileIcon":579,"desktopIcon":581},{"text":575,"config":576},"/switch",{"href":577,"dataGaName":578,"dataGaLocation":550},"#contact","switch",{"altText":552,"config":580},{"src":554,"dataGaName":555,"dataGaLocation":550},{"altText":552,"config":582},{"src":583,"dataGaName":555,"dataGaLocation":550},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":585,"mobileIcon":590,"desktopIcon":592},{"text":586,"config":587},"Back to pricing",{"href":320,"dataGaName":588,"dataGaLocation":550,"icon":589},"back to pricing","GoBack",{"altText":552,"config":591},{"src":554,"dataGaName":555,"dataGaLocation":550},{"altText":552,"config":593},{"src":558,"dataGaName":555,"dataGaLocation":550},{"title":595,"titleMobile":596,"button":597,"config":602},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":213,"config":598},{"href":599,"dataGaName":600,"dataGaLocation":601},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":603,"disabled":150},"release",{"data":605},{"text":606,"source":607,"edit":613,"contribute":618,"config":623,"items":628,"minimal":837},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":608,"config":609},"View page source",{"href":610,"dataGaName":611,"dataGaLocation":612},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":614,"config":615},"Edit this page",{"href":616,"dataGaName":617,"dataGaLocation":612},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":619,"config":620},"Please contribute",{"href":621,"dataGaName":622,"dataGaLocation":612},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":624,"facebook":625,"youtube":626,"linkedin":627},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[629,676,730,774,805],{"title":318,"links":630,"subMenu":645},[631,635,640],{"text":632,"config":633},"View plans",{"href":320,"dataGaName":634,"dataGaLocation":612},"view plans",{"text":636,"config":637},"Why Premium?",{"href":638,"dataGaName":639,"dataGaLocation":612},"/pricing/premium/","why premium",{"text":641,"config":642},"Why Ultimate?",{"href":643,"dataGaName":644,"dataGaLocation":612},"/pricing/ultimate/","why ultimate",[646],{"title":647,"links":648},"Contact Us",[649,652,654,656,661,666,671],{"text":650,"config":651},"Contact sales",{"href":502,"dataGaName":181,"dataGaLocation":612},{"text":505,"config":653},{"href":507,"dataGaName":508,"dataGaLocation":612},{"text":510,"config":655},{"href":512,"dataGaName":513,"dataGaLocation":612},{"text":657,"config":658},"Status",{"href":659,"dataGaName":660,"dataGaLocation":612},"https://status.gitlab.com/","status",{"text":662,"config":663},"Terms of use",{"href":664,"dataGaName":665,"dataGaLocation":612},"/terms/","terms of use",{"text":667,"config":668},"Privacy statement",{"href":669,"dataGaName":670,"dataGaLocation":612},"/privacy/","privacy statement",{"text":672,"config":673},"Cookie preferences",{"dataGaName":674,"dataGaLocation":612,"id":675,"isOneTrustButton":153},"cookie preferences","ot-sdk-btn",{"title":218,"links":677,"subMenu":686},[678,682],{"text":679,"config":680},"DevSecOps platform",{"href":200,"dataGaName":681,"dataGaLocation":612},"devsecops platform",{"text":683,"config":684},"AI-Assisted Development",{"href":207,"dataGaName":685,"dataGaLocation":612},"ai-assisted development",[687],{"title":688,"links":689},"Topics",[690,695,700,705,710,715,720,725],{"text":691,"config":692},"CICD",{"href":693,"dataGaName":694,"dataGaLocation":612},"/topics/ci-cd/","cicd",{"text":696,"config":697},"GitOps",{"href":698,"dataGaName":699,"dataGaLocation":612},"/topics/gitops/","gitops",{"text":701,"config":702},"DevOps",{"href":703,"dataGaName":704,"dataGaLocation":612},"/topics/devops/","devops",{"text":706,"config":707},"Version Control",{"href":708,"dataGaName":709,"dataGaLocation":612},"/topics/version-control/","version control",{"text":711,"config":712},"DevSecOps",{"href":713,"dataGaName":714,"dataGaLocation":612},"/topics/devsecops/","devsecops",{"text":716,"config":717},"Cloud Native",{"href":718,"dataGaName":719,"dataGaLocation":612},"/topics/cloud-native/","cloud native",{"text":721,"config":722},"AI for Coding",{"href":723,"dataGaName":724,"dataGaLocation":612},"/topics/devops/ai-for-coding/","ai for coding",{"text":726,"config":727},"Agentic AI",{"href":728,"dataGaName":729,"dataGaLocation":612},"/topics/agentic-ai/","agentic ai",{"title":731,"links":732},"Solutions",[733,735,737,742,746,749,753,756,758,761,764,769],{"text":262,"config":734},{"href":257,"dataGaName":262,"dataGaLocation":612},{"text":251,"config":736},{"href":234,"dataGaName":235,"dataGaLocation":612},{"text":738,"config":739},"Agile development",{"href":740,"dataGaName":741,"dataGaLocation":612},"/solutions/agile-delivery/","agile delivery",{"text":743,"config":744},"SCM",{"href":247,"dataGaName":745,"dataGaLocation":612},"source code management",{"text":691,"config":747},{"href":240,"dataGaName":748,"dataGaLocation":612},"continuous integration & delivery",{"text":750,"config":751},"Value stream management",{"href":290,"dataGaName":752,"dataGaLocation":612},"value stream management",{"text":696,"config":754},{"href":755,"dataGaName":699,"dataGaLocation":612},"/solutions/gitops/",{"text":300,"config":757},{"href":303,"dataGaName":304,"dataGaLocation":612},{"text":759,"config":760},"Small business",{"href":309,"dataGaName":310,"dataGaLocation":612},{"text":762,"config":763},"Public sector",{"href":315,"dataGaName":316,"dataGaLocation":612},{"text":765,"config":766},"Education",{"href":767,"dataGaName":768,"dataGaLocation":612},"/solutions/education/","education",{"text":770,"config":771},"Financial services",{"href":772,"dataGaName":773,"dataGaLocation":612},"/solutions/finance/","financial services",{"title":323,"links":775},[776,778,780,782,784,786,789,791,793,795,797,799,801,803],{"text":336,"config":777},{"href":338,"dataGaName":339,"dataGaLocation":612},{"text":341,"config":779},{"href":343,"dataGaName":344,"dataGaLocation":612},{"text":346,"config":781},{"href":348,"dataGaName":349,"dataGaLocation":612},{"text":351,"config":783},{"href":353,"dataGaName":88,"dataGaLocation":612},{"text":374,"config":785},{"href":376,"dataGaName":377,"dataGaLocation":612},{"text":787,"config":788},"What's new",{"href":434,"dataGaName":435,"dataGaLocation":612},{"text":369,"config":790},{"href":371,"dataGaName":372,"dataGaLocation":612},{"text":388,"config":792},{"href":390,"dataGaName":391,"dataGaLocation":612},{"text":396,"config":794},{"href":398,"dataGaName":399,"dataGaLocation":612},{"text":401,"config":796},{"href":403,"dataGaName":404,"dataGaLocation":612},{"text":406,"config":798},{"href":408,"dataGaName":409,"dataGaLocation":612},{"text":411,"config":800},{"href":413,"dataGaName":414,"dataGaLocation":612},{"text":416,"config":802},{"href":418,"dataGaName":419,"dataGaLocation":612},{"text":421,"config":804},{"href":423,"dataGaName":424,"dataGaLocation":612},{"title":437,"links":806},[807,809,811,813,815,817,821,826,828,830,832],{"text":445,"config":808},{"href":447,"dataGaName":439,"dataGaLocation":612},{"text":450,"config":810},{"href":452,"dataGaName":453,"dataGaLocation":612},{"text":458,"config":812},{"href":460,"dataGaName":461,"dataGaLocation":612},{"text":463,"config":814},{"href":465,"dataGaName":466,"dataGaLocation":612},{"text":468,"config":816},{"href":470,"dataGaName":471,"dataGaLocation":612},{"text":818,"config":819},"Sustainability",{"href":820,"dataGaName":818,"dataGaLocation":612},"/sustainability/",{"text":822,"config":823},"Diversity, inclusion and belonging (DIB)",{"href":824,"dataGaName":825,"dataGaLocation":612},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":473,"config":827},{"href":475,"dataGaName":476,"dataGaLocation":612},{"text":483,"config":829},{"href":485,"dataGaName":486,"dataGaLocation":612},{"text":488,"config":831},{"href":490,"dataGaName":491,"dataGaLocation":612},{"text":833,"config":834},"Modern Slavery Transparency Statement",{"href":835,"dataGaName":836,"dataGaLocation":612},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":838},[839,842,845],{"text":840,"config":841},"Terms",{"href":664,"dataGaName":665,"dataGaLocation":612},{"text":843,"config":844},"Cookies",{"dataGaName":674,"dataGaLocation":612,"id":675,"isOneTrustButton":153},{"text":846,"config":847},"Privacy",{"href":669,"dataGaName":670,"dataGaLocation":612},[849],{"id":850,"title":7,"body":149,"config":851,"content":853,"description":149,"extension":857,"meta":858,"navigation":153,"path":859,"seo":860,"stem":861,"__hash__":862},"blogAuthors/en-us/blog/authors/dennis-appelt.yml",{"template":852},"BlogAuthor",{"name":7,"config":854},{"headshot":855,"ctfId":856},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672032/Blog/Author%20Headshots/dappelt-headshot.jpg","dappelt","yml",{},"/en-us/blog/authors/dennis-appelt",{},"en-us/blog/authors/dennis-appelt","s0eKcsSwHvpcru4Dk7IkXJyRfuBEWrMhfVAJ_Fan-L4",[864,872,880],{"title":865,"description":866,"heroImage":867,"category":145,"date":868,"authors":869,"slug":871,"externalUrl":149},"How GitLab tracks vulnerabilities through refactors and reformatting","Learn how GitLab's improved Scope+Offset fingerprinting keeps vulnerability tracking stable across comments, blank lines, and reformatting.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1759320418/xjmqcozxzt4frx0hori3.png","2026-08-12",[870],"Julian Thome","improved-scope-offset-fingerprinting",{"title":873,"description":874,"heroImage":867,"category":145,"date":875,"authors":876,"slug":879,"externalUrl":149},"GitLab Secrets Manager adds ESO, Terraform, API support","Simplify credential management across your stack. GitLab Secrets Manager provides secure retrieval in Kubernetes, Terraform, and external workflows.","2026-08-06",[877,878],"Erick Bajao","Joe Randazzo","gitlab-secrets-manager-add-eso-terraform-api-support",{"title":881,"description":882,"heroImage":883,"category":145,"date":884,"authors":885,"slug":887,"externalUrl":149},"Secure every commit to production with Claude and GitLab","Claude Security catches vulnerabilities inside a coding session. GitLab picks up from there, scanning, enforcing policy, and producing audit evidence for the software lifecycle. ","https://res.cloudinary.com/about-gitlab-com/image/upload/v1756122536/akivvcnafog9c4dhhzkp.png","2026-08-03",[886],"Alisa Ho","claude-security-and-gitlab",{"promotions":889},[890,904,916,927],{"id":891,"categories":892,"header":894,"text":895,"button":896,"image":901},"ai-modernization",[893],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":897,"config":898},"Get your AI maturity score",{"href":899,"dataGaName":900,"dataGaLocation":377},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":902},{"src":903},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":905,"categories":906,"header":908,"text":895,"button":909,"image":913},"devops-modernization",[907,714],"product","Are you just managing tools or shipping innovation?",{"text":910,"config":911},"Get your DevOps maturity score",{"href":912,"dataGaName":900,"dataGaLocation":377},"/assessments/devops-modernization-assessment/",{"config":914},{"src":915},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":917,"categories":918,"header":919,"text":895,"button":920,"image":924},"security-modernization",[145],"Are you trading speed for security?",{"text":921,"config":922},"Get your security maturity score",{"href":923,"dataGaName":900,"dataGaLocation":377},"/assessments/security-modernization-assessment/",{"config":925},{"src":926},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":928,"paths":929,"header":932,"text":933,"button":934,"image":939},"github-azure-migration",[930,931],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":935,"config":936},"See how GitLab compares to GitHub",{"href":937,"dataGaName":938,"dataGaLocation":377},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":940},{"src":915},{"header":942,"blurb":943,"button":944,"secondaryButton":949},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":945,"config":946},"Get your free trial",{"href":947,"dataGaName":176,"dataGaLocation":948},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":650,"config":950},{"href":502,"dataGaName":181,"dataGaLocation":948},1786803727963]