Skip to main content

Why password security is the weakest among other security measures?




We have all been using passwords to access out personal accounts for various websites, but it's common that most of the people use the same password for every online account as it seems hard for people to remember 10-15 passwords for various different websites which they use every single day.

So here comes the other login methods such as Fingerprint, IRIS scanner and RF cards to validate your accounts and many companies these days are even having 2-factor authentications such as sending messages to phones to authenticate which again is not a very secure practice as many spoofing techniques can be implemented to by get access to the messages and google recently released 2-factor authentication that sends a notification as well as a unique number to select for authentication which could be a much better alternative when majority of the people are using android phones, but out of all these fingerprints, IRIS, and RF cards(MFA) are the most secure ways to protect any security attacks only when the data or process of storing and authenticating is done on the user's machine/system as they are unique and one exposed out it will be near to impossible for modifying them as they are the only ways in which the user can be uniquely identified whereas we can change the passwords to whatever we want to at any point of time.

Whereas passwords are the easiest to crack as they can be brute-forced and when you use the same or maybe similar password for many accounts you are potentially giving access to every damn thing about you on the internet.

All the major companies have collaborated and came up with a standard way to approach and solve this problem using Fido alliance(Read more about this at the link)

Here is a list of Leading organizations around the world have deployed FIDO


It's said that on an average an employee of a company calls the service desk team 6 times in a year and it takes around 50$ to employ an average help desk to service those issues which are a huge deal when multinational companies burn millions of dollars just to serve passwords new passwords. So even companies are looking at alternative ways to solve their issues in a much more effective way to implement other security features that don't compromise the systems and are much better than traditional passwords.

It's estimated that an average security breach costs a company around 8 Million dollars to cover up the setup and reframe to its normal state back again.

So it's always advisable to use a long password(for sure more than 8 characters) which is simple to remember rather than using a short password with all the special characters which itself is hard to remember.

Stay secure ♥️ as the internet is not always the safest place to be in.

Comments

Popular posts from this blog

Reasons not to buy Akaso action camera if you are from india

Recently I made a full review of the action camera I brought after doing a ton of research and time. Having used it for a couple of months I feel extremely glad that it meets up to my expectations. But recently, I accidentally tipped off the camera without an external case and it cracked my lens. This, in turn, added a shady spot on my phone or video and I cannot use that anymore (Some phones of the cracked lens below)     I immediately mailed the akaso team to ask if there is anything they could do but unfortunately, this was their response. Oops, that was not what I was expecting and then I asked them I could get any details of the replacement parts or anything like that so that I can order it online. But that didn't happen it took a lot of time for them to respond me back(I have been bugging them on Facebook and email).  But after some time they left me with this response which I had no other choice but to accept. After getting the 50%re...

Facebook Whitehat

Have you ever wondered that Facebook provides you some test accounts in case if you are trying to find some bugs are attempting to attacks on some personal accounts. So its quiet interesting, lets take a look at them now just login to your Facebook account.. and then go to this link.. Facebook whitehat Then you may find out 4 sections in the page 1-Info            This basically provides you all the security related issues for Facebook and even provides you the opportunity to report the posts that are against the terms and conditions and violating the security issues.. Here are some links that might be important.. In case of any hacked accounts :  Hacking reports Abuse reports :  Report abuse 2-Thanks                The names are those who reported Facebook some bugs and helped Facebook for making their security issues more strong 3-Report a Security vulnerability     ...

Extjs - basics on file-system

Hope you created your first project with command prompt and knew some basics of where the application starts loading files and makes up the complete interface and functionalities. if not I recommend you to start from the initial step and come back here. So when you start your project on a desktop it will check for the main file in the classic folder and shows it to the user.   classic > src > view > main > Main.js Now let's start with this Main.js file and understand better about the project. This main file basically has some extended components  Ext.tab.Panel which extends the main page view to have a tab panel view in it. requires has all the other components that are being used in this page as components. Header of the side tab has all the properties such as layout that defines what should be the layout for the header which is aligned to stretchmax, and the title which is being binded which a data feild named name where the name is from ...