Chander Shivdasani
Chander Shivdasani

Reputation: 10121

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 program to read this file and store its contents in a hashmap. I need to do this for a project of mine.

I tried googling and also went through the forums, but no luck so far. Any help/links will be appreciated.

Upvotes: 2

Views: 4122

Answers (3)

Anton Semenov
Anton Semenov

Reputation: 6347

You may check rainbow table file specification - http://project-rainbowcrack.com/file_format.htm

Upvotes: 1

Martin
Martin

Reputation: 1

RTI and RT is both binary formats and contains only 64 bit numbers. A 64 bit starting point and a 64 bit endingpoint. The difference between RTI and RT is RTI packs the numbers while RT stores them in their raw format. To find out how to extract the plaintexts from the RT files, I suggest you take a look at rtdump (google it)

Upvotes: 0

Teetrinker
Teetrinker

Reputation: 575

Perhaps it helps what is written on their page:

The tables are in a custom format to save disk space (50%!). To make use of them, use rcracki (rcrack improved) which can be downloaded from our download page If you want original rainbowcrack tables to use with other programs than rcracki, then you can convert the tables using rti2rto which also can be found on our download page

(see: http://freerainbowtables.com/en/tables/)

I don't knwo if rto is any better for you than rti, but I'd suggest to give it a try.

Upvotes: 2

Related Questions