All Projects → huseyinsimsekk → AspNetCore-ReCAPTCHAv3

huseyinsimsekk / AspNetCore-ReCAPTCHAv3

Licence: other
reCAPTCHA v3 Usage in Asp.Net Core MVC

Programming Languages

C#
18002 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to AspNetCore-ReCAPTCHAv3

Elmahcore
ELMAH for Net.Standard and Net.Core
Stars: ✭ 127 (+647.06%)
Mutual labels:  mvc, aspnetcore, asp-net-core
XAF Security E4908
This repository contains examples for Role-based Access Control, Permission Management, and OData / Web / REST API Services for Entity Framework and XPO ORM
Stars: ✭ 47 (+176.47%)
Mutual labels:  mvc, aspnetcore, asp-net-core
Aspnetcorelocalization
Localization.SqlLocalizer & ASP.NET Core MVC Localization Examples
Stars: ✭ 183 (+976.47%)
Mutual labels:  mvc, aspnetcore, asp-net-core
Live.asp.net
Code for live.asp.net, which hosts the ASP.NET Community Stand-up
Stars: ✭ 295 (+1635.29%)
Mutual labels:  aspnetcore, asp, asp-net-core
MvcSimplePager
Simple,lightweight,easy to expand pager for asp.net mvc and asp.net core,针对asp.net mvc 和 asp.net core 设计的通用、扩展性良好的轻量级分页扩展
Stars: ✭ 13 (-23.53%)
Mutual labels:  mvc, aspnetcore, asp-net-core
Recaptcha.aspnetcore
Google reCAPTCHA v2/v3 for .NET Core 3.x
Stars: ✭ 122 (+617.65%)
Mutual labels:  recaptcha, aspnetcore, asp-net-core
react-recaptcha-x
a React reCAPTCHA version 3 and version 2 (checkbox) component in one.
Stars: ✭ 21 (+23.53%)
Mutual labels:  recaptcha, google-recaptcha, recaptcha-v3
PersianDataAnnotations
PersianDataAnnotations is ASP.NET Core MVC & ASP.NET MVC Custom Localization DataAnnotations (Localized MVC Errors) for Persian(Farsi) language - فارسی سازی خطاهای اعتبارسنجی توکار ام.وی.سی. و کور.ام.وی.سی. برای نمایش اعتبار سنجی سمت کلاینت
Stars: ✭ 38 (+123.53%)
Mutual labels:  mvc, aspnetcore, asp-net-core
.NET-Core-Learning-Journey
Some of the projects i made when starting to learn .NET Core
Stars: ✭ 37 (+117.65%)
Mutual labels:  mvc, asp, asp-net-core
AspNetCore.Unobtrusive.Ajax
Unobtrusive Ajax Helpers (like MVC5 Ajax.BeignForm and Ajax.ActionLink) for ASP.NET Core
Stars: ✭ 46 (+170.59%)
Mutual labels:  aspnetcore, asp-net-core, aspnetcoremvc
DNZ.MvcComponents
A set of useful UI-Components (HtmlHelper) for ASP.NET Core MVC based-on Popular JavaScript Plugins (Experimental project).
Stars: ✭ 25 (+47.06%)
Mutual labels:  aspnetcore, asp-net-core, aspnetcoremvc
AspNetCoreMvcAngular
ASP.NET Core MVC with angular in MVC View OpenID Connect Hybrid Flow
Stars: ✭ 54 (+217.65%)
Mutual labels:  mvc, aspnetcore, asp-net-core
DNTCommon.Web.Core
DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core 3.x applications.
Stars: ✭ 117 (+588.24%)
Mutual labels:  mvc, aspnetcore, asp
2captcha-php
PHP package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.
Stars: ✭ 25 (+47.06%)
Mutual labels:  recaptcha, recaptcha-v3
xperience-training-13
Kentico Xperience 13 training website
Stars: ✭ 18 (+5.88%)
Mutual labels:  mvc, asp-net-core
blazor-tailwindcss-template
This template demostrates the integration of tailwindcss with blazor and covers important features like hot-reload and css isolation
Stars: ✭ 38 (+123.53%)
Mutual labels:  aspnetcore, asp-net-core
AspNetCore.Mvc.FluentActions
Fluent Actions for ASP.NET Core MVC are abstractions of regular MVC actions that are converted into MVC actions during startup.
Stars: ✭ 17 (+0%)
Mutual labels:  aspnetcore, asp-net-core
Something-about-aspnetcore-book
The Something about ASP.NET Core Book is introduction to web programming and based on ASP.NET Core 2.2
Stars: ✭ 35 (+105.88%)
Mutual labels:  aspnetcore, asp-net-core
JqueryDataTablesServerSideDemo
Jquery DataTables with Asp.Net Core server side multi column sorting and searching Demo Project.
Stars: ✭ 43 (+152.94%)
Mutual labels:  aspnetcore, aspnetcoremvc
BlazorServerWithDocker
Companion code sample for my blog post - Containerising a Blazor Server App
Stars: ✭ 16 (-5.88%)
Mutual labels:  aspnetcore, asp-net-core

Google ReCAPTCHA V3 Usage In Asp.Net Core MVC

SS

How To Use

You can use this repository two ways:

  • You can clone or fork this repo and than you can change code what you want
  • You can look over code and than implement your code. Note that this is an example repository.

Explanation

  • First, record to google recaptcha with your google account. Register your site there and get your secret and site key.
  • Then edit GoogleRecaptcha configuration in applicationsettings.json. Also you can change Threshold value.
"GoogleRecaptcha": {
    "VefiyAPIAddress": "https://www.google.com/recaptcha/api/siteverify",
    "Sitekey": "YOUR-GOOGLE-SITEKEY-HERE",
    "Secretkey": "YOUR-GOOGLE-SECRETKEY-HERE"
  },
"RecaptchaThreshold": "0,5"
  • Then you can add your UserService.

I set 0.5 for this example. If get to you score is less than 0.5 from Google API, return error page. If score is greater that 0.5 and username-password pair is correct, you are login. Devto Post: Post

Contribute

Please feel free to send PR or issue if you think there is a wrong, mistake, or enhancement.

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].