TwoFactorAuthDirectory 1.0.2

.NET 6.0 .NET Standard 2.0 .NET Framework 4.5
dotnet add package TwoFactorAuthDirectory --version 1.0.2
NuGet\Install-Package TwoFactorAuthDirectory -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TwoFactorAuthDirectory" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TwoFactorAuthDirectory --version 1.0.2
#r "nuget: TwoFactorAuthDirectory, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TwoFactorAuthDirectory as a Cake Addin
#addin nuget:?package=TwoFactorAuthDirectory&version=1.0.2

// Install TwoFactorAuthDirectory as a Cake Tool
#tool nuget:?package=TwoFactorAuthDirectory&version=1.0.2

NuGet Releases NuGet Releases Issues GitHub Donate GitHub Sponsors

KeeOtp2 is a simple NuGet package to determine which website supports which type of 2fa. Therefore it uses the twofactorauth API, which is provided by GitHub user 2factorauth. (They also have a frontend application, which you can find here.)

Installation

This guide is for Visual Studio only

  • Right-click on your project in the Solution Explorer
  • Select Manage NuGet Packages
  • Click Browse and search for TwoFactorAuthDirectory
  • Select the one by tiuub and install it

Usage

Fetching websites from API

...

TwoFactorAuthClient client = new TwoFactorAuthClient();

// Setting a custom API url (optional)
client.ApiUrl = "https://twofactorauth.tiuub.de/frozen/2022-07-06/api/v3/all.json";

// Fetching websites from API asynchronously
List<Website> websites = client.FetchAsync().Result;

// Fetching websites from API synchronously
List<Website> websites = client.Fetch();

...

Sorting

...

TwoFactorAuthClient client = new TwoFactorAuthClient();
List<Website> websites = client.Fetch();

// Find all websites which include "Google" in their name
List<Website> websitesByName = websites.FindByName("Google", ignoreCase: true);

// Find all websites which have the exact domain "mail.google.com"
List<Website> websitesByDomain = websites.FindByDomain("mail.google.com");

// Find all websites which have parts of the given url in their url field or in their additional_domains/domain field
List<Website> websitesByUrl = websites.FindByUrl("https://log:mein@samsung.com/test-path?test-parameter:123");

// Find all websites which supports a specific type of tfa
List<Website> websitesByTfa = websites.FindByTfa(TfaTypes.Totp | TfaTypes.Sms);

// Find all websites which are subjected by specific keywords
List<Website> websitesByKeywords = websites.FindByKeywords(new List<String>() { "email", "security" });

// Find all websites which are subjected by specific regions
List<Website> websitesByRegions = websites.FindByRegions(new List<String>() { "us", "de" });

...

License

GitHub

Dependencies

Dependencie Source NuGet Author License
Newtonsoft.Json source NuGet newtonsoft MIT

Dependencies (TwoFactorAuthDirectoryTests)

Dependencie Source NuGet Author License
coverlet.collector source NuGet tonerdo MIT
Microsoft.NET.Test.Sdk source NuGet Microsoft MIT
MSTest.TestAdapter source NuGet Microsoft MIT
MSTest.TestFramework source NuGet Microsoft MIT
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 224 10/31/2022
1.0.1 242 9/26/2022
1.0.0 247 9/23/2022