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

Best and free NTFS tool for mac

Early recently I had my internal memory of my mac stocked up and I had to rely on storing my excess data onto my external hard disk which most have to do as we do not have an option otherwise to increase the internal storage of the machine itself. I pulled up my external hard disk and boom to my wonder it doesn't have the write permissions as it's of `NTFS` format. So after a quick search, it was evident that there are a lot of software that can mount my NTFS drive namely Microsoft NTFS for Mac by Paragon Software Microsoft NTFS for Mac by Tuxera But there all are restricted and you can use it for a limited period of time and they had hefty prices to pay for, So instead after a long search and trying out various tools here are my list of best picks for the free software available that will definitely help you out. easyuefi ~ ntfs-for-mac  ~ I myself been using it for a while now. mounty I will be updating the list every time when I find new software availabl...

Changing python version in gitpod

I have always had this problem modifying using a particular version of python on gitpod. Until I knew this simple trick to switch between the python versions. If you have not heard of gitpod its time for you to use it as running code online instead of local machine helps you when you have a CPU intensive processes and there are a lot of free to use online web apps that enable you to start with using powerful CPU and extends to GPU and TPU as well. I will be sharing a blog post soon on all the free tools you could use to boost up your productivity. So if you are already using gitpod and want to switch between python versions its simpler than you think Run this to check all the python versions available:    pyenv versions So to install a new version of python you simply have to run this:   pyenv install 3.7.6 (Or whatever version you want) That will basically download and install. Now you need to make sure to configure it for the existing workspace, t...