| View previous topic :: View next topic |
| Author |
Message |
Ryc3G2Ah Joined: 07 Apr 2012 Posts: 26

Reputation: 5
|
Posted: Sat Apr 21, 2012 3:03 pm Post subject: Dictionary Attack |
|
|
Hello,
what does this mean:
- Substrings with length not less than, characters
- Words with all possible character cases
- Existing passwords from "SAMInside.DIC" |
|
| Back to top |
|
 |
broken580 Joined: 19 Dec 2012 Posts: 1

Reputation: 0
|
Posted: Wed Dec 19, 2012 12:55 pm Post subject: |
|
|
A dictionary attack uses a targeted technique of successively trying all the words in an exhaustive list called a dictionary (from a pre-arranged list of values). In contrast with a brute force attack, where a large proportion key space is searched systematically, a dictionary attack tries only those possibilities which are most likely to succeed _________________ Pakistan online shopping
Online shopping in Pakistan |
|
| Back to top |
|
 |
mastercracker Joined: 28 Feb 2007 Posts: 5856

Reputation: 2954
|
Posted: Wed Dec 19, 2012 9:19 pm Post subject: Re: Dictionary Attack |
|
|
| Ryc3G2Ah wrote: | what does this mean:
- Substrings with length not less than, characters |
Besides trying the exact word from the dictionary, it will try also substrings of it. If you use the word systemadministrator for example with a length of not less 6 it will try.
system
ystema
stemad
...
systema
ystemad
...
systemad
ystemadm
stemadmin
...
| Ryc3G2Ah wrote: | what does this mean:
- Words with all possible character cases |
It will try all the upper and lower case combinations. For the word admin, it will try:
Admin
aDmin
adMin
admIn
admiN
ADmin
AdMin
...
| Ryc3G2Ah wrote: | what does this mean:
- Existing passwords from "SAMInside.DIC" | Every found passwords gets saved in the file SAMInside.DIC. With this option, this file gets used in a simple dictionary attack. |
|
| Back to top |
|
 |
|