subject
Computers and Technology, 18.03.2021 01:40 Jasten

Suppose you could use the 26 lower-case letters in a password and the length of the password is set to 8 characters. Answer the following questions. Hint: On average, it needs to test half of all possible passwords to crack one. a. What is the number of passwords that could be constructed from such a character set? b. Assume a brute-force attack and the attacker knows the length of the password. How long, on average, would it take the attacker to guess such a password if the attacker could test a password every millisecond? Report in second. c. Now assume a dictionary attack. The attacker knows the length of the password and the dictionary contains 100,000 words that have the same length as the password (i. e., 8 characters). How long, on average, would it take the attacker to guess such a password if the attacker could test a password every millisecond? Report in second. d. Let’s assume the use of salting. If a password is salted with a 24-bit random number, how big is the dictionary attack search space when using the dictionary in question c?

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 03:10
Acomputer has a two-level cache. suppose that 60% of the memory references hit on the first level cache, 35% hit on the second level, and 5% miss. the access times are 5 nsec, 15 nsec, and 60 nsec, respectively, where the times for the level 2 cache and memory start counting at the moment it is known that they are needed (e.g., a level 2 cache access does not even start until the level 1 cache miss occurs). what is the average access time?
Answers: 1
question
Computers and Technology, 23.06.2019 09:00
Which company provides a crowdsourcing platform for corporate research and development? a: mtruk b: wiki answers c: mediawiki d: innocentive
Answers: 2
question
Computers and Technology, 23.06.2019 10:30
How would you categorize the software that runs on mobile devices? break down these apps into at least three basic categories and give an example of each.
Answers: 1
question
Computers and Technology, 23.06.2019 18:00
File account.java (see previous exercise) contains a definition for a simple bank account class with methods to withdraw, deposit, get the balance and account number, and return a string representation. note that the constructor for this class creates a random account number. save this class to your directory and study it to see how it works. then write the following additional code: 1. suppose the bank wants to keep track of how many accounts exist. a. declare a private static integer variable numaccounts to hold this value. like all instance and static variables, it will be initialized (to 0, since it’s an int) automatically. b. add code to the constructor to increment this variable every time an account is created. c. add a static method getnumaccounts that returns the total number of accounts. think about why this method should be static - its information is not related to any particular account. d. file testaccounts1.java contains a simple program that creates the specified number of bank accounts then uses the getnumaccounts method to find how many accounts were created. save it to your directory, then use it to test your modified account class.
Answers: 3
You know the right answer?
Suppose you could use the 26 lower-case letters in a password and the length of the password is set...
Questions