active questions tagged brute-force - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:29:29Zhttp://stackoverflow.com/feeds/tag/brute-forcehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1749657/need-help-with-brute-force-code-for-crypt30Need help with brute force code for crypt(3)gian2009-11-17T15:29:26Z2009-11-18T08:18:47Z
<p>Hello,
I am trying to develop a program in C that will "crack" the crypt(3) encryption used by UNIX.
The most naive way to do it is brute forcing I guess. I thought I should create an array containing all the symbols a password can have and then get all possible permutations of them and store them in a two-dimensional array (where all the 1 character passwords get's saved in the first row etc.) through for loops. Is there any better way to do this? It's pretty messy with the loops.</p>
http://stackoverflow.com/questions/1727329/brute-force-dos-prevention-in-php1Brute-force/DoS prevention in PHPnickf2009-11-13T05:37:34Z2009-11-17T04:36:09Z
<p>I am trying to write a script to prevent brute-force login attempts in a website I'm building. The logic goes something like this:</p>
<ol>
<li>User sends login information.</li>
<li>Check if username and password is correct
<ul>
<li>If Yes, let them in.</li>
<li>If No, record a failed attempt in the database. Check if there's too many fails within a given timeframe (eg: 5 in 5 minutes):
<ul>
<li>If Yes, then pause execution for 10 seconds: <code>sleep(10)</code>, then report a login failure to the user.</li>
<li>Report a login failure to the user immediately</li>
</ul></li>
</ul></li>
</ol>
<p>Explaining this to a co-worker, I was asked how this would help if a hacker sent, say, 1000 requests in one second. Would the first 5 would return immediately, and then the remaining 995 all take only 10 seconds? </p>
<p>I have a sneaking suspicion that I don't fully understand how HTTP works - is that situation above even possible, or is there a limit to the number of concurrent requests that a server will handle from one client?</p>
<p>Would a better solution be to have an increasing sleep time?</p>
<pre><code>sleep($numRequestsInLast5Minutes - 5)
</code></pre>
<p>So the first 5 would be fast, and then every subsequent one would increase the sleep.</p>
http://stackoverflow.com/questions/1462079/preventing-brute-force-attacks-on-mysql0Preventing brute-force attacks on MySQL? Keith Palmer2009-09-22T19:21:21Z2009-11-10T13:46:46Z
<p>I need to turn on networking for MySQLd, but every time I do, the server gets brute-forced into oblivion. Some mean password guessing script starts hammering on the server, opening a connection on port 3306 and trying random passwords forever. </p>
<p>How can I stop this from happening? </p>
<p>For SSH, I use denyhosts, which works well. Is there a way to make denyhosts work with MySQLd? </p>
<p>I've also considered changing the port MySQL is running on, but this is less than ideal and only a stop-gap solution (what if they discover the new port?) </p>
<p>Does anyone have any other ideas?</p>
<p>If it makes a different, I'm running MySQL 5.x on FreeBSD 6.x. </p>
http://stackoverflow.com/questions/1651344/moving-to-specific-record-within-a-datatable1Moving to specific record within a DataTableDRapp2009-10-30T17:50:54Z2009-11-01T11:08:06Z
<p>Hopefully simple, but can't find any such option.</p>
<p>I have a data table -- has say... 10 rows in it. Some fields on the form are bound to the table.columns respectively by name.</p>
<p>On another form that HAS a grid, as I scroll the grid, the detail fields are refreshed as expected since the grid does some magic to trigger the DataTable record changing event.</p>
<p>WITHOUT using a Data Grid, How can I direct the table to go to a specific row for load/display refresh on the form... ex:</p>
<pre><code>DataTable MyTable = new DataTable();
MyTable = GetResultsFromSQL(); // returns the 10 rows
MyTable.LoadTheDataForRow(3);
MyTable.LoadTheDataForRow(7);
MyTable.LoadTheDataForRow(2);
</code></pre>
<p>I know I can use a foreach row in the table, but need explicit use as I don't want to go through all rows, but need specificity to specific ones.</p>
<p>I've looked at the LoadDataRow(), but that appears to be for pushing data back to a server. NOT what I want... I just want to have the "Current" row of the table to be of a specific one... </p>
<p>Thanks</p>
<p>After further research, I've found that a FORM based control "BindingSource" (or derivative) allows this, such as a grid. But, obviously, there's something the .Net engine is doing under the hood to ultimately "Load" a given row into something that ultimately triggers back to the "BindingSource"... The DataTable has RowChanging and RowChanged events which appear to be triggered by OnRowChanging / OnRowChanged delegates, but how can we tell the data table which "row" we want it as the active one.</p>
<p>The form controls can do this for their binding sources, but what is really happening under the hood to trigger these OnRowChanging events... I don't want to re-load a data table, rows, etc, just change what is considered the "Active" row, as in a grid, listbox, combobox, etc.</p>
http://stackoverflow.com/questions/1584159/is-the-password-weak-under-dictionary-attack2Is the password weak under dictionary attackChris2009-10-18T06:12:39Z2009-10-19T09:37:44Z
<p>Thanks for looking. All sincerely helpful answers are voted up. </p>
<p>I use a password strength meter to let the user know how strong the password they've chosen is. But this password checker obviously doesn't cover how weak under a dictionary attack the password is. How can I check for that, and is it worth it? </p>
<p>Also my regular password checker runs initially with javascript in the browser (no transmission required). If I want to check for dictionary attack weakness, I'd have to transmit it to a script. My understanding is that I shouldn't transmit it in the clear. </p>
<p>Can someone help me sort this out. How do I check the password isn't weak under a dictionary attack and how do I encrypt it before transmitting to my script?</p>
<p><strong>Extra info:</strong></p>
<p>Why do I think I need the dictionary attack check in addition to the regular password meter? As some of you have pointed out, users can choose passwords like P@ssword or Yellow12. But most password strength checkers I've come across will treat this as a good password. At least I'm using <a href="http://www.yetanotherpasswordmeter.com/" rel="nofollow">Yet Another Password Meter</a> and it does (and I actually think it's one of the better password checkers.) If anyone knows of a stronger password checker, please mention it, but only if you know for sure based on experience that it's stronger ;)</p>
<p>But my question really is: <strong>how do I conduct a dictionary attack check on the password?</strong> I read somewhere that it's done against the hash, but where do I do the search? Once I find out how to do it, I will then decide whether it's worth it or not. </p>
<p>thanks to everyone who's helped out so far :)</p>
http://stackoverflow.com/questions/1463832/calculate-brute-force-size-dynamically0Calculate brute force size dynamically?raspi2009-09-23T03:34:31Z2009-09-23T14:22:29Z
<p>How you could calculate size of brute force method dynamically? For example how many iterations and space would take if you printed all IPv6 addresses from 0:0:0:0:0:0:0:0 - ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff to file? The tricky parts are those when length of line varies. IP address is only example. </p>
<p>Idea is that you give the format and maximum lenghts of given parts. So if variable type is '%c' (char), and maxlen is 26 then iteration count is 26 and needed space in human format in text file is 26 + 26 (one char for separator)</p>
<pre><code>def calculate(format, rules):
end = format
for i in rules:
(vartype, maxlen) = rules[i]
end = end.replace(i, vartype % maxlen)
start = format
for i in rules:
(vartype, maxlen) = rules[i]
minlen = 0
start = start.replace(i, vartype % minlen)
start_bytes = len(start)
end_bytes = len(end)
# how to add for example IPv4 calculations
# 0.0.0.0 - 9.9.9.9
# 10.10.10.10 - 99.99.99.99
# 100.100.100.100 - 255.255.255.255
iterations = 0
for i in rules:
if format.find(i) is not -1:
(vartype, maxlen) = rules[i]
if iterations == 0:
iterations = int(maxlen) + 1
else:
iterations *= int(maxlen) + 1
iterations -= 1
needed_space = 0
if start_bytes == end_bytes:
# +1 for separator (space / new line)
needed_space = (1 + start_bytes) * iterations
else:
needed_space = "How to calculate?"
return [iterations, needed_space, start, end, start_bytes, end_bytes]
if __name__ == '__main__':
# IPv4
print calculate(
"%a.%b.%c.%d",
{
'%a': ['%d', 255],
'%b': ['%d', 255],
'%c': ['%d', 255],
'%d': ['%d', 255]
},
)
# IPv4 zero filled version
print calculate(
"%a.%b.%c.%d",
{
'%a': ['%03d', 255],
'%b': ['%03d', 255],
'%c': ['%03d', 255],
'%d': ['%03d', 255]
},
)
# IPv6
print calculate(
"%a:%b:%c:%d:%e:%f:%g:%h",
{
'%a': ['%x', 65535],
'%b': ['%x', 65535],
'%c': ['%x', 65535],
'%d': ['%x', 65535],
'%e': ['%x', 65535],
'%f': ['%x', 65535],
'%g': ['%x', 65535],
'%h': ['%x', 65535]
},
)
# days in year, simulate with day numbers
print calculate(
"ddm%a", #ddmmyy
{
'%a': ['%03d', 365],
},
)
</code></pre>
<p>So for example:</p>
<ul>
<li>1.2.3.4 takes 7 bytes</li>
<li>9.9.9.10 takes 8 bytes</li>
<li>1.1.1.100 takes 9 bytes</li>
<li>5.7.10.100 takes 10 bytes</li>
<li>128.1.1.1 takes 9 bytes</li>
<li>and so on</li>
</ul>
<p><hr /></p>
<p>Example 0.0.0.0 - 10.10.10.10:</p>
<pre><code> iterations = 0
needed_space = 0
for a in range(0, 11):
for b in range(0, 11):
for c in range(0, 11):
for d in range(0, 11):
line = "%d.%d.%d.%d\n" % (a, b, c, d)
needed_space += len(line)
iterations += 1
print "iterations: %d needed_space: %d bytes" % (iterations, needed_space)
</code></pre>
<p>iterations: 14641 needed_space: 122452 bytes</p>
<p>Into</p>
<pre><code> print calculate(
"%a.%b.%c.%d",
{
'%a': ['%d', 10],
'%b': ['%d', 10],
'%c': ['%d', 10],
'%d': ['%d', 10]
},
)
</code></pre>
<p>Result: [14641, 122452]</p>
http://stackoverflow.com/questions/1332934/is-there-non-linear-difference-between-strong-i-e-aes-and-non-strong-i-e-cla0Is there non-linear difference between strong (i.e. AES) and non-strong (i.e. classic zip) encryptionMaksee2009-08-26T07:29:23Z2009-08-27T06:33:33Z
<p>AES and other modern encryption algorithm are considered strong and sometimes one can see quotes like "it's not recommended to use classic zip encryption since it is no longer considered strong". But is there a really non-linear difference between them? For example, if both produce sequences with high entropy, does it mean that with a very long password (512 bit and more) they both become indistinguishably strong since lets say theoretically we can break AES for example with billion year computer time and zip with 1/10 of that time? </p>
http://stackoverflow.com/questions/1295212/ubuntu-server-ssh0Ubuntu Server SSH [closed]Rob2009-08-18T17:01:12Z2009-08-18T17:06:03Z
<p>Hi, I have a server with ubuntu. I do work on it over SSH. I had a problem with brute force attempts over port 22. I changed the port and I assumed it fixed the brute force problem. Am I right or are the attempts on another port just not logged anymore in /var/log/auth.log?</p>
http://stackoverflow.com/questions/479233/what-is-the-best-distributed-brute-force-countermeasure29What is the best Distributed Brute Force countermeasure?Jens Roland2009-01-26T09:37:29Z2009-07-29T05:33:09Z
<p>First, a little background: It is no secret that I am implementing an auth+auth system for CodeIgniter, and so far I'm winning (so to speak). But I've run into a pretty non-trivial challenge (one that most auth libraries miss entirely, but I insist on handling it properly): how to deal intelligently with <strong>large-scale, distributed, variable-username brute-force attacks</strong>.</p>
<p>I know all the usual tricks:</p>
<ol>
<li><strong>Limiting # of failed attempts per IP/host</strong> and denying the offenders access (e.g. Fail2Ban) - which no longer works <a href="http://www.christopher-kunz.de/archives/205-Distributed-and-coordinated-SSH-bruteforce-attacks.html" rel="nofollow">since botnets have grown smarter</a></li>
<li>Combining the above with a <strong>blacklist of known 'bad' IPs/hosts</strong> (e.g. DenyHosts) - which relies on botnets falling for #1, <a href="http://www.christopher-kunz.de/archives/205-Distributed-and-coordinated-SSH-bruteforce-attacks.html" rel="nofollow">which they increasingly don't</a></li>
<li><strong>IP/host whitelists</strong> combined with traditional auth (sadly useless with dynamic IP users and the high churn on most web sites)</li>
<li>Setting a <strong>sitewide limit</strong> on # of failed attempts within a N minute/hour period, and throttling (suspending) all login attempts after that for a number of minutes/hours (with the problem that DoS attacking you becomes botnet child's play)</li>
<li>Mandatory <strong>digital signatures</strong> (public-key certificates) or RSA hardware tokens for all users with NO login/password option (without question a rock-solid solution, but only practical for closed, dedicated services)</li>
<li>Enforced <strong>ultra-strong password schemes</strong> (e.g. >25 nonsense characters with symbols - again, too impractical for casual users)</li>
<li>And finally, <strong>CAPTCHAs</strong> (which could work in most cases, but are annoying for users and <a href="http://caca.zoy.org/wiki/PWNtcha" rel="nofollow">virtually useless</a> against a <a href="http://www.slideshare.net/valicac/captcha" rel="nofollow">determined, resourceful attacker</a>)</li>
</ol>
<p>Now, these are just the theoretically workable ideas. There are <em>plenty</em> of rubbish ideas that blow the site wide open (e.g. to trivial DoS attacks). What I want is something better. And by better, I mean:</p>
<ul>
<li><p>It has to be secure(+) against DoS and brute-force attacks, and not introduce any new vulnerabilities that might allow a slightly sneakier bot to continue operating under the radar</p></li>
<li><p>It has to be automated. If it requires a human operator to verify each login or monitor suspicious activity, it's not going to work in a real-world scenario</p></li>
<li><p>It has to be feasible for mainstream web use (ie. high churn, high volume, and open registration that can be performed by non-programmers)</p></li>
<li><p>It can't impede the user experience to the point where casual users will get annoyed or frustrated (and potentially abandon the site)</p></li>
<li><p>It can't involve kittens, unless they are <em>really really secure</em> kittens</p></li>
</ul>
<p>(+) <em>By 'secure', I mean at least as secure as a paranoid user's ability to keep his password secret</em></p>
<p>So - let's hear it! <em>How would you do it</em>? Do you know of a best-practice that I haven't mentioned (oh please say you do)? I admit I do have an idea of my own (combining ideas from 3 and 4), but I'll let the true experts speak before embarrassing myself ;-)</p>
http://stackoverflow.com/questions/213380/the-necessity-of-hiding-the-salt-for-a-hash18The necessity of hiding the salt for a hashKevin2008-10-17T18:49:38Z2009-07-21T11:25:32Z
<p>At work we have two competing theories for salts. The products I work on use something like a user name or phone number to salt the hash. Essentially something that is different for each user but is readily available to us. The other product randomly generates a salt for each user and changes each time the user changes the password. The salt is then encrypted in the database.</p>
<p>My question is if the second approach is really necessary? I can understand from a purely theoretical perspective that it is more secure than the first approach, but what about from a practicality point of view. Right now to authenticate a user, the salt must be unencrypted and applied to the login information. </p>
<p>After thinking about it, I just don't see a real security gain from this approach. Changing the salt from account to account, still makes it extremely difficult for someone to attempt to brute force the hashing algorithm even if the attacker was aware of how to quickly determine what it was for each account. This is going on the assumption that the passwords are sufficiently strong. (Obviously finding the correct hash for a set of passwords where they are all two digits is significantly easier than finding the correct hash of passwords which are 8 digits). Am I incorrect in my logic, or is there something that I am missing?</p>
<p><strong>EDIT:</strong> Okay so here's the reason why I think it's really moot to encrypt the salt. (lemme know if I'm on the right track). </p>
<p>For the following explanation, we'll assume that the passwords are always 8 characters and the salt is 5 and all passwords are comprised of lowercase letters (it just makes the math easier).</p>
<p>Having a different salt for each entry means that I can't use the same rainbow table (actually technically I could if I had one of sufficient size, but let's ignore that for the moment). This is the real key to the salt from what I understand, because to crack every account I have to do reinvent the wheel so to speak for each one. Now if I know how to apply the correct salt to a password to generate the hash, I'd do it because a salt really just extends the length/complexity of the hashed phrase. So I would be cutting the number of possible combinations I would need to generate to "know" I have the password + salt from 13^26 to 8^26 because I know what the salt is. Now that makes it easier, but still really hard. </p>
<p>So onto encrypting the salt. If I know the salt is encrypted, I wouldn't try and decrypt (assuming I know it has a sufficient level of encryption) it first. I would ignore it. Instead of trying to figure out how to decrypt it, going back to the previous example I would just generate a larger rainbow table containing all keys for the 13^26. Not knowing the salt would definitely slow me down, but I don't think it would add the monumental task of trying to crack the salt encryption first. That's why I don't think it's worth it. Thoughts?</p>
<p>Here is a link describing how long passwords will hold up under a brute force attack:
<a href="http://www.lockdown.co.uk/?pg=combi" rel="nofollow">http://www.lockdown.co.uk/?pg=combi</a></p>
http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign10Is a preference for brute force solutions a bad sign?Skilldrick2009-01-06T22:37:16Z2009-06-26T04:48:38Z
<p>This is my first post here so be easy on me! </p>
<p>I'm a beginner C++ programmer, and to stretch my mind I've been trying some of the problems on <a href="http://projecteuler.net/" rel="nofollow">projecteuler.net</a>. Despite an interest in maths at school, I've found myself automatically going for brute force solutions to the problems, rather than looking for something streamlined or elegant. </p>
<p>Does this sound like a bad mindset to have? I feel a bit guilty doing it like this, but maybe quick and dirty is OK some of the time...</p>
http://stackoverflow.com/questions/865107/fastest-way-to-bruteforce-a-string-using-a-dos-wildcard4Fastest way to bruteforce a string using a DOS wildcardCyberShadow2009-05-14T19:01:47Z2009-05-14T20:50:15Z
<p>This problem is similar to blind SQL injections. The goal is to determine the exact value of a string, and the only test you can do is to see if a DOS-style wildcard (? = any character, * = any number of any characters) you specify is matched by the string. (So practically you only have access to a <code>bool DoesWildcardMatch(string wildcard)</code> function). </p>
<p>The straight-forward way is to test against <code>a*, b*, c*...</code> until you find the first letter, then repeat. Some optimizations I can think of:</p>
<ul>
<li>search for <code>*a*, *b*</code> etc. to determine the character set</li>
<li>when a match on <code>*x*</code> is found, perform divide-et-impera (<code>*a*x*, *b*x*, ...</code>)</li>
</ul>
http://stackoverflow.com/questions/862141/could-validationkey-and-decryptionkey-be-found-by-brute-force-from-encrypted-cook0Could validationKey and decryptionKey be found by brute force from encrypted cookie value?Darin Dimitrov2009-05-14T08:14:40Z2009-05-14T08:30:33Z
<p>I am using the following code to generate an encrypted token:</p>
<pre><code>var ticket = new System.Web.Security.FormsAuthenticationTicket(
2,
"",
DateTime.Now,
DateTime.Now.AddMinutes(10),
false,
"user id here");
var cipherText = System.Web.Security.FormsAuthentication.Encrypt(ticket);
</code></pre>
<p>This code uses the key and algorithm specified in app/web.config :</p>
<pre><code><system.web>
<machineKey validationKey="SOME KEY"
decryptionKey="SOME OTHER KEY"
validation="SHA1" />
</system.web>
</code></pre>
<p>Now suppose I give the cipher text thus generated to a partner. Is he capable of brute forcing:</p>
<ol>
<li>The value that is stored in the cipher (the user id which does not represent sensitive information and it doesn't bother me much)</li>
<li>The value of the validationKey and decryptionKey used to create the cipher (this would be catastrophic because he would be capable of generating tokens and impersonating any user)</li>
</ol>
<p>I suppose the answer to both questions is yes, but how realistic his chances are and do you think giving him the cipher would represent a security threat to my system? Thanks in advance for your responses.</p>
http://stackoverflow.com/questions/806549/does-apache-basic-authentication-defend-brute-force-attacks1Does Apache basic authentication defend brute force attacks?Philipp Lenssen2009-04-30T11:59:49Z2009-04-30T14:25:44Z
<p>Will it shut down & lock up after repeated false password tries, and/or will it add lags in-between retries? Or does this depend on which modules you or your provider install? Thanks!</p>
http://stackoverflow.com/questions/685420/finding-a-legacy-firebird-interbase-database-password1Finding a legacy firebird/Interbase database passwordMartín Marconcini2009-03-26T11:46:43Z2009-04-03T14:47:01Z
<p>Hi,</p>
<p>I have a customer that has an old non-existant application; he had a problem with the company that made the application and they won't disclose his database password. He realized that he signed a contract (back then) where it said that he was sort of "renting" the application and they had no right to disclose anything. This customer found out that he's not the only one with the same problem with that company. He's a Dentist and other dentists with the same old application experienced the same problems when trying to buy a new software and attempted to migrate their patients to the new system.</p>
<p>In either case, he wants to open his little firebird database, so we can at least extract some data to our SQL Servers. I have tried with the default 'masterkey' (which is, in fact, 'masterke' due to the 8 char limit) to no avail. </p>
<p>Now I know he could go legal and try to force the company to release his information, but I want to do it the short way. Does anybody know an app that can brute force/crack a legacy Firebird password?</p>
<p>Thanks.</p>
<p>EDIT: The legacy software is "STOMA-W", I cannot even find it on Internet. They are located in Asturias, Spain. </p>
http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php1Limiting user login attempts in PHPartarad2009-03-25T00:07:41Z2009-03-25T03:52:47Z
<p>Hi there,
I'm seeing web apps implementing limitations for user login attempts.</p>
<p>Is it a security necessity and, if so, why? </p>
<p>For example: <em>you had three failed login attempts, let's try again in 10 minutes!!</em> </p>
<p>thanks :)</p>
http://stackoverflow.com/questions/496026/how-would-i-go-about-implementing-this-algorithm8How would I go about implementing this algorithm?John2009-01-30T16:04:06Z2009-01-30T16:35:36Z
<p>Friday afternoon seems like a good time to ask this question...</p>
<p>A while back I was trying to brute force a remote control which sent a 12 bit binary 'key'.</p>
<p>The device I made worked, but was very slow as it was trying every combination at about 50 bits per second (4096 codes = 49152 bits = ~16 minutes)</p>
<p>I opened the receiver and found it was using a shift register to check the codes and no delay was required between attempts. This meant that the receiver was simply looking at the last 12 bits to be received to see if they were a match to the key.</p>
<p>This meant that if the stream 111111111111000000000000 was sent through, it had effectively tried all of these codes.</p>
<pre><code>111111111111 111111111110 111111111100 111111111000
111111110000 111111100000 111111000000 111110000000
111100000000 111000000000 110000000000 100000000000
000000000000
</code></pre>
<p>In this case, I have used 24 bits to try 13 12 bit combinations (>90% compression).</p>
<p>Does anyone know of an algorithm that could reduce my 49152 bits sent by taking advantage of this?</p>
<p>I'm not working on the gadget anymore, but it's always been in the back of my head that there must be some algorithm to reduce the bits sent.</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications3Best practice against password-list-attacks with webapplicationsStefan2009-01-19T14:24:53Z2009-01-30T06:41:56Z
<p>Hello,</p>
<p>i'd like to prevent bots from hacking weak password-protected accounts. (e.g. this happend to ebay and other big sites)</p>
<p>So i'll set a (mem-) cached value with the ip, amount of tries and timestamp of last try (memcache-fall-out).</p>
<p>But what about bots trying to open any account with just one password. For example, the bot tries all 500.000 Useraccounts with the password "password123". Maybe 10 will open.</p>
<p>So my attempt was to just cache the ip with tries and set max-tries to ~50. The i would delete it after a successful login. So the good-bot would just login with a valid account every 49 tries to reset the lock.</p>
<p>Is there any way to do it right?
What do big platforms do about this?
What can i do to prevent idiots from blocking all users on a proxy with retrying 50 times?</p>
<p>If there is no best practice - does this mean any platform is brute-forceable? At least with a hint on when counters are resetted?</p>
<p>Thanks in advance,</p>
<p>Stefan</p>
http://stackoverflow.com/questions/424210/preventing-brute-force-logins-on-websites15Preventing Brute Force Logins on WebsitesGreg2009-01-08T13:25:38Z2009-01-26T10:38:55Z
<p>As a response to the recent <a href="http://blog.wired.com/27bstroke6/2009/01/professed-twitt.html" rel="nofollow">Twitter hijackings</a> and <a href="http://www.codinghorror.com/blog/archives/001206.html" rel="nofollow">Jeff's post on Dictionary Attacks</a>, what is the best way to secure your website against brute force login attacks?</p>
<p>Jeff's post suggests putting in an increasing delay for each attempted login, and a suggestion in the comments is to add a captcha after the 2nd failed attempt.</p>
<p>Both these seem like good ideas, but how do you know what "attempt number" it is? You can't rely on a session ID (because an attacker could change it each time) or an IP address (better, but vulnerable to botnets). Simply logging it against the username could, using the delay method, lock out a legitimate user (or at least make the login process very slow for them).</p>
<p>Thoughts? Suggestions?</p>
http://stackoverflow.com/questions/347501/brute-force-need-help3Brute force , Need helpSara2008-12-07T11:47:36Z2008-12-09T20:47:40Z
<p>Hi guys I'm a junior student and I had a course called The Design and Analysis of Algorithms,The course is cool but the instructor is not any way, I dont understand the brute force and how to count the number of operations and how to count the time complexity(worst,best,avg), I tried to search for it on the net but each time I end with the big-o notation and the divide and conquer which i dont want. If any of you guys can download the instructor slide from this link and see what I'm talking about .... </p>
<p><a href="http://www.sy-stu.com/stu/PublicFiles/StdLibrary/L_15_Design_and_analysis_of_Algorithms_DA_Algorithms_04.ppt" rel="nofollow">the slide</a></p>
<p>I really need your help on this , and I promise i will do my best</p>
http://stackoverflow.com/questions/212347/what-are-some-practical-problems-that-parallel-computing-f-and-gpu-parallel-pr2What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.Chris Ballance2008-10-17T14:20:39Z2008-10-21T10:54:00Z
<p>Recently WiFi encryption was brute forced by using the parellel processing power of the modern GPU <a href="http://is.gd/4fhb" rel="nofollow">http://is.gd/4fhb</a>. What other real-life problems do you think will benefit from similar techniques?</p>