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