Strong Passwords Prevent Identity Theft

Maintaining a secure computer is a good defensemethod known as "brute force". That means the
against becoming a victim of Identity Theft. Use aattacker is taking every possible combination of
secure password. By secure, I mean a passwordnumbers and letters and special characters and
that is not easily guessable, such as a word youcreating a hash to try and match the hash stored
may find in the dictionary. These types ofby the computer.
passwords can be found by someone using whatTo prevent yourself from being subjected to a
is known as a "dictionary attack" This type of"brute force" attack, you can set up a security
attack involves using the words that are found inpolicy that will disable the account after a certain
the dictionary and comparing those to a hash thatnumber of unsuccessful attempts.
has been generated by the Operating System. IfTo further prevent yourself from being
the attack matches the hashes, then thecompromised since there are programs that can
password has been compromised. Don't usedownload the hashes stored in your computer,
birthdays or Social Security Numbers as well. Ityou may want to set some kind of time limit for
has been recommended that your password beyour passwords. A good example would be that
at least 8 characters long, including small andthe password would have to be changed every
capital letters, numbers, and special characters.90 days, and the same password can't be used
A password like "alphabet" can easily bewithin a 180 period. This will help ensure that if
compromised. If you were to change it up a littlesomeone did get the hash of your password, that
by making every other letter a capital,by the time it is compromised, it would be an
"AlPhAbEt", this will improve the security. You canobsolete password.
then take it a step further and replace the "E"Try to check your logs to see if there have been
with the number "3", so then your passwordany attempts on the password. This will certainly
looks like "AlPhAb3t". Then take the "l" and changelet you know if someone is looking at your
it to the number "1" or even the "!". So now thecomputer in order to compromise the data that is
password looks like "A!PhAb3t". It will take a superstored on it.
computer an extremely long time to break thisBy maintaining a secure password, you are
password.ensuring that your private information will remain
At this point the attacker would have to use aprivate.