Tagged Questions
The brute-force tag has no wiki summary.
57
votes
15answers
4k 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 ...
37
votes
7answers
4k 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 ...
19
votes
10answers
2k 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 ...
17
votes
4answers
599 views
How does being able to factor large numbers determine the security of popular encryption algorithms?
How is the an encryption algorithm's security dependent on factoring large numbers?
For example, I've read on some math-programming forums that by using the Quadratic Sieve or the General Number ...
12
votes
15answers
1k 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, ...
11
votes
3answers
233 views
Another algorithm problem
I am given N numbers and for them apply M rules about their order. The rules are represented in a pairs of indexes and every pair (A, B) is telling that the number with index A (A-th number) must be ...
10
votes
10answers
501 views
Do similar passwords have similar hashes?
Our computer system at work requires users to change their password every few weeks, and you cannot have the same password as you had previously. It remembers something like 20 of your last passwords. ...
10
votes
3answers
380 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 ...
7
votes
3answers
757 views
How do brute force decryption attacks know when they've found the right solution? [closed]
How do brute-force attacks on encrypted data know when they've found the right key to decrypt the data? Is there a way to know that data's been decrypted, other than having a human looking at it? What ...
7
votes
2answers
903 views
Number of attempts to brute force an average password / non intrusive yet meaningful limits?
There are several useful answers on SO regarding prevention of brute forcing a password of a web service by applying throttling. I couldn't find any good numbers though and I have little expertise in ...
7
votes
6answers
2k views
PHP: Anti-Flood/Spam system
I'm actually working on a PHP project that will feature a user system (Login,Register,Send lost password to email,..) and I think that this may be very vulnerable to Brute-Force attacks and/or Spam ...
6
votes
8answers
422 views
increasing time delay for login to stop bruteforcing, good idea?
I have set up my db to log every failed login attempt. I thought I would multiply the number of failed attempts with 0.05 seconds or something. Something like:
time_nanosleep(0, (50000000 ...
6
votes
3answers
210 views
Finding pixels that make an image unique within a list, can you improve on brute force?
Suppose I have a list of strings where each string is
exactly 4 characters long and
unique within the list.
For each of these strings I want to identify the position of the characters within the ...
6
votes
4answers
775 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 ...
5
votes
1answer
92 views
How can I prevent brute-force attacks?
I'm working on authentication and adding brute-force protection. I'm not sure how I should proceed.
Should I just do a flat block after 15 failed attempts for a certain IP address... or should I tie ...
5
votes
3answers
2k views
Spring Security: how to implement Brute Force Detection (BFD)?
My web applications security is handled by Spring Security 3.02 but I can't find any out of the box support for Brute Force Detection.
I would like to implement some application level BFD ...
5
votes
7answers
647 views
How can I randomly iterate through a large Range?
I would like to randomly iterate through a range. Each value will be visited only once and all values will eventually be visited. For example:
class Array
def shuffle
ret = dup
j ...
5
votes
8answers
5k views
Limiting user login attempts in PHP
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 10 ...
4
votes
2answers
101 views
Sessions brute forcing
How feasible is it to brute force sessions?
I'm currently using CodeIgniter database sessions, which does not utilize native PHP sessions - session cookie encryption and user agent matching is turned ...
4
votes
2answers
531 views
PHP brute force password generator
Basically what I want is to be able to input an number and get a password build from a string or unique characters.
So if I have two characters in the string : $string = "AB";
These would be the ...
4
votes
2answers
116 views
Iterate through all trees of a given size
I am often faced with the problem of checking some property of trees (the graph ones) of a given size by brute force. Do you have any nice tricks for doing this? Ideally, I'd like to examine each ...
4
votes
3answers
198 views
Finding the maximum area in given binary data
I have a problem with describing algorithm for finding maximum rectangular area of binary data, where 1 occurs k-times more often than 0. Data is always n^2 bits like this:
For example data for n = 4 ...
4
votes
3answers
1k 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. What other real-life problems do you think will benefit from similar techniques?
3
votes
4answers
293 views
Using multiple threads to bruteforce passwords
I'm working on my 10th grade science fair project right now and I've kind of hit a wall. My project is testing the effect of parallelism on the efficiency of brute forcing md5 password hashes. I'll be ...
3
votes
2answers
161 views
Multithreading with inline assembly and access to a c variable
I'm using inline assembly to construct a set of passwords, which i will use to brute force against a given hash. I used this website as a reference for the construction of the passwords.
This is ...
3
votes
2answers
221 views
How to structure this OpenCL brute-force code
I'm just starting to play about with OpenCL, and I'm stuck with how to structure the program in a reasonably efficient manner (mainly avoiding lots of transferring of data to/from the GPU or wherever ...
3
votes
3answers
169 views
Choosing passwords more resilient to brute force attacks
To increase the number of attempts required for a brute force attack to succeed, is it best to choose passwords that are not only long, but that are also weighted towards higher valued numerical ...
3
votes
4answers
317 views
Breaking 224-bit Blowfish encryption
I have a bunch of encrypted files that I want to decrypt (duh). I found out they are encrypted with Blowfish using a 224-bit key after some research. I know what the first few bytes of the plaintext ...
3
votes
5answers
796 views
Brute force magic squares
Basically I have a 3 x 3 grid that is filled with two digit numbers 00 - 99. Some of the numbers are given as input the rest are unknown. What are some suggestions on how to solve such a problem with ...
3
votes
1answer
135 views
Security question: excessive Drupal requests from a single user account
I've notice some strange behaviour on my Drupal site. I like to understand the data I'm looking at before I take action so that I don't waste time pursuing the wrong measures, but I'm lacking security ...
3
votes
5answers
1k views
Generating every character combination up to a certain word length
I am doing a security presentation for my Computer and Information Security course in a few weeks time, and in this presentation I will be demonstrating the pros and cons of different attacks ...
3
votes
1answer
414 views
How can I force the user to fill out a captcha after a specific number of failed login attempts with authlogic?
I'm trying to secure my rails 3 app against brute force login guessing. I'm using authlogic. What's the best way to force a user (or bot) to fill out a captcha after a specific number of failed login ...
3
votes
3answers
503 views
Securing private keys against brute force attacks on mobile devices
I have a mobile application where I would like to store private keys securely. The security requirement implies that it should be very hard for attackers to be able to obtain the private key even if ...
3
votes
3answers
1k 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 ...
3
votes
8answers
353 views
Best practice against password-list-attacks with webapplications
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 timestamp of ...
3
votes
4answers
732 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
2answers
71 views
Guessing a string with time comparison. Is it possible?
I was wondering about a strange idea: you are given and algorithm wich takes a string in input and compares it to a string that you don't know. The algoritm is just a trivial comparison, one char at a ...
2
votes
2answers
700 views
How long to brute force a salted SHA-512 hash? (salt provided)
Here is the algorithm in Java:
public String getHash(String password, String salt) throws Exception {
String input = password + salt;
MessageDigest md = MessageDigest.getInstance(SHA-512);
...
2
votes
3answers
631 views
OpenCV different output results using a BruteForceMatcher over two different runtimes with same input
Intro :
First and as an introduction, i am quite "proud" to ask my first question on StackOverflow. I hope I'll be able to help other people as much as they help me.
Context :
I am developping an ...
2
votes
3answers
140 views
Database for brute force solving board games
A few years back, researchers announced that they had completed a brute-force comprehensive solution to checkers.
I have been interested in another similar game that should have fewer states, but is ...
2
votes
2answers
2k views
Forgot Keystore password, thinking of Brute-Force detection. will it corrupt the keystore?
I recently realized that I have lost the password to my keystore (or perhaps the keystore got corrupted somehow)
It keeps giving me the error: Keystore tampered or password incorrect
I created an ...
2
votes
3answers
429 views
Calculate all combinations of a given character set, for brute force matching?
In practising multithreading, I had wished to simply build an application that could calculate all possible combinations of a character set (i.e. brute force cracking/matching) and distributing work ...
2
votes
2answers
147 views
What would be an efficient way to add multithreading to this simple algorithm?
I would say my knowledge in C is fair, and I wish to extend a program to enhance my knowledge of parallel programming.
It essentially the program I am refering to is a brute force generator, to ...
2
votes
6answers
67 views
Locking data for x days
Is there an (easy) way to encrypt data so that it takes a certain amount of cpu hours to decrypt it? Maybe a series of encryptions with short key lengths, a variable one-way function or anything?
...
2
votes
1answer
80 views
Does GAE/Java offer any brute force protection if you don't use Google Accounts for authentication?
I'm making a Java web app on Google App Engine.
Do I need to roll my own brute force protection for my login system - since I'm not using Google Accounts for the user accounts in my system?
Or are ...
2
votes
5answers
168 views
Are there any security measures that are resistant to a brute force attack?
I'm not talking in particular about encryption, but security as a whole. Are there any security measures that can be put in place to protect data and/or a system that can withstand even a hypothetical ...
2
votes
3answers
1k views
Bruteforce GPG passphrase using script
I have forgotten my passphrase for my gpg key on linux. Can someone please help me write a simple script to use bruteforce to crack the key? I remember some of the words which MIGHT be in the ...
2
votes
3answers
382 views
PHP's crypt challenge
A friend gave me a challenge: he encrypted a string using PHP's crypt function (CRYPT_STD_DES) (from PHP4). I know the salt used to encrypt, and as crypt is a one-way algorithm I must use brute-force ...
2
votes
4answers
576 views
Brute force attack failsafe login in asp.net
I just read an article saying that passwords with 7 characters are no longer safe. However, if the server increases the time to retry a login attempt after each login attempt, then brute force attacks ...
2
votes
3answers
789 views
Brute-force sudoku solver: backtracking?
An implementation of a brute-force algorithm to solve Sudoku puzzles fails if a cell is discovered in which placing any of the digits 1-9 would be an illegal move.
The implementation is written in C, ...