[{"data":1,"prerenderedAt":785},["ShallowReactive",2],{"/ja-jp/topics/devsecops/what-is-fuzz-testing":3,"navigation-ja-jp":164,"banner-ja-jp":560,"footer-ja-jp":570,"next-steps-ja-jp":776},{"id":4,"title":5,"body":6,"category":6,"config":6,"content":7,"description":6,"extension":156,"meta":157,"navigation":158,"path":159,"seo":160,"slug":6,"stem":162,"testContent":6,"type":6,"__hash__":163},"pages/ja-jp/topics/devsecops/what-is-fuzz-testing/index.yml","",null,[8,22,29,90,123,154],{"type":9,"componentName":9,"componentContent":10},"CommonBreadcrumbs",{"crumbs":11},[12,16,20],{"title":13,"config":14},"Industry topics",{"href":15},"/topics/",{"title":17,"config":18},"Devsecops",{"href":19},"/ja-jp/topics/devsecops/",{"title":21},"What is fuzz testing",{"type":23,"componentName":23,"componentContent":24},"CommonArticleHero",{"title":25,"text":26,"config":27},"ファジングとは？","何を探しているのかよくわからない状態で、一体どのように脆弱性を見つけることができるのでしょうか？ゼロデイ脆弱性の検出に、ファジング（ファジングテスト）がどのように役立つかを学びましょう。\n",{"id":25,"twoColumns":28},false,{"type":30,"componentName":30,"componentContent":31},"CommonSideNavigationWithTree",{"anchors":32,"components":59},{"text":33,"data":34},"On this page",[35,39,43,47,51,55],{"text":36,"config":37},"概要",{"href":38},"#overview",{"text":40,"config":41},"ファジングの歴史",{"href":42},"#history-of-fuzzing",{"text":44,"config":45},"ファジングの2つのタイプ",{"href":46},"#two-types-of-fuzzing",{"text":48,"config":49},"ファジングを行うメリット",{"href":50},"#benefits-of-fuzzing",{"text":52,"config":53},"ファジングに関する課題",{"href":54},"#challenges-of-fuzzing",{"text":56,"config":57},"カバレッジファジングでバグを見つける",{"href":58},"#find-bugs-with-coverage-guided-fuzzing",[60,66,71,76,81,86],{"type":61,"componentName":61,"componentContent":62},"TopicsCopy",{"header":36,"text":63,"config":64},"ファジングやアプリケーションのファジングは、ソフトウェアアプリケーションのソースコード内に潜むセキュリティ上の脆弱性やバグをチームが発見できるようにするソフトウェアのテスト手法です。従来のソフトウェアテスト手法（SASTやDAST、IAST ）とは異なり、ファジングでは、基本的にはランダムな入力でコードに対して「ping」を行いクラッシュさせることで、そうしなければ明らかにならない欠陥を特定します。このようなコードの欠陥（あるいはビジネスロジックの問題）から、セキュリティ上の脅威に対して高いリスクがある場所がわかります。\n\n欠陥や脆弱性が見つかったら、ファザー（クラッシュの潜在的な原因を特定するツール）を使って、ソースコード内の特定の脆弱性に的を絞ることができます。ファザーは、SQL挿入やクロスサイトスクリプティングなど、ハッカーがセキュリティを無効にして情報を盗んだりシステムをダウンさせたりする攻撃で悪用される可能性のある脆弱性を特定するのに最も効果的です。スパイウェアやトロイの木馬などのシステムクラッシュとは無関係な脆弱性の発見には、あまり効果的ではありません。\n\nファジングを推奨する人々が、完全に自動化されていて、はっきりとしない弱点を見つけられる点を評価する一方で、反対する人々は設定が難しく、信頼性の低い結果をもたらしやすい点が不満だと述べています。\n",{"id":65},"overview",{"type":61,"componentName":61,"componentContent":67},{"header":40,"text":68,"config":69},"ファジングは別の点でも際立っています。このコンセプトが発見された経緯には、実はエピソードがあります。1988年に、ウィスコンシン大学マディソン校のBarton Miller教授が、ダイヤルアップシステムを使用してリモートでコードにアクセスしようとしていたところ、雷雨による干渉が原因でプログラムがクラッシュし続けました。外部の「ノイズ」はコードでは許容できないという考えは、Miller教授と彼の生徒の研究のきっかけとなりました。彼らは、予期しないランダムな入力がpingされた場合に、UnixやMac、Windowsのプログラムが定期的にクラッシュすることを発見しました。Miller教授は、『[Fuzzing for Software Security Testing and Quality Assurance](https://www.amazon.com/Fuzzing-Software-Security-Assurance-Information/dp/1596932147/ref=sr_1_2){data-ga-name=\"fuzzing for softwware security testing and quality assurance book\" data-ga-location=\"body\"}』の著者の1人です。\n",{"id":70},"history-of-fuzzing",{"type":61,"componentName":61,"componentContent":72},{"header":44,"text":73,"config":74},"ファジングには、主にカバレッジファジングとビヘイビアファジングの2つのタイプがあります。\n\n[カバレッジファジング](https://about.gitlab.com/blog/fuzzing-with-gitlab/){data-ga-name=\"fuzzing with gitlab\" data-ga-location=\"body\"}は、アプリの実行中にソースコードに注目し、バグを見つけるためにランダムな入力を与えます。絶えず新しいテストが生成され、アプリをクラッシュさせることを目標とします。クラッシュした場合、問題の可能性があることを意味します。テスターはカバレッジファジングプロセスから得たデータを使用して、クラッシュを再現できます。これはリスクのあるコードを特定するのに便利です。\n\nビヘイビアファジングの仕組みは異なります。アプリケーションがどのように動作すべきかを示すために仕様を参考にし、ランダムな入力を使用して実際にはどのように動作するかを判断します。想定される動作と実際の動作が異なる場合、通常はバグやその他の潜在的なセキュリティリスクが見つかります。\n",{"id":75},"two-types-of-fuzzing",{"type":61,"componentName":61,"componentContent":77},{"header":48,"text":78,"config":79},"[DevSecOps](https://about.gitlab.com/topics/devsecops/){data-ga-name=\"devsecops topics\" data-ga-location=\"body\"}において、ファジングを行うことはなぜ重要なのでしょうか？ファジングにはランダムな性質があるため、他のテストでは見落とされてしまうバグを見つけられる可能性が最も高い手法だと専門家は述べています。また、非常に手間のかからないテスト手法だと感がられています。「設定すれば、あとは放っておける」という意見もあります。テストハーネスを一度作成すれば、ファジングは完全に自動化され、いつまでも実行されます。マシンの台数を増やすことで簡単にスケーリングでき、回帰テストにも適しています。またファジングは、誤検出を行うことなく、コードカバレッジ（ファザーによって実行されたコードの量）を最大化できるため、開発プロセスがスピードアップします。コードカバレッジが高いほど、より徹底的なテストを実行できたことを意味します。\n\nさらにファジングは、手動によるテストを担当するチームと一緒に行うのが理想的です。これは、ファジングの入力セットと手動テストの入力セットをそれぞれをもとに調整できるためです。\n",{"id":80},"benefits-of-fuzzing",{"type":61,"componentName":61,"componentContent":82},{"header":52,"text":83,"config":84},"ファジングの実装を行おうとする場合、設定とデータ分析という主な2つの課題に直面します。ファズテストの設定は必ずしも簡単ではありません。設定するには複雑な“ハーネス”のテストが必要となりますが、ファジングが実際には既存のツールチェーン内に配置されていない場合、さらに“ハーネス”のテストが作成しにくくなる可能性があります。その上、ファジングを行うと、誤検出の可能性も含め、多くのデータが生成されることがあります。そのため、テストの担当チームが大量の情報に対処できるように準備しておくことが不可欠です。\n\nまた、あまり簡単には証明できないものの、QAコミュニティではファジングの「あいまい」な性質に対する否定的な考え方が依然として存在します。\n",{"id":85},"challenges-of-fuzzing",{"type":61,"componentName":61,"componentContent":87},{"header":56,"text":5,"config":88},{"id":89},"find-bugs-with-coverage-guided-fuzzing",{"type":91,"componentName":91,"componentContent":92},"CommonResourcesContainer",{"header":93,"tabs":94},"DevSecOpsの詳細をご紹介",[95,109],{"name":96,"items":97,"config":108},"動画",[98],{"header":99,"type":96,"image":100,"link":103},"ファジングに関する動画を視聴する",{"altText":99,"config":101},{"src":102},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158699/Website/Topics/fuzz-testing.jpg",{"text":104,"config":105},"今すぐ視聴",{"href":106,"icon":107,"modal":28},"https://www.youtube.com/embed/4ROYvNfRZVU","Video",{"key":96},{"name":110,"items":111,"config":122},"記事",[112],{"header":113,"type":110,"image":114,"link":117},"GitLabのファジングに関する技術ドキュメント",{"altText":113,"config":115},{"src":116},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158703/Website/Topics/img-fallback-cards-gitlab.png",{"text":118,"config":119},"詳細はこちら",{"href":120,"icon":121,"modal":28},"https://docs.gitlab.com/ee/user/application_security/coverage_fuzzing/","Articles",{"key":110},{"type":91,"componentName":91,"componentContent":124},{"header":125,"tabs":126},"おすすめのコンテンツ",[127],{"name":128,"items":129,"config":153},"resources",[130,139,147],{"header":131,"type":132,"image":133,"link":135},"デベロッパー中心のアプリケーションセキュリティテストでDevOpsチームを劇的に変える方法","ブログ",{"altText":131,"config":134},{"src":116},{"text":118,"config":136},{"href":137,"icon":138,"modal":28},"/blog/align-engineering-security-appsec-tests-in-ci/","Blog",{"header":140,"type":132,"image":141,"link":144},"最近の買収によるGitLabへのファジングの導入",{"altText":140,"config":142},{"src":143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158710/Website/Topics/img-fallback-cards-infinity.png",{"text":118,"config":145},{"href":146,"icon":138,"modal":28},"/blog/fuzz-testing/",{"header":56,"type":132,"image":148,"link":150},{"altText":56,"config":149},{"src":116},{"text":118,"config":151},{"href":152,"icon":138,"modal":28},"/blog/fuzzing-with-gitlab/",{"key":128},{"type":155,"componentName":155},"CommonNextSteps","yml",{},true,"/ja-jp/topics/devsecops/what-is-fuzz-testing",{"title":25,"description":161},"ファジング（ファジングテストとも呼ばれる）は、他のソフトウェアのテスト方法では見つからないバグを見つける方法です。","ja-jp/topics/devsecops/what-is-fuzz-testing/index","Q0XN6USiHi2zQSpWTUFxZFPaHMh6QAXmpCGFcz1D9nA",{"data":165},{"logo":166,"freeTrial":171,"sales":176,"login":181,"items":186,"search":491,"minimal":524,"duo":541,"pricingDeployment":550},{"config":167},{"href":168,"dataGaName":169,"dataGaLocation":170},"/ja-jp/","gitlab logo","header",{"text":172,"config":173},"無料トライアルを開始",{"href":174,"dataGaName":175,"dataGaLocation":170},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":177,"config":178},"お問い合わせ",{"href":179,"dataGaName":180,"dataGaLocation":170},"/ja-jp/sales/","sales",{"text":182,"config":183},"サインイン",{"href":184,"dataGaName":185,"dataGaLocation":170},"https://gitlab.com/users/sign_in/","sign in",[187,213,309,314,413,473],{"text":188,"config":189,"cards":191},"プラットフォーム",{"dataNavLevelOne":190},"platform",[192,198,206],{"title":188,"description":193,"link":194},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":195,"config":196},"プラットフォームを詳しく見る",{"href":197,"dataGaName":190,"dataGaLocation":170},"/ja-jp/platform/",{"title":199,"description":200,"link":201},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":202,"config":203},"GitLab Duoのご紹介",{"href":204,"dataGaName":205,"dataGaLocation":170},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":207,"description":208,"link":209},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":118,"config":210},{"href":211,"dataGaName":212,"dataGaLocation":170},"/ja-jp/why-gitlab/","why gitlab",{"text":214,"left":158,"config":215,"link":217,"lists":221,"footer":291},"製品",{"dataNavLevelOne":216},"solutions",{"text":218,"config":219},"すべてのソリューションを表示",{"href":220,"dataGaName":216,"dataGaLocation":170},"/ja-jp/solutions/",[222,247,269],{"title":223,"description":224,"link":225,"items":230},"自動化","CI/CDと自動化でデプロイを加速",{"config":226},{"icon":227,"href":228,"dataGaName":229,"dataGaLocation":170},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[231,235,238,243],{"text":232,"config":233},"CI/CD",{"href":234,"dataGaLocation":170,"dataGaName":232},"/ja-jp/solutions/continuous-integration/",{"text":199,"config":236},{"href":204,"dataGaLocation":170,"dataGaName":237},"gitlab duo agent platform - product menu",{"text":239,"config":240},"ソースコード管理",{"href":241,"dataGaLocation":170,"dataGaName":242},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":244,"config":245},"自動化されたソフトウェアデリバリー",{"href":228,"dataGaLocation":170,"dataGaName":246},"Automated software delivery",{"title":248,"description":249,"link":250,"items":255},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":251},{"href":252,"dataGaName":253,"dataGaLocation":170,"icon":254},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[256,260,265],{"text":257,"config":258},"Application Security Testing",{"href":252,"dataGaName":259,"dataGaLocation":170},"Application security testing",{"text":261,"config":262},"ソフトウェアサプライチェーンの安全性",{"href":263,"dataGaLocation":170,"dataGaName":264},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":266,"config":267},"Software Compliance",{"href":268,"dataGaName":266,"dataGaLocation":170},"/ja-jp/solutions/software-compliance/",{"title":270,"link":271,"items":276},"測定",{"config":272},{"icon":273,"href":274,"dataGaName":275,"dataGaLocation":170},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[277,281,286],{"text":278,"config":279},"可視性と測定",{"href":274,"dataGaLocation":170,"dataGaName":280},"Visibility and Measurement",{"text":282,"config":283},"バリューストリーム管理",{"href":284,"dataGaLocation":170,"dataGaName":285},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":287,"config":288},"分析とインサイト",{"href":289,"dataGaLocation":170,"dataGaName":290},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":292,"items":293},"GitLabが活躍する場所",[294,299,304],{"text":295,"config":296},"Enterprise",{"href":297,"dataGaLocation":170,"dataGaName":298},"/ja-jp/enterprise/","enterprise",{"text":300,"config":301},"スモールビジネス",{"href":302,"dataGaLocation":170,"dataGaName":303},"/ja-jp/small-business/","small business",{"text":305,"config":306},"公共機関",{"href":307,"dataGaLocation":170,"dataGaName":308},"/ja-jp/solutions/public-sector/","public sector",{"text":310,"config":311},"価格",{"href":312,"dataGaName":313,"dataGaLocation":170,"dataNavLevelOne":313},"/ja-jp/pricing/","pricing",{"text":315,"config":316,"link":317,"lists":321,"feature":400},"関連リソース",{"dataNavLevelOne":128},{"text":318,"config":319},"すべてのリソースを表示",{"href":320,"dataGaName":128,"dataGaLocation":170},"/ja-jp/resources/",[322,355,372],{"title":323,"items":324},"はじめに",[325,330,335,340,345,350],{"text":326,"config":327},"インストール",{"href":328,"dataGaName":329,"dataGaLocation":170},"/ja-jp/install/","install",{"text":331,"config":332},"クイックスタートガイド",{"href":333,"dataGaName":334,"dataGaLocation":170},"/ja-jp/get-started/","quick setup checklists",{"text":336,"config":337},"学ぶ",{"href":338,"dataGaLocation":170,"dataGaName":339},"https://university.gitlab.com/","learn",{"text":341,"config":342},"製品ドキュメント",{"href":343,"dataGaName":344,"dataGaLocation":170},"https://docs.gitlab.com/","product documentation",{"text":346,"config":347},"ベストプラクティスビデオ",{"href":348,"dataGaName":349,"dataGaLocation":170},"/ja-jp/getting-started-videos/","best practice videos",{"text":351,"config":352},"インテグレーション",{"href":353,"dataGaName":354,"dataGaLocation":170},"/ja-jp/integrations/","integrations",{"title":356,"items":357},"検索する",[358,363,367],{"text":359,"config":360},"お客様成功事例",{"href":361,"dataGaName":362,"dataGaLocation":170},"/ja-jp/customers/","customer success stories",{"text":132,"config":364},{"href":365,"dataGaName":366,"dataGaLocation":170},"/ja-jp/blog/","blog",{"text":368,"config":369},"リモート",{"href":370,"dataGaName":371,"dataGaLocation":170},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":373,"items":374},"つなげる",[375,380,385,390,395],{"text":376,"config":377},"GitLabサービス",{"href":378,"dataGaName":379,"dataGaLocation":170},"/ja-jp/services/","services",{"text":381,"config":382},"コミュニティ",{"href":383,"dataGaName":384,"dataGaLocation":170},"/community/","community",{"text":386,"config":387},"フォーラム",{"href":388,"dataGaName":389,"dataGaLocation":170},"https://forum.gitlab.com/","forum",{"text":391,"config":392},"イベント",{"href":393,"dataGaName":394,"dataGaLocation":170},"/events/","events",{"text":396,"config":397},"パートナー",{"href":398,"dataGaName":399,"dataGaLocation":170},"/ja-jp/partners/","partners",{"backgroundColor":401,"textColor":402,"text":403,"image":404,"link":408},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":405,"config":406},"ソースプロモカード",{"src":407},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":409,"config":410},"最新情報を読む",{"href":411,"dataGaName":412,"dataGaLocation":170},"/ja-jp/the-source/","the source",{"text":414,"config":415,"lists":417},"会社情報",{"dataNavLevelOne":416},"company",[418],{"items":419},[420,425,431,433,438,443,448,453,458,463,468],{"text":421,"config":422},"GitLabについて",{"href":423,"dataGaName":424,"dataGaLocation":170},"/ja-jp/company/","about",{"text":426,"config":427,"footerGa":430},"採用情報",{"href":428,"dataGaName":429,"dataGaLocation":170},"/jobs/","jobs",{"dataGaName":429},{"text":391,"config":432},{"href":393,"dataGaName":394,"dataGaLocation":170},{"text":434,"config":435},"経営陣",{"href":436,"dataGaName":437,"dataGaLocation":170},"/company/team/e-group/","leadership",{"text":439,"config":440},"チーム",{"href":441,"dataGaName":442,"dataGaLocation":170},"/company/team/","team",{"text":444,"config":445},"ハンドブック",{"href":446,"dataGaName":447,"dataGaLocation":170},"https://handbook.gitlab.com/","handbook",{"text":449,"config":450},"投資家向け情報",{"href":451,"dataGaName":452,"dataGaLocation":170},"https://ir.gitlab.com/","investor relations",{"text":454,"config":455},"トラストセンター",{"href":456,"dataGaName":457,"dataGaLocation":170},"/ja-jp/security/","trust center",{"text":459,"config":460},"AI Transparency Center",{"href":461,"dataGaName":462,"dataGaLocation":170},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":464,"config":465},"ニュースレター",{"href":466,"dataGaName":467,"dataGaLocation":170},"/company/contact/#contact-forms","newsletter",{"text":469,"config":470},"プレス",{"href":471,"dataGaName":472,"dataGaLocation":170},"/press/","press",{"text":177,"config":474,"lists":475},{"dataNavLevelOne":416},[476],{"items":477},[478,481,486],{"text":177,"config":479},{"href":179,"dataGaName":480,"dataGaLocation":170},"talk to sales",{"text":482,"config":483},"サポートポータル",{"href":484,"dataGaName":485,"dataGaLocation":170},"https://support.gitlab.com","support portal",{"text":487,"config":488},"カスタマーポータル",{"href":489,"dataGaName":490,"dataGaLocation":170},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":492,"login":493,"suggestions":500},"閉じる",{"text":494,"link":495},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":496,"config":497},"GitLab.com",{"href":184,"dataGaName":498,"dataGaLocation":499},"search login","search",{"text":501,"default":502},"提案",[503,505,510,512,516,520],{"text":199,"config":504},{"href":204,"dataGaName":199,"dataGaLocation":499},{"text":506,"config":507},"コード提案（AI）",{"href":508,"dataGaName":509,"dataGaLocation":499},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":232,"config":511},{"href":234,"dataGaName":232,"dataGaLocation":499},{"text":513,"config":514},"GitLab on AWS",{"href":515,"dataGaName":513,"dataGaLocation":499},"/ja-jp/partners/technology-partners/aws/",{"text":517,"config":518},"GitLab on Google Cloud",{"href":519,"dataGaName":517,"dataGaLocation":499},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":521,"config":522},"GitLabを選ぶ理由",{"href":211,"dataGaName":523,"dataGaLocation":499},"Why GitLab?",{"freeTrial":525,"mobileIcon":529,"desktopIcon":534,"secondaryButton":537},{"text":172,"config":526},{"href":527,"dataGaName":175,"dataGaLocation":528},"https://gitlab.com/-/trials/new/","nav",{"altText":530,"config":531},"GitLabアイコン",{"src":532,"dataGaName":533,"dataGaLocation":528},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":530,"config":535},{"src":536,"dataGaName":533,"dataGaLocation":528},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":323,"config":538},{"href":539,"dataGaName":540,"dataGaLocation":528},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":542,"mobileIcon":546,"desktopIcon":548},{"text":543,"config":544},"GitLab Duoの詳細について",{"href":204,"dataGaName":545,"dataGaLocation":528},"gitlab duo",{"altText":530,"config":547},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":549},{"src":536,"dataGaName":533,"dataGaLocation":528},{"freeTrial":551,"mobileIcon":556,"desktopIcon":558},{"text":552,"config":553},"料金ページに戻る",{"href":312,"dataGaName":554,"dataGaLocation":528,"icon":555},"back to pricing","GoBack",{"altText":530,"config":557},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":559},{"src":536,"dataGaName":533,"dataGaLocation":528},{"title":561,"button":562,"config":567},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":563,"config":564},"GitLab Transcendを今すぐ視聴",{"href":565,"dataGaName":566,"dataGaLocation":170},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":568,"icon":569,"disabled":158},"release","AiStar",{"data":571},{"text":572,"source":573,"edit":579,"contribute":584,"config":589,"items":594,"minimal":768},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":574,"config":575},"ページのソースを表示",{"href":576,"dataGaName":577,"dataGaLocation":578},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":580,"config":581},"このページを編集",{"href":582,"dataGaName":583,"dataGaLocation":578},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":585,"config":586},"ご協力をお願いします",{"href":587,"dataGaName":588,"dataGaLocation":578},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":590,"facebook":591,"youtube":592,"linkedin":593},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[595,618,672,702,737],{"title":188,"links":596,"subMenu":601},[597],{"text":598,"config":599},"DevSecOpsプラットフォーム",{"href":197,"dataGaName":600,"dataGaLocation":578},"devsecops platform",[602],{"title":310,"links":603},[604,608,613],{"text":605,"config":606},"プランの表示",{"href":312,"dataGaName":607,"dataGaLocation":578},"view plans",{"text":609,"config":610},"Premiumを選ぶ理由",{"href":611,"dataGaName":612,"dataGaLocation":578},"/ja-jp/pricing/premium/","why premium",{"text":614,"config":615},"Ultimateを選ぶ理由",{"href":616,"dataGaName":617,"dataGaLocation":578},"/ja-jp/pricing/ultimate/","why ultimate",{"title":619,"links":620},"ソリューション",[621,626,629,631,636,641,645,648,651,656,658,660,662,667],{"text":622,"config":623},"デジタルトランスフォーメーション",{"href":624,"dataGaName":625,"dataGaLocation":578},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":627,"config":628},"セキュリティとコンプライアンス",{"href":252,"dataGaName":259,"dataGaLocation":578},{"text":244,"config":630},{"href":228,"dataGaName":229,"dataGaLocation":578},{"text":632,"config":633},"アジャイル開発",{"href":634,"dataGaName":635,"dataGaLocation":578},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":637,"config":638},"クラウドトランスフォーメーション",{"href":639,"dataGaName":640,"dataGaLocation":578},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":642,"config":643},"SCM",{"href":241,"dataGaName":644,"dataGaLocation":578},"source code management",{"text":232,"config":646},{"href":234,"dataGaName":647,"dataGaLocation":578},"continuous integration & delivery",{"text":282,"config":649},{"href":284,"dataGaName":650,"dataGaLocation":578},"value stream management",{"text":652,"config":653},"GitOps",{"href":654,"dataGaName":655,"dataGaLocation":578},"/ja-jp/solutions/gitops/","gitops",{"text":295,"config":657},{"href":297,"dataGaName":298,"dataGaLocation":578},{"text":300,"config":659},{"href":302,"dataGaName":303,"dataGaLocation":578},{"text":305,"config":661},{"href":307,"dataGaName":308,"dataGaLocation":578},{"text":663,"config":664},"教育",{"href":665,"dataGaName":666,"dataGaLocation":578},"/ja-jp/solutions/education/","education",{"text":668,"config":669},"金融サービス",{"href":670,"dataGaName":671,"dataGaLocation":578},"/ja-jp/solutions/finance/","financial services",{"title":315,"links":673},[674,676,678,680,683,685,688,690,692,694,696,698,700],{"text":326,"config":675},{"href":328,"dataGaName":329,"dataGaLocation":578},{"text":331,"config":677},{"href":333,"dataGaName":334,"dataGaLocation":578},{"text":336,"config":679},{"href":338,"dataGaName":339,"dataGaLocation":578},{"text":341,"config":681},{"href":343,"dataGaName":682,"dataGaLocation":578},"docs",{"text":132,"config":684},{"href":365,"dataGaName":366},{"text":686,"config":687},"お客様の成功事例",{"href":361,"dataGaLocation":578},{"text":359,"config":689},{"href":361,"dataGaName":362,"dataGaLocation":578},{"text":368,"config":691},{"href":370,"dataGaName":371,"dataGaLocation":578},{"text":376,"config":693},{"href":378,"dataGaName":379,"dataGaLocation":578},{"text":381,"config":695},{"href":383,"dataGaName":384,"dataGaLocation":578},{"text":386,"config":697},{"href":388,"dataGaName":389,"dataGaLocation":578},{"text":391,"config":699},{"href":393,"dataGaName":394,"dataGaLocation":578},{"text":396,"config":701},{"href":398,"dataGaName":399,"dataGaLocation":578},{"title":703,"links":704},"Company",[705,707,709,711,713,715,717,721,726,728,730,732],{"text":421,"config":706},{"href":423,"dataGaName":416,"dataGaLocation":578},{"text":426,"config":708},{"href":428,"dataGaName":429,"dataGaLocation":578},{"text":434,"config":710},{"href":436,"dataGaName":437,"dataGaLocation":578},{"text":439,"config":712},{"href":441,"dataGaName":442,"dataGaLocation":578},{"text":444,"config":714},{"href":446,"dataGaName":447,"dataGaLocation":578},{"text":449,"config":716},{"href":451,"dataGaName":452,"dataGaLocation":578},{"text":718,"config":719},"Sustainability",{"href":720,"dataGaName":718,"dataGaLocation":578},"/sustainability/",{"text":722,"config":723},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":724,"dataGaName":725,"dataGaLocation":578},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":454,"config":727},{"href":456,"dataGaName":457,"dataGaLocation":578},{"text":464,"config":729},{"href":466,"dataGaName":467,"dataGaLocation":578},{"text":469,"config":731},{"href":471,"dataGaName":472,"dataGaLocation":578},{"text":733,"config":734},"現代奴隷制の透明性に関する声明",{"href":735,"dataGaName":736,"dataGaLocation":578},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":177,"links":738},[739,741,746,748,753,758,763],{"text":177,"config":740},{"href":179,"dataGaName":180,"dataGaLocation":578},{"text":742,"config":743},"サポートを受ける",{"href":744,"dataGaName":745,"dataGaLocation":578},"https://support.gitlab.com/hc/en-us/articles/11626483177756-GitLab-Support","get help",{"text":487,"config":747},{"href":489,"dataGaName":490,"dataGaLocation":578},{"text":749,"config":750},"ステータス",{"href":751,"dataGaName":752,"dataGaLocation":578},"https://status.gitlab.com/","status",{"text":754,"config":755},"利用規約",{"href":756,"dataGaName":757,"dataGaLocation":578},"/terms/","terms of use",{"text":759,"config":760},"プライバシーに関する声明",{"href":761,"dataGaName":762,"dataGaLocation":578},"/ja-jp/privacy/","privacy statement",{"text":764,"config":765},"Cookieの設定",{"dataGaName":766,"dataGaLocation":578,"id":767,"isOneTrustButton":158},"cookie preferences","ot-sdk-btn",{"items":769},[770,772,774],{"text":754,"config":771},{"href":756,"dataGaName":757,"dataGaLocation":578},{"text":759,"config":773},{"href":761,"dataGaName":762,"dataGaLocation":578},{"text":764,"config":775},{"dataGaName":766,"dataGaLocation":578,"id":767,"isOneTrustButton":158},{"header":777,"blurb":778,"button":779,"secondaryButton":783},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":172,"config":780},{"href":781,"dataGaName":175,"dataGaLocation":782},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":177,"config":784},{"href":179,"dataGaName":180,"dataGaLocation":782},1776458732611]