29
votes
14answers
1k views
What is the best Distributed Brute Force countermeasure?
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 …
18
votes
7answers
1k views
The necessity of hiding the salt for a hash
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 …
15
votes
10answers
843 views
Preventing Brute Force Logins on Websites
As a response to the recent Twitter hijackings and Jeff's post on Dictionary Attacks, what is the best way to secure your website against brute force login attacks?
Jeff's post suggests putting in an …
10
votes
13answers
531 views
Is a preference for brute force solutions a bad sign?
This is my first post here so be easy on me!
I'm a beginner C++ programmer, and to stretch my mind I've been trying some of the problems on projecteuler.net. Despite an interest in maths at school, …
8
votes
3answers
309 views
How would I go about implementing this algorithm?
Friday afternoon seems like a good time to ask this question...
A while back I was trying to brute force a remote control which sent a 12 bit binary 'key'.
The device I made worked, but was very …
4
votes
4answers
334 views
Fastest way to bruteforce a string using a DOS wildcard
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 …
3
votes
8answers
268 views
Best practice against password-list-attacks with webapplications
Hello,
i'd like to prevent bots from hacking weak password-protected accounts. (e.g. this happend to ebay and other big sites)
So i'll set a (mem-) cached value with the ip, amount of tries and …
3
votes
4answers
389 views
Brute force , Need help
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 …
2
votes
5answers
163 views
Is the password weak under dictionary attack
Thanks for looking. All sincerely helpful answers are voted up.
I use a password strength meter to let the user know how strong the password they've chosen is. But this password checker obviously …
2
votes
3answers
447 views
What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.
Recently WiFi encryption was brute forced by using the parellel processing power of the modern GPU http://is.gd/4fhb. What other real-life problems do you think will benefit from similar techniques?
1
vote
3answers
66 views
Brute-force/DoS prevention in PHP
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:
User sends login information.
Check if username and password is …
1
vote
1answer
33 views
Moving to specific record within a DataTable
Hopefully simple, but can't find any such option.
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.
On another form that …
1
vote
1answer
212 views
Does Apache basic authentication defend brute force attacks?
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!
1
vote
2answers
464 views
Finding a legacy firebird/Interbase database password
Hi,
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 …
1
vote
7answers
793 views
Limiting user login attempts in PHP
Hi there,
I'm seeing web apps implementing limitations for user login attempts.
Is it a security necessity and, if so, why?
For example: you had three failed login attempts, let's try again in …
