All Projects → duo-labs → Webauthn.io

duo-labs / Webauthn.io

Licence: bsd-3-clause
The source code for webauthn.io, a demonstration of WebAuthn.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Webauthn.io

Nextjs Starter
A starter project for Next.js with authentication
Stars: ✭ 1,313 (+421.03%)
Mutual labels:  demo, authentication
Ngx Auth Firebaseui
Angular Material UI component for firebase authentication
Stars: ✭ 518 (+105.56%)
Mutual labels:  demo, authentication
Jwt Spring Security Demo
This is a demo for using JWT (JSON Web Token) with Spring Security and Spring Boot. I completely rewrote my first version. Now this solution is based on the code base from the JHipster Project. I tried to extract the minimal configuration and classes that are needed for JWT-Authentication and did some changes.
Stars: ✭ 2,843 (+1028.17%)
Mutual labels:  demo, authentication
Laravel Scaffold
The base for developing awesome projects
Stars: ✭ 142 (-43.65%)
Mutual labels:  demo, authentication
Baselibrary
🔥Android开发 常用基础公共库(mvp/mvvm/retrofit/rxjava/socket/ble/多语言) 直接下载或依赖即可使用
Stars: ✭ 243 (-3.57%)
Mutual labels:  demo
Datmusic
Search and download free music from VK.
Stars: ✭ 230 (-8.73%)
Mutual labels:  demo
Magento React Native
React Native mobile app for Magento 2.x
Stars: ✭ 229 (-9.13%)
Mutual labels:  demo
Digital Restaurant
DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
Stars: ✭ 222 (-11.9%)
Mutual labels:  demo
Authenticationviewcontroller
A simple to use, standard interface for authenticating to oauth 2.0 protected endpoints via SFSafariViewController.
Stars: ✭ 254 (+0.79%)
Mutual labels:  authentication
Yolo
😈Scripts or demo projects on iOS development or reverse engineering
Stars: ✭ 245 (-2.78%)
Mutual labels:  demo
Pg Promise Demo
👓 Advanced example of using pg-promise
Stars: ✭ 240 (-4.76%)
Mutual labels:  demo
Open model zoo
Pre-trained Deep Learning models and demos (high quality and extremely fast)
Stars: ✭ 2,925 (+1060.71%)
Mutual labels:  demo
Opendevops
CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台
Stars: ✭ 2,990 (+1086.51%)
Mutual labels:  demo
Hsweb Demo
2.x版本演示项目
Stars: ✭ 229 (-9.13%)
Mutual labels:  demo
Pokegold Spaceworld
Disassembly of the Pokémon Gold and Silver 1997 Space World demo
Stars: ✭ 246 (-2.38%)
Mutual labels:  demo
Terrain Builder
🏔 Procedural terrain using Three.js and perlin noise, Now Accelerated by your GPU!
Stars: ✭ 228 (-9.52%)
Mutual labels:  demo
Chain
链喵 CMDB 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 240 (-4.76%)
Mutual labels:  demo
P2p Graph
Real-time P2P network visualization with D3
Stars: ✭ 245 (-2.78%)
Mutual labels:  demo
Tinysynth
A drums looper made with React and the WebAudio API
Stars: ✭ 238 (-5.56%)
Mutual labels:  demo
React Native demo
react-native实现网易新闻和美团,实现大部分页面。使用最新的react-navigation等组件,同时支持安卓和iOS设备。
Stars: ✭ 237 (-5.95%)
Mutual labels:  demo

About

This is the source code for webauthn.io, a demonstration of the Web Authentication specification, or WebAuthn.

This server provides a simple reference implementation of how to add WebAuthn to an application using the duo-labs/webauthn Go library.

Installation

Using Docker

The easiest way to start a local instance of webauthn.io is to use the image on Docker Hub:

docker run --rm -p 9005:9005 duolabs/webauthn.io

To run a local instance of webauthn.io in a Docker container, start by building the container image:

docker build -t webauthn.io .

Then, run the container, exposing port 9005:

docker run --rm -p 9005:9005 webauthn.io

After the container launches, you can navigate to localhost:9005 to see the application.

Building from Source

To get started using a local instance of webauthn.io, first download the source code using:

go get github.com/duo-labs/webauthn.io

Then, edit config.json as needed.

Finally, build and run the application with go build; ./webauthn.io)

More Information

For more information on how WebAuthn works, we recommend checking out webauthn.guide.

License

BSD 3-Clause License

Copyright (c) 2019, Duo Labs
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
  contributors may be used to endorse or promote products derived from
  this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].