> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# セキュリティ保護

> トークンの処理やセキュリティ攻撃の防止、許可リスト、データプライバシー、Auth0のセキュリティ情報など、セキュリティ関連のさまざまな問題をご紹介します。

export const AuthDocsPipeline = ({activeId}) => {
  const [hoveredId, setHoveredId] = useState(null);
  const VB_WIDTH = 1202;
  const VB_HEIGHT = 424;
  const AUTH_GROUP = new Set(['authenticate', 'provision-db', 'provision-social', 'add-login']);
  const CUSTOM_GROUP = new Set(['customize', 'brand', 'actions', 'extensions']);
  const STEPS = [{
    id: 'get-started',
    href: '/docs/get-started',
    cx: 53.7447,
    cy: 140.5572,
    r: 52
  }, {
    id: 'authenticate',
    href: '/docs/authenticate',
    cx: 239.164,
    cy: 140.5572,
    r: 52
  }, {
    id: 'manage-users',
    href: '/docs/manage-users',
    cx: 515.135,
    cy: 140.5572,
    r: 52
  }, {
    id: 'customize',
    href: '/docs/customize',
    cx: 791.106,
    cy: 140.5572,
    r: 52
  }, {
    id: 'deploy',
    href: '/docs/deploy-monitor',
    cx: 1147.57,
    cy: 140.5572,
    r: 52
  }, {
    id: 'secure',
    href: '/docs/secure',
    cx: 974,
    cy: 224,
    r: 44
  }, {
    id: 'provision-db',
    href: '/docs/authenticate#provision–database',
    cx: 67,
    cy: 410,
    r: 42
  }, {
    id: 'provision-social',
    href: '/docs/authenticate#provision–social',
    cx: 167,
    cy: 410,
    r: 42
  }, {
    id: 'add-login',
    href: '/docs/authenticate#add-login',
    cx: 312,
    cy: 410,
    r: 42
  }, {
    id: 'brand',
    href: '/docs/customize#brand',
    cx: 720,
    cy: 410,
    r: 42
  }, {
    id: 'actions',
    href: '/docs/customize#actions',
    cx: 864,
    cy: 410,
    r: 42
  }, {
    id: 'extensions',
    href: '/docs/customize#extensions',
    cx: 964,
    cy: 410,
    r: 42
  }];
  const addGroupToSet = (id, set) => {
    if (!id) return;
    if (AUTH_GROUP.has(id)) {
      AUTH_GROUP.forEach(gid => set.add(gid));
    } else if (CUSTOM_GROUP.has(id)) {
      CUSTOM_GROUP.forEach(gid => set.add(gid));
    } else {
      set.add(id);
    }
  };
  const lit = new Set();
  addGroupToSet(activeId, lit);
  addGroupToSet(hoveredId, lit);
  return <div className="pipeline-wrapper">
      <img src="/docs/images/site-graph.svg" alt="Auth0 docs pipeline" className="pipeline-img block dark:hidden" noZoom />
      <img src="/docs/images/site-graph-dark.svg" alt="Auth0 docs pipeline" className="pipeline-img hidden dark:block" noZoom />

      {STEPS.map(({id, cx, cy, r}) => {
    if (lit.has(id)) return null;
    const left = (cx - r) / VB_WIDTH * 100;
    const top = (cy - r) / VB_HEIGHT * 100;
    const size = 2 * r / VB_WIDTH * 100;
    return <div key={`dim-${id}`} className="pipeline-dim-circle" style={{
      left: `${left}%`,
      top: `${top}%`,
      width: `${size}%`
    }} />;
  })}

      {STEPS.map(({id, href, cx, cy, r}) => {
    const left = (cx - r) / VB_WIDTH * 100;
    const top = (cy - r) / VB_HEIGHT * 100;
    const size = 2 * r / VB_WIDTH * 100;
    return <a key={id} href={href} aria-label={id} className={`pipeline-hotspot${lit.has(id) ? ' lit' : ''}`} style={{
      left: `${left}%`,
      top: `${top}%`,
      width: `${size}%`
    }} onMouseEnter={() => setHoveredId(id)} onMouseLeave={() => setHoveredId(null)} />;
  })}
    </div>;
};

