reCAPTCHA.AspNetCore 2.2.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package reCAPTCHA.AspNetCore --version 2.2.3
NuGet\Install-Package reCAPTCHA.AspNetCore -Version 2.2.3
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="reCAPTCHA.AspNetCore" Version="2.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add reCAPTCHA.AspNetCore --version 2.2.3
#r "nuget: reCAPTCHA.AspNetCore, 2.2.3"
#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 reCAPTCHA.AspNetCore as a Cake Addin
#addin nuget:?package=reCAPTCHA.AspNetCore&version=2.2.3

// Install reCAPTCHA.AspNetCore as a Cake Tool
#tool nuget:?package=reCAPTCHA.AspNetCore&version=2.2.3

reCAPTCHA.AspNetCore

License: MIT nuget

Google reCAPTCHA v2/v3 for .NET Standard 2.0, ASP.NET Core 2, and .NET Framework.

Install

From the a command prompt

dotnet add package reCAPTCHA.AspNetCore
Install-Package reCAPTCHA.AspNetCore

You can also search for package via your nuget ui / website:

https://www.nuget.org/packages/reCAPTCHA.AspNetCore/

Requirements

You must first have a secret key and a site key in order to use the reCAPTCHA service. This package supports v2 and v3 api keys. You can read more about reCAPTCHA v2, and v3 as well as sign up for free here: https://www.google.com/recaptcha/intro/

Configure

Choose how you want to configure the storage of your RecaptchaSettings. This contains your site key, and site secret so it's recommended to use secrets.json with Azure Key Vault (or similar setup). However you can also just add the section to your appconfig.json file.

Versions

appconfig.json

Add the follow entry to the file make sure to paste in your secret key and site key followed by setting the correct version to v2 or v3 depending on your key type:

"RecaptchaSettings": {
    "SecretKey": "paste secret key here",
    "SiteKey": "paste site key here",
    "Version": "v2"
  } 
secrets.json

Right click on your project file and goto Manage Secrets.

This will open secrets.json. Add the follow entry to the file make sure to paste in your secret key and site key followed by setting the correct version to v2 or v3 depending on your key type:

"RecaptchaSettings": {
    "SecretKey": "paste secret key here",
    "SiteKey": "paste site key here",
    "Version": "v2"
  } 

Note: This will also require you to have a setup such as Azure Key Vault (or similar setup) when running in production.

Examples

Open Startup.cs and add the following code as shown below to your ConfigureServices method:

services.Configure<RecaptchaSettings>(Configuration.GetSection("RecaptchaSettings"));
services.AddTransient<IRecaptchaService, RecaptchaService>();

Usage

In order to prevent having to copy and paste your site key all over your view files (a nightmare to update later). You can inject your settings from the Startup method by adding the following code to top of your view file:

@inject IOptions<RecaptchaSettings> RecaptchaSettings

You can then freely include the Recaptcha script inside of forms you wish to vaidate later in your controller (supports multiple forms).

@using (Html.BeginForm("SomeMethod", "SomeController")) {
  @Html.Recaptcha(RecaptchaSettings.Value)
}

You may find that you need to add a reference to Microsoft.Extensions.Options before you can use IOptions.

@using Microsoft.Extensions.Options
@using reCAPTCHA.AspNetCore

You can see a tested example of usage in the Contact.cshtml view. However you will need to configure it with your key information before running yourself. You should also take note of the allowed domains security policy in the Google Recaptcha docs.

Validation

In order to validate a recaptcha script being used in a form you will first need to inject the IRecaptchaService class into your controller using the code below:

private IRecaptchaService _recaptcha;

public SomeController(IRecaptchaService recaptcha)
{
  _recaptcha = recaptcha;
}

You can validate the recaptcha attempts using the Validate method in the Recaptcha service in your HttpPost method:

[HttpPost]
public async Task<IActionResult> SomeMethod(SomeModel model)
{
  var recaptcha = await _recaptcha.Validate(Request);
    if (!recaptcha.success)
        ModelState.AddModelError("", "There was an error validating recatpcha. Please try again!");

  return View(model);
}

WebApi users who do not have access to the original HttpRequest that created the recaptcha response can use the following method to validate response codes.

[HttpPost]
public async Task<IActionResult> SomeMethod(SomeModel model)
{
  var recaptcha = await _recaptcha.Validate(model.ResponseCode);
    if (!recaptcha.success)
        ModelState.AddModelError("", "There was an error validating recatpcha. Please try again!");

  return Json(model);
}

Warning: This method DOES NOT check for anti-forgery like validating with HttpRequest does.

You can see a tested example of usage in the HomeController.cs controller. However you will need to configure it with your key information before running yourself. You should also take note of the allowed domains security policy in the Google Recaptcha docs.

Recaptcha.net

Users who suffer from censorship concerns can now bypass the libraries default of www.google.com to www.recaptcha.net using the following static variable in the RecaptchaService class. You can best set this static during the ConfigureService method.

RecapthaService.UseRecapchaNet = true; // Default is false
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on reCAPTCHA.AspNetCore:

Package Downloads
FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on reCAPTCHA.AspNetCore:

Repository Stars
poppastring/dasblog-core
The original DasBlog reimagined with ASP.NET Core
Version Downloads Last updated
3.0.10 912,001 8/26/2020
3.0.9 698 8/25/2020
3.0.8 1,484 8/22/2020
3.0.7 3,377 8/12/2020
3.0.6 13,807 7/10/2020
3.0.5 2,553 6/25/2020
3.0.4 9,454 6/24/2020
3.0.3 17,462 5/8/2020
3.0.2 3,932 5/4/2020
3.0.1 832 5/4/2020
3.0.0 1,030 5/3/2020
2.2.5 24,901 5/2/2020
2.2.3 162,501 4/15/2019
2.2.2 3,586 4/11/2019
2.2.1 1,040 4/9/2019
2.2.0 1,834 4/8/2019
2.1.3 33,436 1/12/2019
2.1.2 1,421 1/4/2019
2.1.1 2,533 11/24/2018
2.1.0 1,986 10/13/2018
2.0.0 1,346 9/20/2018
1.0.1 4,265 11/5/2017
1.0.0 1,300 11/1/2017