Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
How to Integrate Firebase User Authentication in Android App 11 Easy Steps
Firebase is a google's mobile platform that helps us to develop high-quality apps in minimum effort. Firebase provides Authentication library to authenticate users, you don't need to save user data on your local server because firebase sa...
Use ZAP Tools for Authentication, Session & User Management to Find Security Vulnerabilities
ZAP Tool is a security tool which is an easy-to-use integrated penetration testing tool for finding vulnerabilities in web applications/Web apps.
ZAP provides automated scanners as well as a set of tools that allow you to find security vulnera...
How to Integrating Biometric (Touch Id) Authentication in iOS Application?
iOS 8 SDK by Apple provides Local Authentication API that allows developers to integrate Touch Id authentication in applications.
To integrate Touch Id authentication follow the below steps:
Import Local Authentication framework in your ...
Introduction to JWT
With API becoming so popular these days thanks to SPA base applications, it was also required to keep these APIs secure. So the most popular of securing api's is token based authentication, whose flow is little bit like this:
1. In the b...
Authentication vs Authorization in ASP.NET
Authentication
Authentication is the process to verify user identity by using user credentials. It is a process that checks whether the user is valid or not also this process permits authenticated user to access the resource. A resource can be a...
Connecting SharePoint site using CSOM
This code packet will help you to authenticate to O365 using Client Side Object Model(CSOM). It uses the SharePointOnlineCredentials class to get clientContext of SharePoint. Let try it yourself.
// Namespaces
using System;
u...
AuthComponent and hashing password in cakePHP
Identifying and authentication of a user is very common and useful part of every web appilication, In CakePHP AuthComponent provides a way to secure user's password in encrypt manner and allow user to authenticate objects as well. It is a pro...
How to create user authentication plugin in joomla
Authentication plugin provides facility for user to authenticate the user from any source such as database. As all the plugins in Joomla are inherited by jPlugin class so we can create our own custom plugin which will inherit from base class for ...
Using Gmail credentials to send mail in .Net application
Lets consider a task on hand , we need to add a contact us form which takes in few inputs from the user and on submission mails the details to the administrator. The requirement says that the mail should be sent using Gmail SMTP client. The solut...
Spring security 3: database authentication with hibernate
For authenticating the user via spring security we need to make our own custom authentication-provider. We can make our custom UserDetailService easily, here is the sample custom code
MyUserDetailsService.java
package com.users.serv...
Securing Authentication
What is an Authentication
Authentication define as the process of verifying a person or any entity. The authentication is a process which compared the file in database to authorized the user information from their local OS. Only then User Pass...