<AuthDocsPipeline activeId="secure" />

Auth0は、情報技術システムを攻撃しようとする人々からアプリケーションを守るための重要なツールを提供します。たとえば多要素認証（MFA）は、2種類以上のユーザー検証を求めることでリスクを減らします。各種攻撃防御機能は、短時間に何度もログインに失敗する、1つのIPアドレスから複数のアカウントにすばやくログインを試みるなどの不審な行動を、自動的に検出して対応します。

Auth0は、GDPRやHIPAAに似たなど、各種コンプライアンスフレームワークや満たします。

***

<div id="protect-your-application">
  ## アプリケーションの保護
</div>

<div id="make-sure-only-the-right-people-can-access-your-applications">
  ##### 適切な人しかアプリケーションにアクセスできないように対策します。
</div>

<Card title="アプリケーションの資格情報" href="/docs/ja-JP/ja-jp/secure/application-credentials">
  このセクションでは、認証するアプリケーションの資格情報について説明します。
</Card>

<Card title="攻撃防御" href="/docs/ja-JP/ja-jp/secure/attack-protection">
  攻撃を検知して、悪意のある行為者がアプリケーションにアクセスすることを未然に防ぎます。
</Card>

<Card title="継続的なセッション保護" href="/docs/ja-JP/ja-jp/secure/continuous-session-protection">
  カスタマイズ可能なセッションおよびリフレッシュトークン管理により、セキュリティを強化し、ユーザーエクスペリエンスをカスタマイズできます。
</Card>

<Card title="Auth0’s Mobile Driver's License Verification Service" href="/docs/ja-JP/ja-jp/secure/mdl-verification">
  Learn about Auth0's Mobile Driver's License Verifiable Credential service.
</Card>

<Card title="多要素認証" href="/docs/ja-JP/ja-jp/secure/multi-factor-authentication">
  アプリケーションにアクセスしようとしているユーザーの身元やデバイスがパスワードと一致することを確実にするために、確認手順を追加します。
</Card>

<Card title="セキュリティセンター" href="/docs/ja-JP/ja-jp/secure/security-center">
  潜在的な攻撃の傾向を観測して、リアルタイムで迅速に対処します。
</Card>

<Card title="セキュリティガイダンス" href="/docs/ja-JP/ja-jp/secure/security-guidance">
  セキュリティ速報の表示と、データやアカウントを保護するための基本情報について説明します。
</Card>

<Card title="Sender Constraining" href="/docs/ja-JP/ja-jp/secure/sender-constraining">
  Learn how to sender constrain tokens in Auth0.
</Card>

<Card title="トークン" href="/docs/ja-JP/ja-jp/secure/tokens">
  アイデンティティと認証に関連したトークンの種類と、それらがAuth0でどのように使用されるのかを説明します。
</Card>

***

<div id="protect-your-tenant">
  ## Protect Your Tenant
</div>

<div id="learn-how-to-protect-your-tenant-and-rate-limits">
  ##### Learn how to protect your tenant and rate limits.
</div>

<Card title="Tenant Access Control List" href="/docs/ja-JP/ja-jp/secure/tenant-access-control-list">
  Learn how to protect your tenant from unwanted traffic with Tenant Access Control Lists (ACL).
</Card>

***

<div id="compliance">
  ## コンプライアンス
</div>

<div id="learn-how-auth0-supports-compliance-frameworks-such-as-gdpr-and-hipaa">
  ##### GDPRやHIPAAなど、Auth0が要件を満たす各種コンプライアンスフレームワークおよび認定についてご紹介します。
</div>

<Card title="データプライバシーとコンプライアンス" href="/docs/ja-JP/ja-jp/secure/data-privacy-and-compliance">
  Auth0のコンプライアンス条件とデータ処理について説明します。
</Card>
