Brute Force
By namoka
@namoka (46)
Philippines
June 29, 2011 6:57am CST
Hi. I have a report regarding brute force. And I was wondering if you ever have a program or application that demonstrate this. Thanks.
3 responses
@AgentGulaman (3546)
• Philippines
29 Jun 11
Try searching for documentaries of different fighting techniques. I think I saw one from Discovery channel or a channel with something in the line like that. It demonstrates brute force use in different fighting techniques such as boxing, kung fu, wushu and others.
@types10000 (32)
•
20 Oct 11
To me it seems the comments of the previous posters were a little vague on what it actually is, afterall the most important thing to remember when talking about brute force attacks is constraints.
Case study:
A website has a password ("WIN") that is a maximum of 3 characters long and can only be composed of capital letters.
Based on this, we can set constrains on our brute force program and the attack would follow the following pattern:
A
B
C
...
AA
AB
AC
...
BA
BB
BC
...
AAA
AAB
AAC
AAD
...
WIN
@RamRes (1723)
• Argentina
18 Aug 11
To make it short, it's a kind of attack that attempts every possible input to find the correct one. Often used to guess passwords, it tries all possible combinations of letter, numbers and symbols (starting with the most frequently used) to find which one is correct. Such kind of attack always succeeds, because soon or latter it will try the correct one. The downside is that trying every one takes a long time, and with long and complex passwords it can easily take years to put them all, reason for which this attack is not feasible and unlikely to be tried against most systems.