<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
  <id>https://web.maronn-room.com/feed.xml</id>
  <title>Auth Vault</title>
  <link href="https://web.maronn-room.com/" />
  <link rel="self" type="application/atom+xml" href="https://web.maronn-room.com/feed.xml" />
  <updated>2025-08-16T22:00:00.000Z</updated>
  <entry>
    <id>https://web.maronn-room.com/articles/totp-in-ci-with-okta</id>
    <title>CIでOkta LDAP InterfaceにTOTPによるMFAを用いてリクエストを投げる</title>
    <link href="https://web.maronn-room.com/articles/totp-in-ci-with-okta" />
    <updated>2025-08-16T22:00:00.000Z</updated>
    <published>2025-08-16T22:00:00.000Z</published>
    <summary>はじめに 認証するというと、人間の操作によるものだけではありません。 例えば、CI上で認証して操作をしたいというケースは往々にしてあります。 実際にGitHub WorkflowでのOIDCによる認証についての記事などは色々とあります。 ただ、OpenID Connectが主要で…</summary>
    <category term="Okta" />
    <category term="MFA" />
    <category term="TOTP" />
    <category term="LDAP" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/aboun-microservices-auth-in-app</id>
    <title>マイクロサービスにおける認証・認可を考える</title>
    <link href="https://web.maronn-room.com/articles/aboun-microservices-auth-in-app" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに マイクロサービスはサービス単位で機能を分割します。 それによって、他のアプリケーションへ使い回すようにできるなど多くのメリットをもたらします。 一方で、分割することで発生するのが認証・認可の情報をどのように各サービスへ伝えるかということです。 そこで、今回はマイクロサー…</summary>
    <category term="Microservices" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/about-auth-guard-in-nestjs</id>
    <title>NestJSのAuthGuard周りをアレンジしたり、深掘りしたり</title>
    <link href="https://web.maronn-room.com/articles/about-auth-guard-in-nestjs" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 以前、NestJS でストラテジーを使う時のガード処理についてのブログを書きました。 それのおかげでストラテジー自体の理解であったり、NestJS でストラテジーを登録することであったりの理解は深まりました。 ただ、AuthGuard が具体的にどうやってガード処理とス…</summary>
    <category term="NestJS" />
    <category term="passport" />
    <category term="Strategy" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/about-cross-app-access</id>
    <title>Cross App Accessをざっくりと解説して、Oktaで試してみる</title>
    <link href="https://web.maronn-room.com/articles/about-cross-app-access" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 現在AIエージェントをはじめとした、Non HumanのID管理というのが求められています。 その中で、認可管理をエンタープライズで行うための仕様が今議論されています。 それが、Cross App Access(XAA)です。 Cross App Accessを用いるこ…</summary>
    <category term="Okta" />
    <category term="CrossAppAccess" />
    <category term="XAA" />
    <category term="MCP" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/about-dbsc-infomation</id>
    <title>Device Bound Session Credentials (DBSC)の概要や分からないことをつらつらと書く</title>
    <link href="https://web.maronn-room.com/articles/about-dbsc-infomation" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 先日 Google のブログに以下の投稿がありました。 cookie theft using device.html 詳細はこの後見ていきますが、かなり端折ると以下のツイートに凝縮されると思っています。 正直この先の話はこのツイート以上の話はないのですが、一緒に新しい仕…</summary>
    <category term="google" />
    <category term="Cookie" />
    <category term="DeviceBoundSessionCredentials" />
    <category term="DBSC" />
    <category term="Session" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/about-openid-provider-commands</id>
    <title>OpenID Provider Commandsの仕様をざっくり読んだので、ざっくり感想を書く</title>
    <link href="https://web.maronn-room.com/articles/about-openid-provider-commands" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 先日以下の投稿を見かけました。 eidentity/status/1898168504488259676 どうやらOpenID Connect周りで、OpenID Provider Commandsという新しい仕様が考えられているという内容でした。 そして、上記ツイート…</summary>
    <category term="OpenID" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/about-verify-in-node-jsonwebtoken</id>
    <title>node-jsonwebtokeの検証処理についての流れを確認する</title>
    <link href="https://web.maronn-room.com/articles/about-verify-in-node-jsonwebtoken" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 開発の都合上、node jwonwebtokeの verify 部分の処理について理解する必要がありました。 今回は verify の役割を担う、verify.jsの処理についてみていきます。 jsonwebtoken の verify.js の流れ jsonwebto…</summary>
    <category term="JWT" />
    <category term="Auth0" />
    <category term="Node" />
    <category term="jsonwebtoken" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/auth0-and-eventbridge-integrate</id>
    <title>Auth0のEvent StreamとAWS EventBridgeを連携して、リトライ可能かつ非同期に情報を連携する</title>
    <link href="https://web.maronn-room.com/articles/auth0-and-eventbridge-integrate" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに この記事で実現すること この記事では、Auth0でユーザーをブロックした際に、自作アプリケーション側にもブロック状態が自動的に反映される仕組みを構築します。 具体的には、Auth0の管理画面でユーザーをブロックすると、その情報がAWS EventBridge経由でアプリ…</summary>
    <category term="Auth0" />
    <category term="AWS" />
    <category term="EventBridge" />
    <category term="SQS" />
    <category term="Lambda" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/auth0-dashboard-login-require-login</id>
    <title>衝撃！Auth0のダッシュボードをログインするのにMFAが必須化となりました</title>
    <link href="https://web.maronn-room.com/articles/auth0-dashboard-login-require-login" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 先日 Auth0 のダッシュボードへログインしたら、下記のようなお知らせが右下に表示されました。 よくあるお知らせなのかなと思って眺めていたのですが、ちゃんと読んでみると「2024 年 2 月 1 日から Auth0 へログインするには MFA の設定が必須だよ。」とい…</summary>
    <category term="Auth0" />
    <category term="MFA" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/authenticate-document-in-nestjs</id>
    <title>NestJsの認証周りのドキュメントを読み直す</title>
    <link href="https://web.maronn-room.com/articles/authenticate-document-in-nestjs" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに ある日 NestJS で書かれた認証・認可周りのコードを眺めていました。 すると、「これってなんやっけ？」と内部の実装が読めなくなっていました。 これはまずい！と思い、再勉強も兼ねて NestJS のドキュメントを読み直すことにしました。 そのため、今回は NestJS…</summary>
    <category term="Typescript" />
    <category term="NestJS" />
    <category term="JWT" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/cookie-by-auth0-in-spa</id>
    <title>SPAでAuth0のライブラリを使ってログインした際にセットされるCookieについて</title>
    <link href="https://web.maronn-room.com/articles/cookie-by-auth0-in-spa" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>この記事の内容について 正直、Auth0のコミュニティサイトで展開された内容を読めば十分です。 上記リンクの内容を自分で改めてまとめたにすぎません。 はじめに SPAでAuth0を使用し、ログインを行うと以下画像のようなCookieがセットされます。 何かしら使用されていそうです…</summary>
    <category term="Auth0" />
    <category term="SPA" />
    <category term="Cookie" />
    <category term="Javascript" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/dbsc-when-browser-restart</id>
    <title>想像以上だったDevice Bound Session Credentials（ブラウザの再起動時）</title>
    <link href="https://web.maronn-room.com/articles/dbsc-when-browser-restart" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 以前の記事でDevice Boudn Session Credentials(以降DBSC)を試していました。 別タブでもCookieが有効期限切れになっても動くね、すごいねと書きました。 一方で、ブラウザの再起動では再度アクセスしても動かないから、DBSCを適用するア…</summary>
    <category term="Cookie" />
    <category term="DeviceBoundSessionCredentials" />
    <category term="DBSC" />
    <category term="Session" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/dbsc-with-authorization</id>
    <title>Device Bound Session Credentials(DBSC)のauthorizationを動かして悩んでみた</title>
    <link href="https://web.maronn-room.com/articles/dbsc-with-authorization" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに Device Bound Session Credentials(DBSC)のプレビュー版が提供されましたね。 and security/defending against account takeovers top threats passkeys and dbsc?…</summary>
    <category term="DBSC" />
    <category term="OIDC" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/demo-auth0-token-vault</id>
    <title>Auth0のToken Vaultを体験できるデモアプリの流れ解説</title>
    <link href="https://web.maronn-room.com/articles/demo-auth0-token-vault" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 以前の記事で、Auth0のToken Vaultについて言及しました。 room.com/maronn2/articles/token vault by auth0 そこでは、Token Vaultを試せるアプリのサンプルコードを記載しました。 もちろん可能な限りセット…</summary>
    <category term="Auth0" />
    <category term="Token Vault" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/firebase-login-spa</id>
    <title>Firebaseで始めるソーシャル認証システム</title>
    <link href="https://web.maronn-room.com/articles/firebase-login-spa" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>目次 はじめに Firebase とは Firebase Authenticate とは なぜ IDaaS を使うのか Firebase Auth を使用したアプリケーション 環境構築 ソーシャルログイン ログアウト・退会 (補)API を画面で確認する Firebase は A…</summary>
    <category term="Firebase" />
    <category term="NestJS" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/get-secret-in-postinstall</id>
    <title>Shai-Huludの内容を読んで、postinstallスクリプトを用いたシークレット情報を抜き出すコードを作成した</title>
    <link href="https://web.maronn-room.com/articles/get-secret-in-postinstall" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>この記事ですが、あくまで「Shai Hulud」サプライチェーン攻撃の内容を推測し、疑似的に再現し、なぜすでにまとめていただいている対策が有効なのかを確認するために書いています。 推測の側面が強く、実際の攻撃内容とは似ても似つかない可能性が高いので、その点はご了承ください。 また…</summary>
    <category term="npm" />
    <category term="ShaiHulud" />
    <category term="postinstall" />
    <category term="Trufflehog" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/git-log-and-git-secret</id>
    <title>git-secretsでAWSキー流出を防ぐ方法</title>
    <link href="https://web.maronn-room.com/articles/git-log-and-git-secret" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに ちょっとした検証用で作ったファイルはgitignoreに書き忘れ、そのままgit管理されてしまうケースがあります。 通常は問題ないのですが、シークレットが記載されているファイルだとそうは行きません。 そこで今回はgit secretを用いて、AWSキーを間違えてプッシュ…</summary>
    <category term="Git" />
    <category term="AWS" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/how-to-use-about-jwt</id>
    <title>フロント⇔BFF⇔バックエンドでJWTはどこで使うのが良い？</title>
    <link href="https://web.maronn-room.com/articles/how-to-use-about-jwt" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに JWT（JSON Web Token）は以下の利点があり、広く使われています。 1. 軽量かつ効率的: JWT は Base64 でエンコードされ、コンパクトで軽量な形式を持っています。これにより、データを効率的に転送できます。 2. JWT から値を取り出せる: JW…</summary>
    <category term="JWT" />
    <category term="BFF" />
    <category term="Backend" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/jp-morgan-random-values</id>
    <title>JPモルガンが発表した論文の価値について</title>
    <link href="https://web.maronn-room.com/articles/jp-morgan-random-values" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>読む前の注意 私自身は量子コンピューターなどの完全な素人です。 今回話題にしている論文について一通り目は通しましたが、誤りや理解不足は相当あります。 なので、そういった前提でよんでください。 はじめに 先日JPモルガンが以下の論文をNatureに投稿しました。 025 08737…</summary>
    <category term="量子コンピューター" />
    <category term="Random" />
  </entry>
  <entry>
    <id>https://web.maronn-room.com/articles/mcp-authorization</id>
    <title>MCPのAuthorizationドキュメント読んで、実装して、Claudeから実行してみた</title>
    <link href="https://web.maronn-room.com/articles/mcp-authorization" />
    <updated>2026-09-06T15:02:27.066Z</updated>
    <summary>はじめに 昨今の生成AIの進歩は凄まじいものがあります。 そして、それを推進した要因の一つにMCPがあります。 今回はこのMCPにおいて、認可機能をドキュメントを見て、実装してみます。 完璧なものが提供はできていないかもしれないですが、この記事でMCPのAuthorization…</summary>
    <category term="MCP" />
    <category term="OAuth" />
    <category term="Auth0" />
  </entry>
</feed>
