answersLogoWhite

0

A username is an account set up by a computer administrator. An administrator has full access of the data stored and can do such things as add or remove software. A username is good because it allows multiple people to use the same computer but at the same time restricting access if desired. Passwords are group of characters that are encrypted to prevent or slow down access to unwanted users. Most PC user do not have the software like ophcrack to hack and obtain passwords.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

What are the measures in preventing a social engineering attact?

keeping hidden from public view any passwords that are posted in the work area


How do you do th decryption of passwords encrypted by one way hashing algorithm?

You can't decrypt them, that's why it's called one-way. The only way to get the password is to encrypt guess words with the same algorithm and checking if the result matches the encrypted password. So if your encrypted password is a9d82da, guess what it might be - maybe "frank"? - and encrypt that word, and if you get 29d8afd, you know the password is not "frank", so try another word. If one of them encrypts into a9d82da, then you know that's the password.Passwords are often guessed this way by using a dictionary - a simple list of words - and automatically encrypting them one by one and comparing the result with the encrypted password. Another approach that takes much longer is to try every possible combination of characters, such as aa, ab, ac, aaa, aab, aac, aba, abb, abc, etc. This can take weeks, months, even years, depending on the algorithm used and the speed of your computer.


Is an encrypted letter an example of data or information?

Data. Information is something useful to us. An encrypted letter is simply gibberish until it's decoded. Then it's info. Hope this helps!


What is ssl?

SSL is one of the most secure methods of transferring data across the internet. Things like credit card detail, payment details, emails, usernames, passwords and all other kinds of data can be protected by SSL, and one of the most surefire ways to protect your transmitted data is a verified SSL certificate.You can read more about SSl in the Graphics Online article added as a related link.


How do you make a login form with an array on visual basic 2010.?

To create a login form using an array in Visual Basic 2010, you can first define a string array to hold valid usernames and passwords. For example, you could use Dim credentials(,) As String = {{"user1", "pass1"}, {"user2", "pass2"}}. In the form's button click event, iterate through the array to check if the input username and password match any of the pairs. If a match is found, grant access; otherwise, display an error message.