並び順

ブックマーク数

期間指定

  • から
  • まで

161 - 200 件 / 681件

新着順 人気順

authenticationの検索結果161 - 200 件 / 681件

  • How To Build A Vue Survey App Using Firebase Authentication And Database — Smashing Magazine

    This tutorial would take you on a step by step guide to build a functional survey app using Vue.js and Firebase. From validating the user’s data through Vuelidate, to authentication, storing the user’s data, route protection and sending data to Firebase servers. All the steps used in the tutorial are practical, and can be reproduced in any real-life project, even with a custom backend. In this tut

      How To Build A Vue Survey App Using Firebase Authentication And Database — Smashing Magazine
    • PerlでつくるフルスクラッチWebAuthn/パスキー認証 / Demonstration of full-scratch WebAuthn/Passkey Authentication written in Perl

      YAPC::Hiroshima 2024

        PerlでつくるフルスクラッチWebAuthn/パスキー認証 / Demonstration of full-scratch WebAuthn/Passkey Authentication written in Perl
      • [iOS] Firebase AuthenticationでSign in with Apple - Qiita

        こんにちは、株式会社実験のエンジニアのmogamingです。 今朝、firebase-ios-sdkにSign in with Apple対応がマージされてリリースされました🎉🎉🎉中の方々本当にありがとうございます。感謝しかない! ちょうど新しいアプリでSNSログインが必要で、FirebaseのSDKに対応が入るのを待ちつつ別の機能を作ってました。せっかくリリースされたので早速対応してみたので、やったことを書きます。iOSアプリでの対応の話しかしません。 参考リンク 基本的にはドキュメントを読めばなんとかなります。読みましょう。 Authenticate Using Apple on iOS FirebaseのExample Sign in with Apple(Apple公式) 手順 Capabilityの設定 Certificates, Identifiers & Profile

          [iOS] Firebase AuthenticationでSign in with Apple - Qiita
        • React authentication, simplified

          Authentication is one of those things that just always seems to take a lot more effort than we want it to. To set up auth, you have to re-research topics you haven’t thought about since the last time you did authentication, and the fast-paced nature of the space means things have often changed in the meantime. New threats, new options, and new updates may have kept you guessing and digging through

            React authentication, simplified
          • Edge Authentication and Token-Agnostic Identity Propagation

            by AIM Team Members Karen Casella, Travis Nelson, Sunny Singh; with prior art and contributions by Justin Ryan, Satyajit Thadeshwar As most developers can attest, dealing with security protocols and identity tokens, as well as user and device authentication, can be challenging. Imagine having multiple protocols, multiple tokens, 200M+ users, and thousands of device types, and the problem can explo

              Edge Authentication and Token-Agnostic Identity Propagation
            • </> htmx ~ Examples ~ Async Authentication

              This example shows how to implement an an async auth token flow for htmx. The technique we will use here will take advantage of the fact that you can delay requests using the htmx:confirm event. We first have a button that should not issue a request until an auth token has been retrieved: <button hx-post="/example" hx-target="next output"> An htmx-Powered button </button> <output> -- </output> Nex

              • React JWT Authentication (without Redux) example - BezKoder

                In this tutorial, we’re gonna build a React.js JWT Authentication: Login and Registration example with LocalStorage, React Router, Axios and Bootstrap (without Redux). I will show you: JWT Authentication Flow for User Signup & User Login Project Structure for React JWT Authentication (without Redux) with LocalStorage, React Router & Axios Creating React Components with Form Validation React Compon

                  React JWT Authentication (without Redux) example - BezKoder
                • Firebase Authenticationで新規登録を禁止する - Qiita

                  TL;DR : Google Identify Platformから切れる Firebase authのバックエンドにはGoogle Identify Platformを使ってるらしく、こいつから切れる。 プロジェクトもFirebaseのものを不可逆な形でGIPにマイグレーションしてくれる上、トークンやAPIしよライブラリなどもそのまま使えてできることが広くなる. 最初Google Identify Platform自体知らなかったのでFirestoreのルールを組み合わせたり、登録時にEventが発火するのを使用してアカウントを操作したりなど、先人たちのいろいろな方法が出たけど、この方法なら不要なドキュメントを作ったりCLIからのユーザー作成とか気にしないで作れたので確実だし安全だし何より楽だった。 スクショに書いてある通り、Firebase Admin SDKからの登録は通るので注意。

                    Firebase Authenticationで新規登録を禁止する - Qiita
                  • Non-interactive SSH password authentication

                    SSH offers several forms of authentication, such as passwords and public keys. The latter are considered more secure. However, password authentication remains prevalent, particularly with network equipments.1 A classic solution to avoid typing a password for each connection is sshpass, or its more correct variant passh. Here is a wrapper for Zsh, getting the password from pass, a simple password m

                    • DMARC Check Tool - Domain Message Authentication Reporting & Conformance Lookup - MxToolBox

                      ABOUT DMARC RECORD CHECK The DMARC Record Lookup / DMARC Check is a diagnostic tool that will parse the DMARC Record for the queried domain name, display the DMARC Record, and run a series of diagnostic checks against the record. Domain-based Message Authentication, Reporting, and Conformance (DMARC) is a mechanism for policy distribution by which an organization that is the originator of an email

                        DMARC Check Tool - Domain Message Authentication Reporting & Conformance Lookup - MxToolBox
                      • Amazon RDS for MySQL Supports Authentication with Microsoft Active Directory

                        Microsoft Active Directory authentication provides the benefits of single sign-on and centralized authentication of MySQL users. Keeping all user credentials in the same Active Directory will save you time and effort as you have a centralized location for storing and managing them for multiple DB instances. You can enable database users to authenticate against Amazon RDS for MySQL using either the

                          Amazon RDS for MySQL Supports Authentication with Microsoft Active Directory
                        • Next.js: Using HTTP-Only Cookies for Secure Authentication (2023)

                          The example code for this post has been updated to use Next.js 13 and getServerSideProps instead of getInitialProps. Most modern REST and GraphQL APIs expect an authentication token as an HTTP header in order to identify the currently logged-in user. That means the frontend application needs to store the user's auth token somewhere. The Problem with localStorage and Normal Cookies Many SPAs and Ne

                            Next.js: Using HTTP-Only Cookies for Secure Authentication (2023)
                          • RustとFirebase Authenticationでユーザー認証を導入

                            RustとFirebase Authenticationでユーザー認証を導入2020.08.23-2020.08.26 Rust で書かれた web API サーバーに Firebase Authentication を導入する機会があったので、導入手順の備忘録をまとめます。 ユーザー認証が手軽に導入できる Firebase Authentication には公式から提供されている SDK が存在しますが、残念ながら 2020 年 8 月現在ではサポート対象言語に Rust は含まれていません。そこで JWT ライブラリを使って認証トークンの生成・検証を行い、API サーバーに認証機能を導入します。 カスタム認証システムFirebase Authentication には、Instagram や Spotify などの外部サービスから提供される認証を使ったカスタム認証システムがあります。今

                              RustとFirebase Authenticationでユーザー認証を導入
                            • iOS12 Authentication Services framework について | ギャップロ

                              アップルの開発者向けイベント WWDC2019 が6月3日(現地時間)に開催され、iOS13や、予ねてより噂されていたダークモードなど目につく発表が多かったように思います。 今回は、 WWDC2019の話に行く前に、去年の WWDC2018で発表された AuthenticationServices をついて改めて調べてみました。 iOS12が去年9月にリリースされて、1Password などのサードパーティー製管理アプリのオートフィルを実装しているアプリもよく見かけるようになりました。まずは、しっかり復習して新しい技術をキャッチアップして行きたいと思います。 TL;DR できる事 パスワードのオートフィル機能(Password AutoFill) サードパーティー製管理アプリもサポート。起動しないで自動入力可能 強力なパスワード自動生成(Automatic Strong Passwords

                                iOS12 Authentication Services framework について | ギャップロ
                              • How To Implement Authentication In Next.js With Auth0 — Smashing Magazine

                                At the moment of adding authentication and authorization to our web applications, there are some things that we should evaluate, e.g. whether we need to create our own security platform or whether we can rely on an existing third-party service. Let’s see how we can implement authentication and authorization in Next.js apps, with Auth0. “Authentication” is the action of validating that a user is wh

                                  How To Implement Authentication In Next.js With Auth0 — Smashing Magazine
                                • CISA Releases Guidance on Phishing-Resistant and Numbers Matching Multifactor Authentication  | CISA

                                  Official websites use .gov A .gov website belongs to an official government organization in the United States. Secure .gov websites use HTTPS A lock (A locked padlock) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

                                  • Server-side Authentication with GraphQL & Ruby Tutorial

                                    Creating Users So far you’ve been working only with the Link type, but it’s time to include User as well so that the app can show who posted a link and who voted on it. You’ll need some registered users for this, so start by implementing the mutation for creating them.

                                      Server-side Authentication with GraphQL & Ruby Tutorial
                                    • FortiOS, FortiProxy, and FortiSwitchManager Authentication Bypass Technical Deep Dive (CVE-2022-40684) – Horizon3.ai

                                      Master cloud security with NodeZero™ Cloud Pentesting. Easily uncover vulnerabilities across AWS and Azure, prioritize identity risks, and secure your environment in just minutes. Stay ahead of threats. In the evolving landscape of cloud and hybrid environments, robust security measures are more critical than ever. In this webinar Brad Hong, CISSP, explores autonomous pentesting methodologies and

                                        FortiOS, FortiProxy, and FortiSwitchManager Authentication Bypass Technical Deep Dive (CVE-2022-40684) – Horizon3.ai
                                      • Create Authentication Login and Registration in CodeIgniter 4

                                        As a web developer, you understand that implementing secure and efficient authentication is essential for protecting user data and enabling personalized experiences on your applications. This feature is integral to modern web development, as it supports the security and privacy of user accounts. In this tutorial, we’ll walk you through setting up a registration system and a login system using the

                                          Create Authentication Login and Registration in CodeIgniter 4
                                        • AWS Client VPN SAML authentication with Google G-Suite – Vallard's Blog

                                          Note: Video for this Blog Post is Here. When dealing with cloud resources the two opposing needs are security and accessibility. When we often deploy resources in a private network inside of an AWS VPC that are not accessible directly from the outside. To access these resources, we can use a bastion server or VPN. The bastion server is a server that is accessible on the public network but also has

                                          • DockertestとLocalStackを使って 外部サービスに依存した多要素認証の 動作確認・テストをした話 / A story about using Dockertest and LocalStack to check and test the operation of multi-factor authentication that depends on external services

                                            2024/06/08: Go Conference 2024 https://gocon.jp/2024/ DockertestとLocalStackを使って 外部サービスに依存した多要素認証の 動作確認・テストをした話 西田 智朗 ソフトウェアエンジニア

                                              DockertestとLocalStackを使って 外部サービスに依存した多要素認証の 動作確認・テストをした話 / A story about using Dockertest and LocalStack to check and test the operation of multi-factor authentication that depends on external services
                                            • Automatic token authentication - GitHub Docs

                                              GitHub provides a token that you can use to authenticate on behalf of GitHub Actions. About the GITHUB_TOKEN secret At the start of each workflow job, GitHub automatically creates a unique GITHUB_TOKEN secret to use in your workflow. You can use the GITHUB_TOKEN to authenticate in the workflow job. When you enable GitHub Actions, GitHub installs a GitHub App on your repository. The GITHUB_TOKEN se

                                                Automatic token authentication - GitHub Docs
                                              • Modern Authentication Methods now needed to continue syncing Outlook Email in non-Microsoft email apps - Microsoft Support

                                                Last Updated: June 10, 2024 Issue For many years, applications have used Basic Authentication to connect to servers, services, and API endpoints. Basic Authentication simply means the application sends a username and password with every request, and those credentials are also often stored or saved on the user’s device. Traditionally, Basic Authentication is enabled by default on most servers or se

                                                • Firebase AuthenticationをEmulatorで動かす

                                                  概要 すでにたくさん記事があるから書く必要はないが... 最近やったことをすぐに忘れちゃうおじさんなので 後で振り返るように全部書き出しておく! 直近の案件では認証にFirebase Authenticationを使ってたけど ローカル環境でも実際のサービスにアクセスして認証行っててもったいない感が強かったので ローカル開発用のdocker-compose環境にemulatorを導入してみた Firebase Authentiationのservice作成 docker-composeの書きっぷり こんな感じ。firebase serviceの方みてくだされ version: '3.8' services: nextjs: build: context: ./frontend dockerfile: ./docker/Dockerfile container_name: frontend

                                                    Firebase AuthenticationをEmulatorで動かす
                                                  • React: Performing Authentication with JWT

                                                    JSON Web Tokens (JWT) have become a popular method for implementing authentication in web applications due to their simplicity and ease of use. This article will discuss how to perform JWT authentication in a React app. We will cover the steps involved in setting up a backend JWT authentication endpoint, signing up and signing in from your React app, and protecting routes with JWT validation, so y

                                                      React: Performing Authentication with JWT
                                                    • The Complete Guide to Next.js Authentication

                                                      Cover image by Kai Pilger In this guide you will learn how to implement authentication in a Next.js app. I will cover client authentication, authenticated server-rendered pages, authenticated API routes, protected routes, and redirects. The authentication service will be implemented with AWS Amplify, but the ideas and strategies covered here will work for any authentication service like Auth0 / Ok

                                                        The Complete Guide to Next.js Authentication
                                                      • Introducing OIDC identity provider authentication for Amazon EKS | Amazon Web Services

                                                        Containers Introducing OIDC identity provider authentication for Amazon EKS Today, we introduced user authentication for Amazon EKS clusters from an OpenID Connect (OIDC) Identity Provider (IDP). This feature allows customers to integrate an OIDC identity provider with a new or existing Amazon EKS cluster running Kubernetes version 1.16 or later. The OIDC IDP can be used as an alternative to, or a

                                                          Introducing OIDC identity provider authentication for Amazon EKS | Amazon Web Services
                                                        • GitHub - ysugimoto/cloudflare-workers-github-auth: Edge-side GitHub authentication

                                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                            GitHub - ysugimoto/cloudflare-workers-github-auth: Edge-side GitHub authentication
                                                          • RFC 8705: OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens

                                                            RFC 8705 OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens Abstract This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates. OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either

                                                              RFC 8705: OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens
                                                            • Firebase Authentication for ruby - Qiita

                                                              概要 Java や Node などは Firebase Admin SDK を使用することで、Firebase Authentication の操作をサーバーサイドで行うことが出来ますが、ruby には gem が用意されていません。 そのため、google-apis のライブラリを利用する必要があります。 その使い方のメモです。 利用可能なAPI github のレポジトリ の generated/google-apis-identitytoolkit_v3 にライブラリのソースコードが配置してあります。(v3 部分が変わっているかもしれません) https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-identitytoolkit_v3 lib/google/apis/

                                                                Firebase Authentication for ruby - Qiita
                                                              • React Native: Authentication with WebView

                                                                A more interactive tutorial: https://getleaf.app/dsps301/reactnativeau-pvopbxhp You have a web application with all your features built out and now it is time to build your mobile app. You find yourself writing out the same business logic over again and think, "hmm maybe there is a quicker way to initially implement features, to iterate faster?" Good news, you can! 🎉 Using the power of web views,

                                                                  React Native: Authentication with WebView
                                                                • React User Authentication - JWT Token Authentication

                                                                  React User Authentication - JWT Token Authentication This article explains how to enhance any React template with JWT (Json WEB Tokens) authentication using a simple Node JS API Backend - Free samples included. React User Authentication - Free Sample (Soft Dashboard) This article explains how to add User Authentication to React using JSON Web Tokens (JWT). We will start using an open-source templa

                                                                    React User Authentication - JWT Token Authentication
                                                                  • A new era of authentication

                                                                    Auth for modern applications. Powerful user authentication that integrates in minutes. Free up to 10,500 MAU.

                                                                      A new era of authentication
                                                                    • User Authentication With AWS Cognito: The Good, The Bad And The Ugly - Zeile7

                                                                      User Authentication With AWS Cognito: The Good, The Bad And The Ugly There are only a few things in software engineering I love and hate at the same time – most of the time it’s quite obvious and going strongly in one direction. PHP will always be a bad language to use for anything. For me AWS Cognito is special and one of those rare cases where I love and hate something at the same time. It’s ver

                                                                        User Authentication With AWS Cognito: The Good, The Bad And The Ugly - Zeile7
                                                                      • GitHubアクセス時に「remote: Support for password authentication was removed on August 13, 2021.」のエラーが出てログインできない - Qiita

                                                                        GitHubアクセス時に「remote: Support for password authentication was removed on August 13, 2021.」のエラーが出てログインできないGitGitHub 背景 ようやく重い腰を上げてGitHubアカウントを作り、vscodeから初git pushをしたところ下記のエラーが発生して15分ほど詰まってしまいました remote: Support for password authentication was removed on August 13, 2021. 結論 2021年8月13日以降、GitHubリポジトリにアクセスするには、ユーザ名とパスワードではなくアクセストークンが必要になった。 手順 GitHubにログイン 右上の自分のアイコンをクリック 「Settings」をクリック 左メニュー下部の「Develop

                                                                          GitHubアクセス時に「remote: Support for password authentication was removed on August 13, 2021.」のエラーが出てログインできない - Qiita
                                                                        • AWS Single Sign-On adds Web Authentication (WebAuthn) support for user authentication with security keys and built-in biometric authenticators

                                                                          AWS Single Sign-On (SSO) now enables you to secure user access to AWS accounts and business applications using multi-factor authentication (MFA) with FIDO-enabled security keys, such as YubiKey, and built-in biometric authenticators, such as Touch ID on Apple MacBooks and facial recognition on PCs. With this release, AWS SSO now supports the Web Authentication (WebAuthn) specification to provide s

                                                                            AWS Single Sign-On adds Web Authentication (WebAuthn) support for user authentication with security keys and built-in biometric authenticators
                                                                          • Fastest Symfony authentication - AWS Cognito integration

                                                                            If you either love AWS services already, or are looking for a good option to use with your multiplatform products, AWS Cognito seems to be a good candidate to adopt into your technical stack. For me it was unknown, but once I started digging into it, I find it to solve some problems I was bored with solving. Setup Cognito on AWS For starters, we should prepare our Cognito user pool. We can do this

                                                                              Fastest Symfony authentication - AWS Cognito integration
                                                                            • oss-security - Mozilla VPN: CVE-2023-4104: Privileged vpndaemon on Linux wrongly and incompletely implements Polkit authentication

                                                                              Follow @Openwall on Twitter for new release announcements and other news [<prev] [next>] [day] [month] [year] [list] Date: Thu, 3 Aug 2023 12:08:05 +0200 From: Matthias Gerstner <mgerstner@...e.de> To: oss-security@...ts.openwall.com Subject: Mozilla VPN: CVE-2023-4104: Privileged vpndaemon on Linux wrongly and incompletely implements Polkit authentication Hello list, an openSUSE community package

                                                                              • Mastering Rodauth for Ruby/Rails Authentication - JetRockets

                                                                                This article doesn't aim to provide a step-by-step guide on how to integrate Rodauth into your Rails application, as there are already plenty of guides that cover that topic. Instead, I will explore the intricate nature of authentication and explain why Rodauth provides an effective solution. By delving deeper into the complexities of authentication processes, we can gain a better understanding of

                                                                                  Mastering Rodauth for Ruby/Rails Authentication - JetRockets
                                                                                • Firebase Authentication を使って API Gateway の認証を行う

                                                                                  サーバーレスワークロード向けのフルマネージドな API ゲートウェイサービス “API Gateway” がベータ版としてリリースされました。API Gateway では Firebase Authentication を使ったユーザー認証をサポートしていますので、本記事ではその手順をご紹介したいと思います。 Firebase Authentication & API Gatewayはじめに本記事は Google Cloud Japan Customer Engineer Advent Calendar 2020 の 23 日目の記事です。 API Gateway は Google Cloud Next ’20 OnAir で発表された、フルマネージド API ゲートウェイサービスです。主にサーバーレスワークロード向けのサービスとして、Cloud Run や Cloud Functions

                                                                                    Firebase Authentication を使って API Gateway の認証を行う