Page 1 of 1

Password hack project

Posted: Tue Nov 12, 2019 6:53 pm
by quash21
In the password hack project, it has the 4 methods of hacking the password. In method 4 is says it uses common dictionary words. How do I know what the words are? Are they on that list for method 3?

Re: Password hack project

Posted: Fri Nov 15, 2019 9:28 am
by AmyCowen
Method 4 is actually described as being about using a combination of words (2 words for example) either joined or joined with punctuation or a number separating them.
Method #3: dictionary attack using a list of common passwords. A third method takes advantage of a list of passwords that people often use in real life. Mark Burnett, the author of the book Perfect Passwords compiled a list of the 500 most common passwords used in 2005. We started with that list to make a list of 400+ words, saved in passwords.txt. This third method tries all of these passwords. Since people may use capital letters or not, it also tries each word with the first letter as a capital.

Method #4: advanced dictionary attack that combines words. The fourth method builds on the third and takes advantage of the fact that people very often use passwords that combine two words with a number or punctuation in between. A fan of wizarding stories might use the password "Harry+Ginny" for example, where the password is much stronger than either "Harry" or "Ginny" alone (unless someone knows you like those characters). It also changes the punctuation in the middle and utilizes capital letters at the beginning of words as well.

In the code provided, you will see that method 3 and method 4 are both reading the same text file.


Amy

Science Buddies


Project: https://www.sciencebuddies.org/science- ... #procedure

Re: Password hack project

Posted: Tue Nov 19, 2019 11:05 am
by quash21
yes, but what are the words that it tries? does it use the words on the list and combines them? or different words?

Re: Password hack project

Posted: Mon Mar 16, 2020 3:19 pm
by emyy
Have you tried brute forcing without dictionaries