A rainbow table is a precomputed table for reversing cryptographic hash functions, usually for cracking password hashes.

learn more… | top users | synonyms

-3
votes
2answers
61 views

How can I sanitise input for a hash converter in PHP? [closed]

I have made a website that generates hashes from users inputting plain text, a user can enter a word/ phrase and select from MD5 or SHA1 (or both). The site then takes this input and converts it into ...
0
votes
5answers
154 views

Passwords hash protection against “Rainbow tables” reverse engineering with password padding

I've come across this article describing the dangers of storing "unsalted" password hashes in the database that could be subject to reverse engineering with the use of so-called "Rainbow tables". It ...
-1
votes
1answer
171 views

Rainbow Tables - Hash Reduction - Java

Can you give me some advice on a good reduction function for rainbow table hashes to implement in java? The reduction functions I saw in C++ mostly used unsigned 64bit integer what Java isn't capable ...
0
votes
2answers
153 views

Why do salts stop rainbow tables? [duplicate]

Possible Duplicate: How does password salt help against a rainbow table attack? Before you mention it, I already read this question. I didn't follow. Here's my understand of salts/rainbow ...
0
votes
1answer
137 views

What length of passwords do rainbow tables go to?

My bank limits my password to 14 characters and I suspect they're encrypting with MD5 or an SHA hash, unsalted. Are there rainbow tables that contain every possible hash up to 14 characters?
0
votes
2answers
78 views

How does salting protect against an attacker with access to your password hashes?

I've read a fair few questions on password salting and mostly they cover the stuff that (I think) I already understand. That is; the point of including a random salt in your password hashes is firstly ...
5
votes
6answers
1k views

is there a way to reverse a hash without rainbow tables? [duplicate]

Possible Duplicate: md5 decoding. How they do it? this page suggests that a hash algorithm like md5() and sha1() can be reversed because of the huge processing power that we have nowadays. ...
6
votes
4answers
175 views

Are Rainbow Tables Attacks even a threat?

let's just assume a simple non salted hash function, just a plain old $hash = md5($pass). Premises: the password hashing all takes place server side, and the hashes are stored in the database. The ...
7
votes
3answers
964 views

How does a reduction function used with rainbow tables work?

I've carefully read about rainbow tables and can't get one thing. In order to build a hash chain a reduction function is used. It's a function that somehow maps hashes onto passwords. This article ...
0
votes
3answers
925 views

Reading rainbow tables from freerainbowtables.com

I have downloaded Rainbow Tables from freerainbowtables.com. Its extension is .rti . I was wondering if there is a way to read this file as a text file or anyother file. I want to write a simple ...
0
votes
1answer
112 views

Which hashing algorithm was used for that String? [closed]

Can someone figure out the hash function that was used for these strings/hashes? password = CD0BF1EDA239C2E661334B490FB91CF1D7202F1C admin = 72B137806AAD53F4EAA41A4F16D1BEE768F7271A fyi: left side ...
3
votes
3answers
976 views

rainbow table?

Anyone know why it is called rainbow table? Just remembered we have learned there is an attack called "dictionary attack". Why it is not call dictionary?
1
vote
2answers
319 views

Developing Rainbow Tables

I am currently working on a parallel computing project where i am trying to crack passwords using rainbow tables. The first step that i have thought of is to implement a very small version of it ...
0
votes
2answers
452 views

Wikipedia rainbow tables entry

Wikipedia page for rainbow tables says: "this use of multiple reduction functions approximately doubles the speed of lookups." Assuming the "Average" position in the chain, we take a hash and run it ...
1
vote
3answers
153 views

Salting a secret with itself before storing in a DB, what are the weaknesses?

I've heard of people using this approach and would like to know what the implications are. I just know it's a bad idea! From what I understand, salting a password before storing the hash in a DB has ...
4
votes
5answers
4k views

RAR passwords, why don't rainbow tables work?

I've been looking around for encryption and I've seen several implementations of Rainbow Tables work like charm on passwords (say windows). I'm yet to see an implementation of a Rainbow attack on a ...
12
votes
3answers
1k views

Rainbow tables as a solution to large prime factoring

In explanations I've read about public key cryptography, it is said that some large number is come up with by multiplying together 2 extremely large primes. Since factoring the product of large primes ...
3
votes
1answer
454 views

Reduction functions for rainbow tables

Since chains of rainbow tables are very long, are there many different reduction functions used to reduce each hash, or are there only a handful, while using indexes to prevent merging? or something ...
0
votes
2answers
524 views

Rainbow Tables: How to defend against them?

I recently obtained the l0pht-CD for windows and tried it out on my PC and It WORKS!! http://2600hertz.wordpress.com/2009/12/22/100-windows-xp-vista-7-password-recovery/ I have also read ...
4
votes
1answer
301 views

How do chains work in Rainbow tables?

I was wondering if should one could explain in detail how chains work in rainbow tables as though you would a complete novice but with relevance to programming. I understand that a chain is 16 bytes ...
2
votes
2answers
339 views

Does a hash salt have any other use than to prevent rainbow table attacks?

I have heard that the only purpose of a salt is to prevent rainbow table attacks, but surely it must have more value than this? Would it not prevent a dictionary-based attack too? And what about ...
11
votes
7answers
549 views

Is forcing complex passwords “more important” than salting?

I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions. If I'm an attacker, and I ...
37
votes
6answers
9k views

Salt Generation and open source software

As I understand it, the best practice for generating salts is to use some cryptic formula (or even magic constant) stored in your source code. I'm working on a project that we plan on releasing as ...
4
votes
4answers
511 views

What is a dictionary attack?

When we say dictionary attack, we don't really mean a real dictionary, do we? My guess is we mean a hacker's dictionary i.e. rainbow tables, right? My point is we're not talking about someone keying ...
-2
votes
5answers
383 views

Ultimate Hash Protection - Discussion of Concepts

Ok, so the whole problem with hashes is that users don't enter passwords over 15 characters long. Most only use 4-8 characters making them easy for attackers to crack with a rainbow table. Solution, ...
0
votes
4answers
1k views

Does the hash algorithm used for password hashing affect rainbow table generation?

re question non-random-salt-for-password-hashes Mr Potato Head states that the use of md5 instead of SHA-512 makes generating rainbow tables easier? I'd have thought that once your rainbow table is ...
0
votes
3answers
2k views

Make MD5 of All Words in Wordlist

Let say we have a Wordlist with words What i want to is to Genate Them to MD5 Hashes. (Have a 30gb Wordlist, i want to make All of they to MD5) I dont care which language. This say I have The Word ...
104
votes
10answers
22k views

How does password salt help against a rainbow table attack?

I'm having some trouble understanding the purpose of a salt to a password. It's my understanding that the primary use is to hamper a rainbow table attack. However, the methods I've seen to implement ...