[{"data":1,"prerenderedAt":786},["ShallowReactive",2],{"/ja-jp/topics/devsecops/what-is-fuzz-testing":3,"navigation-ja-jp":164,"banner-ja-jp":561,"footer-ja-jp":571,"next-steps-ja-jp":777},{"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":551},{"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&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/compare/gitlab-vs-github/","get started",{"freeTrial":542,"mobileIcon":547,"desktopIcon":549},{"text":543,"config":544},"GitLab Duoの詳細について",{"href":545,"dataGaName":546,"dataGaLocation":528},"/ja-jp/gitlab-duo/","gitlab duo",{"altText":530,"config":548},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":550},{"src":536,"dataGaName":533,"dataGaLocation":528},{"freeTrial":552,"mobileIcon":557,"desktopIcon":559},{"text":553,"config":554},"料金ページに戻る",{"href":312,"dataGaName":555,"dataGaLocation":528,"icon":556},"back to pricing","GoBack",{"altText":530,"config":558},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":560},{"src":536,"dataGaName":533,"dataGaLocation":528},{"title":562,"button":563,"config":568},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":564,"config":565},"GitLab Transcendを今すぐ視聴",{"href":566,"dataGaName":567,"dataGaLocation":170},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":569,"icon":570},"release","AiStar",{"data":572},{"text":573,"source":574,"edit":580,"contribute":585,"config":590,"items":595,"minimal":769},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":575,"config":576},"ページのソースを表示",{"href":577,"dataGaName":578,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":581,"config":582},"このページを編集",{"href":583,"dataGaName":584,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":586,"config":587},"ご協力をお願いします",{"href":588,"dataGaName":589,"dataGaLocation":579},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":591,"facebook":592,"youtube":593,"linkedin":594},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[596,619,673,703,738],{"title":188,"links":597,"subMenu":602},[598],{"text":599,"config":600},"DevSecOpsプラットフォーム",{"href":197,"dataGaName":601,"dataGaLocation":579},"devsecops platform",[603],{"title":310,"links":604},[605,609,614],{"text":606,"config":607},"プランの表示",{"href":312,"dataGaName":608,"dataGaLocation":579},"view plans",{"text":610,"config":611},"Premiumを選ぶ理由",{"href":612,"dataGaName":613,"dataGaLocation":579},"/ja-jp/pricing/premium/","why premium",{"text":615,"config":616},"Ultimateを選ぶ理由",{"href":617,"dataGaName":618,"dataGaLocation":579},"/ja-jp/pricing/ultimate/","why ultimate",{"title":620,"links":621},"ソリューション",[622,627,630,632,637,642,646,649,652,657,659,661,663,668],{"text":623,"config":624},"デジタルトランスフォーメーション",{"href":625,"dataGaName":626,"dataGaLocation":579},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":628,"config":629},"セキュリティとコンプライアンス",{"href":252,"dataGaName":259,"dataGaLocation":579},{"text":244,"config":631},{"href":228,"dataGaName":229,"dataGaLocation":579},{"text":633,"config":634},"アジャイル開発",{"href":635,"dataGaName":636,"dataGaLocation":579},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":638,"config":639},"クラウドトランスフォーメーション",{"href":640,"dataGaName":641,"dataGaLocation":579},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":643,"config":644},"SCM",{"href":241,"dataGaName":645,"dataGaLocation":579},"source code management",{"text":232,"config":647},{"href":234,"dataGaName":648,"dataGaLocation":579},"continuous integration & delivery",{"text":282,"config":650},{"href":284,"dataGaName":651,"dataGaLocation":579},"value stream management",{"text":653,"config":654},"GitOps",{"href":655,"dataGaName":656,"dataGaLocation":579},"/ja-jp/solutions/gitops/","gitops",{"text":295,"config":658},{"href":297,"dataGaName":298,"dataGaLocation":579},{"text":300,"config":660},{"href":302,"dataGaName":303,"dataGaLocation":579},{"text":305,"config":662},{"href":307,"dataGaName":308,"dataGaLocation":579},{"text":664,"config":665},"教育",{"href":666,"dataGaName":667,"dataGaLocation":579},"/ja-jp/solutions/education/","education",{"text":669,"config":670},"金融サービス",{"href":671,"dataGaName":672,"dataGaLocation":579},"/ja-jp/solutions/finance/","financial services",{"title":315,"links":674},[675,677,679,681,684,686,689,691,693,695,697,699,701],{"text":326,"config":676},{"href":328,"dataGaName":329,"dataGaLocation":579},{"text":331,"config":678},{"href":333,"dataGaName":334,"dataGaLocation":579},{"text":336,"config":680},{"href":338,"dataGaName":339,"dataGaLocation":579},{"text":341,"config":682},{"href":343,"dataGaName":683,"dataGaLocation":579},"docs",{"text":132,"config":685},{"href":365,"dataGaName":366},{"text":687,"config":688},"お客様の成功事例",{"href":361,"dataGaLocation":579},{"text":359,"config":690},{"href":361,"dataGaName":362,"dataGaLocation":579},{"text":368,"config":692},{"href":370,"dataGaName":371,"dataGaLocation":579},{"text":376,"config":694},{"href":378,"dataGaName":379,"dataGaLocation":579},{"text":381,"config":696},{"href":383,"dataGaName":384,"dataGaLocation":579},{"text":386,"config":698},{"href":388,"dataGaName":389,"dataGaLocation":579},{"text":391,"config":700},{"href":393,"dataGaName":394,"dataGaLocation":579},{"text":396,"config":702},{"href":398,"dataGaName":399,"dataGaLocation":579},{"title":704,"links":705},"Company",[706,708,710,712,714,716,718,722,727,729,731,733],{"text":421,"config":707},{"href":423,"dataGaName":416,"dataGaLocation":579},{"text":426,"config":709},{"href":428,"dataGaName":429,"dataGaLocation":579},{"text":434,"config":711},{"href":436,"dataGaName":437,"dataGaLocation":579},{"text":439,"config":713},{"href":441,"dataGaName":442,"dataGaLocation":579},{"text":444,"config":715},{"href":446,"dataGaName":447,"dataGaLocation":579},{"text":449,"config":717},{"href":451,"dataGaName":452,"dataGaLocation":579},{"text":719,"config":720},"Sustainability",{"href":721,"dataGaName":719,"dataGaLocation":579},"/sustainability/",{"text":723,"config":724},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":725,"dataGaName":726,"dataGaLocation":579},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":454,"config":728},{"href":456,"dataGaName":457,"dataGaLocation":579},{"text":464,"config":730},{"href":466,"dataGaName":467,"dataGaLocation":579},{"text":469,"config":732},{"href":471,"dataGaName":472,"dataGaLocation":579},{"text":734,"config":735},"現代奴隷制の透明性に関する声明",{"href":736,"dataGaName":737,"dataGaLocation":579},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":177,"links":739},[740,742,747,749,754,759,764],{"text":177,"config":741},{"href":179,"dataGaName":180,"dataGaLocation":579},{"text":743,"config":744},"サポートを受ける",{"href":745,"dataGaName":746,"dataGaLocation":579},"/support/","get help",{"text":487,"config":748},{"href":489,"dataGaName":490,"dataGaLocation":579},{"text":750,"config":751},"ステータス",{"href":752,"dataGaName":753,"dataGaLocation":579},"https://status.gitlab.com/","status",{"text":755,"config":756},"利用規約",{"href":757,"dataGaName":758,"dataGaLocation":579},"/terms/","terms of use",{"text":760,"config":761},"プライバシーに関する声明",{"href":762,"dataGaName":763,"dataGaLocation":579},"/ja-jp/privacy/","privacy statement",{"text":765,"config":766},"Cookieの設定",{"dataGaName":767,"dataGaLocation":579,"id":768,"isOneTrustButton":158},"cookie preferences","ot-sdk-btn",{"items":770},[771,773,775],{"text":755,"config":772},{"href":757,"dataGaName":758,"dataGaLocation":579},{"text":760,"config":774},{"href":762,"dataGaName":763,"dataGaLocation":579},{"text":765,"config":776},{"dataGaName":767,"dataGaLocation":579,"id":768,"isOneTrustButton":158},{"header":778,"blurb":779,"button":780,"secondaryButton":784},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":172,"config":781},{"href":782,"dataGaName":175,"dataGaLocation":783},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":177,"config":785},{"href":179,"dataGaName":180,"dataGaLocation":783},1772652137711]