Home Documentation Rainbow Tables Buy Rainbow Tables Contact Us
To explain the file format of .rt rainbow table used by RainbowCrack, we generate a simple rainbow table with following command:
This command finishes instantly, and the binary data of the generated rainbow table will be:
Rainbow table consists of lots of rainbow chains. The size of each rainbow chain is 16 bytes, so the size of the table above with 3 rainbow chains will be 48 bytes. Each rainbow chain consists of an 8 byte start point (marked as red) and an 8 byte end point (marked as green).
Both the start point and the end point are 64-bit unsigned integer in little endian, representing a plaintext.
In this example, the charset is "abcdefghijklmnopqrstuvwxyz0123456789" with the plaintext length range from 1 to 7. So 0 stands for plaintext "a", 1 stands for plaintext "b", 35 stands for plaintext "9", 36 stands for plaintext "aa", and 80603140211 stands for plaintext "9999999".
The start point is generated by the rtgen program, and the end point is computed based on the start point.
The .rt rainbow table uses 64 bits for the start point, and another 64 bits for the end point.
The .rtc rainbow table introduced in RainbowCrack 1.4 uses configurable number of bits for the start point and end point. As an example, if the start point uses 25 bits and the end point uses 31 bits, one rainbow chain requires 7 bytes.
To support this level of flexibility, a simple 32 bytes file header is used in .rtc rainbow table:
Assume the encoded value of start point is s, and the encoded value of end point is e. Then the actual start/end point will be:
In the expression above, i is the index of the rainbow chain in a .rtc rainbow table. Value of the first rainbow chain will be 0, value of the second rainbow chain will be 1, and so on.
All encoded & packed rainbow chains follow the file header. Size of each rainbow chain will be:
In 1.3 and later versions of RainbowCrack, the chain_num and part_index parameters of rtgen command are used to generate start points:
The start points used in a rainbow table are:
All versions of RainbowCrack software use 64-bit to store the start point and end point of rainbow chains. So the maximum key space is:
© 2013 RainbowCrack Project