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