[{"data":1,"prerenderedAt":836},["ShallowReactive",2],{"/ja-jp/topics/devsecops/what-is-fuzz-testing":3,"navigation-ja-jp":164,"banner-ja-jp":582,"footer-ja-jp":592,"next-steps-ja-jp":827},{"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/ja-jp/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","KJYDSnjXl-2CK2aX7jDhP1udOyEJzUy_j11n2aGtPXk",{"logo":165,"freeTrial":170,"sales":175,"login":180,"items":185,"search":502,"minimal":535,"duo":552,"switchNav":561,"pricingDeployment":572},{"config":166},{"href":167,"dataGaName":168,"dataGaLocation":169},"/ja-jp/","gitlab logo","header",{"text":171,"config":172},"無料トライアルを開始",{"href":173,"dataGaName":174,"dataGaLocation":169},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":176,"config":177},"お問い合わせ",{"href":178,"dataGaName":179,"dataGaLocation":169},"/ja-jp/sales/","sales",{"text":181,"config":182},"サインイン",{"href":183,"dataGaName":184,"dataGaLocation":169},"https://gitlab.com/users/sign_in/","sign in",[186,214,316,321,422,483],{"text":187,"config":188,"menu":190},"プラットフォーム",{"dataNavLevelOne":189},"platform",{"type":191,"columns":192},"cards",[193,199,207],{"title":187,"description":194,"link":195},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":196,"config":197},"プラットフォームを探索",{"href":198,"dataGaName":189,"dataGaLocation":169},"/ja-jp/platform/",{"title":200,"description":201,"link":202},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":203,"config":204},"GitLab Duoのご紹介",{"href":205,"dataGaName":206,"dataGaLocation":169},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":208,"description":209,"link":210},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":118,"config":211},{"href":212,"dataGaName":213,"dataGaLocation":169},"/ja-jp/why-gitlab/","why gitlab",{"text":215,"left":158,"config":216,"menu":218},"製品",{"dataNavLevelOne":217},"solutions",{"type":219,"link":220,"columns":224,"feature":295},"lists",{"text":221,"config":222},"すべてのソリューションを表示",{"href":223,"dataGaName":217,"dataGaLocation":169},"/ja-jp/solutions/",[225,250,273],{"title":226,"description":227,"link":228,"items":233},"自動化","CI/CDと自動化でデプロイを加速",{"config":229},{"icon":230,"href":231,"dataGaName":232,"dataGaLocation":169},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[234,238,241,246],{"text":235,"config":236},"CI/CD",{"href":237,"dataGaLocation":169,"dataGaName":235},"/ja-jp/solutions/continuous-integration/",{"text":200,"config":239},{"href":205,"dataGaLocation":169,"dataGaName":240},"gitlab duo agent platform - product menu",{"text":242,"config":243},"ソースコード管理",{"href":244,"dataGaLocation":169,"dataGaName":245},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":247,"config":248},"自動化されたソフトウェアデリバリー",{"href":231,"dataGaLocation":169,"dataGaName":249},"Automated software delivery",{"title":251,"description":252,"link":253,"items":258},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":254},{"href":255,"dataGaName":256,"dataGaLocation":169,"icon":257},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[259,263,268],{"text":260,"config":261},"アプリケーションセキュリティテスト",{"href":255,"dataGaName":262,"dataGaLocation":169},"Application security testing",{"text":264,"config":265},"ソフトウェアサプライチェーンの安全性",{"href":266,"dataGaLocation":169,"dataGaName":267},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":269,"config":270},"ソフトウェアコンプライアンス",{"href":271,"dataGaName":272,"dataGaLocation":169},"/ja-jp/solutions/software-compliance/","software compliance",{"title":274,"link":275,"items":280},"測定",{"config":276},{"icon":277,"href":278,"dataGaName":279,"dataGaLocation":169},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[281,285,290],{"text":282,"config":283},"可視性と測定",{"href":278,"dataGaLocation":169,"dataGaName":284},"Visibility and Measurement",{"text":286,"config":287},"バリューストリーム管理",{"href":288,"dataGaLocation":169,"dataGaName":289},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":291,"config":292},"分析とインサイト",{"href":293,"dataGaLocation":169,"dataGaName":294},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":296,"type":219,"items":297},"GitLabが活躍する場所",[298,304,310],{"text":299,"config":300},"エンタープライズ",{"icon":301,"href":302,"dataGaLocation":169,"dataGaName":303},"Building","/ja-jp/enterprise/","enterprise",{"text":305,"config":306},"スモールビジネス",{"icon":307,"href":308,"dataGaLocation":169,"dataGaName":309},"Work","/ja-jp/small-business/","small business",{"text":311,"config":312},"公共部門",{"icon":313,"href":314,"dataGaLocation":169,"dataGaName":315},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":317,"config":318},"価格",{"href":319,"dataGaName":320,"dataGaLocation":169,"dataNavLevelOne":320},"/ja-jp/pricing/","pricing",{"text":322,"config":323,"menu":324},"リソース",{"dataNavLevelOne":128},{"type":219,"link":325,"columns":329,"feature":408},{"text":326,"config":327},"すべてのリソースを表示",{"href":328,"dataGaName":128,"dataGaLocation":169},"/ja-jp/resources/",[330,363,380],{"title":331,"items":332},"はじめに",[333,338,343,348,353,358],{"text":334,"config":335},"インストール",{"href":336,"dataGaName":337,"dataGaLocation":169},"/ja-jp/install/","install",{"text":339,"config":340},"クイックスタートガイド",{"href":341,"dataGaName":342,"dataGaLocation":169},"/ja-jp/get-started/","quick setup checklists",{"text":344,"config":345},"学ぶ",{"href":346,"dataGaLocation":169,"dataGaName":347},"https://university.gitlab.com/","learn",{"text":349,"config":350},"製品ドキュメント",{"href":351,"dataGaName":352,"dataGaLocation":169},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":354,"config":355},"ベストプラクティスビデオ",{"href":356,"dataGaName":357,"dataGaLocation":169},"/ja-jp/getting-started-videos/","best practice videos",{"text":359,"config":360},"インテグレーション",{"href":361,"dataGaName":362,"dataGaLocation":169},"/ja-jp/integrations/","integrations",{"title":364,"items":365},"検索する",[366,371,375],{"text":367,"config":368},"お客様成功事例",{"href":369,"dataGaName":370,"dataGaLocation":169},"/ja-jp/customers/","customer success stories",{"text":132,"config":372},{"href":373,"dataGaName":374,"dataGaLocation":169},"/ja-jp/blog/","blog",{"text":376,"config":377},"リモート",{"href":378,"dataGaName":379,"dataGaLocation":169},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":381,"items":382},"つなげる",[383,388,393,398,403],{"text":384,"config":385},"GitLabサービス",{"href":386,"dataGaName":387,"dataGaLocation":169},"/ja-jp/services/","services",{"text":389,"config":390},"コミュニティ",{"href":391,"dataGaName":392,"dataGaLocation":169},"/community/","community",{"text":394,"config":395},"フォーラム",{"href":396,"dataGaName":397,"dataGaLocation":169},"https://forum.gitlab.com/","forum",{"text":399,"config":400},"イベント",{"href":401,"dataGaName":402,"dataGaLocation":169},"/events/","events",{"text":404,"config":405},"パートナー",{"href":406,"dataGaName":407,"dataGaLocation":169},"/ja-jp/partners/","partners",{"config":409,"text":412,"image":413,"link":417},{"background":410,"textColor":411},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":414,"config":415},"ソースプロモカード",{"src":416},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":418,"config":419},"最新情報を読む",{"href":420,"dataGaName":421,"dataGaLocation":169},"/ja-jp/the-source/","the source",{"text":423,"config":424,"menu":426},"会社情報",{"dataNavLevelOne":425},"company",{"type":219,"columns":427},[428],{"items":429},[430,435,441,443,448,453,458,463,468,473,478],{"text":431,"config":432},"GitLabについて",{"href":433,"dataGaName":434,"dataGaLocation":169},"/ja-jp/company/","about",{"text":436,"config":437,"footerGa":440},"採用情報",{"href":438,"dataGaName":439,"dataGaLocation":169},"/jobs/","jobs",{"dataGaName":439},{"text":399,"config":442},{"href":401,"dataGaName":402,"dataGaLocation":169},{"text":444,"config":445},"経営陣",{"href":446,"dataGaName":447,"dataGaLocation":169},"/company/team/e-group/","leadership",{"text":449,"config":450},"チーム",{"href":451,"dataGaName":452,"dataGaLocation":169},"/company/team/","team",{"text":454,"config":455},"ハンドブック",{"href":456,"dataGaName":457,"dataGaLocation":169},"https://handbook.gitlab.com/","handbook",{"text":459,"config":460},"投資家向け情報",{"href":461,"dataGaName":462,"dataGaLocation":169},"https://ir.gitlab.com/","investor relations",{"text":464,"config":465},"トラストセンター",{"href":466,"dataGaName":467,"dataGaLocation":169},"/ja-jp/security/","trust center",{"text":469,"config":470},"AI Transparency Center",{"href":471,"dataGaName":472,"dataGaLocation":169},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":474,"config":475},"ニュースレター",{"href":476,"dataGaName":477,"dataGaLocation":169},"/company/contact/#contact-forms","newsletter",{"text":479,"config":480},"プレス",{"href":481,"dataGaName":482,"dataGaLocation":169},"/press/","press",{"text":176,"config":484,"menu":485},{"dataNavLevelOne":425},{"type":219,"columns":486},[487],{"items":488},[489,492,497],{"text":176,"config":490},{"href":178,"dataGaName":491,"dataGaLocation":169},"talk to sales",{"text":493,"config":494},"サポートを受ける",{"href":495,"dataGaName":496,"dataGaLocation":169},"https://support.gitlab.com","support portal",{"text":498,"config":499},"カスタマーポータル",{"href":500,"dataGaName":501,"dataGaLocation":169},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":503,"login":504,"suggestions":511},"閉じる",{"text":505,"link":506},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":507,"config":508},"GitLab.com",{"href":183,"dataGaName":509,"dataGaLocation":510},"search login","search",{"text":512,"default":513},"提案",[514,516,521,523,527,531],{"text":200,"config":515},{"href":205,"dataGaName":200,"dataGaLocation":510},{"text":517,"config":518},"コード提案（AI）",{"href":519,"dataGaName":520,"dataGaLocation":510},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":235,"config":522},{"href":237,"dataGaName":235,"dataGaLocation":510},{"text":524,"config":525},"GitLab on AWS",{"href":526,"dataGaName":524,"dataGaLocation":510},"/ja-jp/partners/technology-partners/aws/",{"text":528,"config":529},"GitLab on Google Cloud",{"href":530,"dataGaName":528,"dataGaLocation":510},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":532,"config":533},"GitLabを選ぶ理由",{"href":212,"dataGaName":534,"dataGaLocation":510},"Why GitLab?",{"freeTrial":536,"mobileIcon":540,"desktopIcon":545,"secondaryButton":548},{"text":171,"config":537},{"href":538,"dataGaName":174,"dataGaLocation":539},"https://gitlab.com/-/trials/new/","nav",{"altText":541,"config":542},"GitLabアイコン",{"src":543,"dataGaName":544,"dataGaLocation":539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":541,"config":546},{"src":547,"dataGaName":544,"dataGaLocation":539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":331,"config":549},{"href":550,"dataGaName":551,"dataGaLocation":539},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":553,"mobileIcon":557,"desktopIcon":559},{"text":554,"config":555},"GitLab Duoの詳細について",{"href":205,"dataGaName":556,"dataGaLocation":539},"gitlab duo",{"altText":541,"config":558},{"src":543,"dataGaName":544,"dataGaLocation":539},{"altText":541,"config":560},{"src":547,"dataGaName":544,"dataGaLocation":539},{"button":562,"mobileIcon":567,"desktopIcon":569},{"text":563,"config":564},"/switch",{"href":565,"dataGaName":566,"dataGaLocation":539},"#contact","switch",{"altText":541,"config":568},{"src":543,"dataGaName":544,"dataGaLocation":539},{"altText":541,"config":570},{"src":571,"dataGaName":544,"dataGaLocation":539},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":573,"mobileIcon":578,"desktopIcon":580},{"text":574,"config":575},"価格ページに戻る",{"href":319,"dataGaName":576,"dataGaLocation":539,"icon":577},"back to pricing","GoBack",{"altText":541,"config":579},{"src":543,"dataGaName":544,"dataGaLocation":539},{"altText":541,"config":581},{"src":547,"dataGaName":544,"dataGaLocation":539},{"title":583,"button":584,"config":589},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":585,"config":586},"6月10日のGitLab Transcendに申し込む",{"href":587,"dataGaName":588,"dataGaLocation":169},"/ja-jp/releases/whats-new/#sign-up","transcend event",{"layout":590,"icon":591,"disabled":28},"release","AiStar",{"data":593},{"text":594,"source":595,"edit":601,"contribute":606,"config":611,"items":616,"minimal":818},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":596,"config":597},"ページのソースを表示",{"href":598,"dataGaName":599,"dataGaLocation":600},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":602,"config":603},"このページを編集",{"href":604,"dataGaName":605,"dataGaLocation":600},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":607,"config":608},"ご協力をお願いします",{"href":609,"dataGaName":610,"dataGaLocation":600},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":612,"facebook":613,"youtube":614,"linkedin":615},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[617,662,714,757,784],{"title":317,"links":618,"subMenu":633},[619,623,628],{"text":620,"config":621},"プランの表示",{"href":319,"dataGaName":622,"dataGaLocation":600},"view plans",{"text":624,"config":625},"Premiumを選ぶ理由",{"href":626,"dataGaName":627,"dataGaLocation":600},"/ja-jp/pricing/premium/","why premium",{"text":629,"config":630},"Ultimateを選ぶ理由",{"href":631,"dataGaName":632,"dataGaLocation":600},"/ja-jp/pricing/ultimate/","why ultimate",[634],{"title":176,"links":635},[636,638,640,642,647,652,657],{"text":176,"config":637},{"href":178,"dataGaName":179,"dataGaLocation":600},{"text":493,"config":639},{"href":495,"dataGaName":496,"dataGaLocation":600},{"text":498,"config":641},{"href":500,"dataGaName":501,"dataGaLocation":600},{"text":643,"config":644},"ステータス",{"href":645,"dataGaName":646,"dataGaLocation":600},"https://status.gitlab.com/","status",{"text":648,"config":649},"利用規約",{"href":650,"dataGaName":651,"dataGaLocation":600},"/terms/","terms of use",{"text":653,"config":654},"プライバシーに関する声明",{"href":655,"dataGaName":656,"dataGaLocation":600},"/ja-jp/privacy/","privacy statement",{"text":658,"config":659},"Cookie 優先設定",{"dataGaName":660,"dataGaLocation":600,"id":661,"isOneTrustButton":158},"cookie preferences","ot-sdk-btn",{"title":215,"links":663,"subMenu":672},[664,668],{"text":665,"config":666},"DevSecOpsプラットフォーム",{"href":198,"dataGaName":667,"dataGaLocation":600},"devsecops platform",{"text":669,"config":670},"AI支援開発",{"href":205,"dataGaName":671,"dataGaLocation":600},"ai-assisted development",[673],{"title":674,"links":675},"トピック",[676,680,685,690,695,699,704,709],{"text":235,"config":677},{"href":678,"dataGaName":679,"dataGaLocation":600},"/ja-jp/topics/ci-cd/","cicd",{"text":681,"config":682},"GitOps",{"href":683,"dataGaName":684,"dataGaLocation":600},"/ja-jp/topics/gitops/","gitops",{"text":686,"config":687},"DevOps",{"href":688,"dataGaName":689,"dataGaLocation":600},"/ja-jp/topics/devops/","devops",{"text":691,"config":692},"バージョン管理",{"href":693,"dataGaName":694,"dataGaLocation":600},"/ja-jp/topics/version-control/","version control",{"text":696,"config":697},"DevSecOps",{"href":19,"dataGaName":698,"dataGaLocation":600},"devsecops",{"text":700,"config":701},"クラウドネイティブ",{"href":702,"dataGaName":703,"dataGaLocation":600},"/ja-jp/topics/cloud-native/","cloud native",{"text":705,"config":706},"コーディングのためのAI",{"href":707,"dataGaName":708,"dataGaLocation":600},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":710,"config":711},"エージェント型AI",{"href":712,"dataGaName":713,"dataGaLocation":600},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":715,"links":716},"ソリューション",[717,720,722,727,731,734,737,740,742,744,747,752],{"text":260,"config":718},{"href":255,"dataGaName":719,"dataGaLocation":600},"Application Security Testing",{"text":247,"config":721},{"href":231,"dataGaName":232,"dataGaLocation":600},{"text":723,"config":724},"アジャイル開発",{"href":725,"dataGaName":726,"dataGaLocation":600},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":728,"config":729},"SCM",{"href":244,"dataGaName":730,"dataGaLocation":600},"source code management",{"text":235,"config":732},{"href":237,"dataGaName":733,"dataGaLocation":600},"continuous integration & delivery",{"text":286,"config":735},{"href":288,"dataGaName":736,"dataGaLocation":600},"value stream management",{"text":681,"config":738},{"href":739,"dataGaName":684,"dataGaLocation":600},"/ja-jp/solutions/gitops/",{"text":299,"config":741},{"href":302,"dataGaName":303,"dataGaLocation":600},{"text":305,"config":743},{"href":308,"dataGaName":309,"dataGaLocation":600},{"text":745,"config":746},"公共機関",{"href":314,"dataGaName":315,"dataGaLocation":600},{"text":748,"config":749},"教育",{"href":750,"dataGaName":751,"dataGaLocation":600},"/ja-jp/solutions/education/","education",{"text":753,"config":754},"金融サービス",{"href":755,"dataGaName":756,"dataGaLocation":600},"/ja-jp/solutions/finance/","financial services",{"title":322,"links":758},[759,761,763,765,768,770,772,774,776,778,780,782],{"text":334,"config":760},{"href":336,"dataGaName":337,"dataGaLocation":600},{"text":339,"config":762},{"href":341,"dataGaName":342,"dataGaLocation":600},{"text":344,"config":764},{"href":346,"dataGaName":347,"dataGaLocation":600},{"text":349,"config":766},{"href":351,"dataGaName":767,"dataGaLocation":600},"docs",{"text":132,"config":769},{"href":373,"dataGaName":374,"dataGaLocation":600},{"text":367,"config":771},{"href":369,"dataGaName":370,"dataGaLocation":600},{"text":376,"config":773},{"href":378,"dataGaName":379,"dataGaLocation":600},{"text":384,"config":775},{"href":386,"dataGaName":387,"dataGaLocation":600},{"text":389,"config":777},{"href":391,"dataGaName":392,"dataGaLocation":600},{"text":394,"config":779},{"href":396,"dataGaName":397,"dataGaLocation":600},{"text":399,"config":781},{"href":401,"dataGaName":402,"dataGaLocation":600},{"text":404,"config":783},{"href":406,"dataGaName":407,"dataGaLocation":600},{"title":423,"links":785},[786,788,790,792,794,796,798,802,807,809,811,813],{"text":431,"config":787},{"href":433,"dataGaName":425,"dataGaLocation":600},{"text":436,"config":789},{"href":438,"dataGaName":439,"dataGaLocation":600},{"text":444,"config":791},{"href":446,"dataGaName":447,"dataGaLocation":600},{"text":449,"config":793},{"href":451,"dataGaName":452,"dataGaLocation":600},{"text":454,"config":795},{"href":456,"dataGaName":457,"dataGaLocation":600},{"text":459,"config":797},{"href":461,"dataGaName":462,"dataGaLocation":600},{"text":799,"config":800},"Sustainability",{"href":801,"dataGaName":799,"dataGaLocation":600},"/sustainability/",{"text":803,"config":804},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":805,"dataGaName":806,"dataGaLocation":600},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":464,"config":808},{"href":466,"dataGaName":467,"dataGaLocation":600},{"text":474,"config":810},{"href":476,"dataGaName":477,"dataGaLocation":600},{"text":479,"config":812},{"href":481,"dataGaName":482,"dataGaLocation":600},{"text":814,"config":815},"現代奴隷制の透明性に関する声明",{"href":816,"dataGaName":817,"dataGaLocation":600},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":819},[820,822,825],{"text":648,"config":821},{"href":650,"dataGaName":651,"dataGaLocation":600},{"text":823,"config":824},"Cookieの設定",{"dataGaName":660,"dataGaLocation":600,"id":661,"isOneTrustButton":158},{"text":653,"config":826},{"href":655,"dataGaName":656,"dataGaLocation":600},{"header":828,"blurb":829,"button":830,"secondaryButton":834},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":171,"config":831},{"href":832,"dataGaName":174,"dataGaLocation":833},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":176,"config":835},{"href":178,"dataGaName":179,"dataGaLocation":833},1777934838197]