ASP.NET MVC 4 Tutorial :: Mobile Authentication With ASP.NET MVC 4

ASP.NET MVC 4 Tutorial | In this article, I am going to show you how to build an ASP.NET MVC web app with Two-Factor Authentication using Google Authenticator for preventing brute force attack.

Two-Factor authentication is a great way to help secure user accounts as It authenticates users using two valid authentication factors.

Here in this article, we will first verify user from our database and then will provide an option to the user for verifying using real-time token (generated via Google Authenticator) (not SMS as it’s costly). As I have said, We will use Google Authenticator(it’s completely free of cost) So, The Google Authenticator software must be installed on the user’s smartphone.

ASP.NET MVC 4 Tutorial – Mobile Authentication With ASP.NET MVC 4

Step – 1: Create New Project.

Go to File > New > Project > ASP.NET  Web Application (under web) > Entry Application Name > Click OK > Select Empty template > Checked MVC (under “Add folders and core references for” option) > OK
hflmvc62

Step-2:  Add reference of Google.Authenticator from NuGet

Go to Solution Explorer > Right Click on References form Solution Explorer > Manage NuGetPackages… > Search for “Google.Authenticator”> Install > Close.

Step-3: Add a new ViewModel (class).

Here I have added a new class “LoginModel.cs” in our application.
I have added a folder named “ViewModel” first
Go to Solution Explorer > Right Click on Project Name > Add > New Folder > Rename.
and then added a class “LoginModel.cs” .
Go to Solution Explorer > Right Click on the folder (“ViewModel”)> Add > New Item… > Select class under code > Enter class name > Add.

Step-4: Create an MVC Controller.

Go to Solution Explorer > Right Click on Controllers folder form Solution Explorer > Add > Controller > Enter Controller name > Select Templete “empty MVC Controller”> Add.

Here I have created a controller named “HomeController”

Step-5: Add a new action for login to your controller.

Here I have added “Login” Action to “Home” Controller. Please write this following code

You can see here, I have declared a private variable “key”, which we will use later for generate Google authenticator code.

HomeController.cs

Step-6: Add view for that login action and design.

Right Click on Action Method (here right click on Index action) > Add View… > Enter View Name > Select “Empty” under Template dropdown  > Select the “LoginModel” (created at previous step) under Model class dropdown > Add.
HTML Code

Step-7: Add an another action (POST method) for verify user credential from database.

Here in this action, we will first verify user provided credential from our database and then if the user is valid, we will generate 2-factor authentication setup code (barcode and manual entry key) for use in Google Authenticator mobile app for setup account.

Step-8: Add an another action for authorized users (here “MyProfile”), where authorized user will be redirected to after successful login.

Step-9: Add view for the action (here view for “MyProfile” action).

Step-10: Add an action for verifying 2 factory authentication token.

Here we will verify the authentication token generated by Google Authenticator mobile application and then the user will be redirected to the authorized area of the application (here in “My Profile” page).

Step-11: Set Login page as a default start up page.

Go to App_Start from solution explorer > RouteConfig.cs > Edit MapRoute > set “Login” action as default action instead of “Index” action.

Step-12: Run Application.

After provide valid username and password, you will be asked for provide 6 digit code (google authenticator code).

You can install Google Authenticator mobile app from here for android mobile and for windows phone, go to this link.

Open your Google Authenticator mobile app > Go to option > setup account > Scan a barcode / Enter key provided > Scan the barcode (from webpage) / manually enter manual setup code (from webpage) then you will get 6 digit code on your mobile app > enter this 6 digit code in the textbox (login page of web application) > and click on verify button.

 

HostForLIFE.eu ASP.NET MVC 4 Hosting
HostForLIFE.eu revolutionized hosting with Plesk Control Panel, a Web-based interface that provides customers with 24×7 access to their server and site configuration tools. Plesk completes requests in seconds. It is included free with each hosting account. Renowned for its comprehensive functionality – beyond other hosting control panels – and ease of use, Plesk Control Panel is available only to HostForLIFE’s customers. They offer a highly redundant, carrier-class architecture, designed around the needs of shared hosting customers.