vote up 1 vote down star

I'm looking for a way to reverse a CRC32 checksum. There are solutions around, but they are either badly written, extremely technical and/or in Assembly. Assembly is (currently) beyond my ken, so I'm hoping someone can piece together an implementation in a higher level language. Ruby is ideal, but I can parse PHP, Python, C, Java, etc.

Any takers?

flag
What exactly do you mean by 'reverse' – Frank Bollack Oct 3 at 15:53

3 Answers

vote up 7 vote down check

A CRC32 is only reversible if the original string is 4 bytes or less.

link|flag
I doubt crc will generate a unique 32-bit code for every string combo 4 bytes or less ... – Goz Oct 3 at 15:39
If you look at the implementation, for 4 bytes it will do 3 8-bit shifts with only XOR operations, so yes, it is reversible: sanity-free.org/12/… – Cade Roux Oct 3 at 15:43
This is what I'd initially thought, and then had people send the links mentioned above my way... obviously, the fact it's limited to 4 bytes was glossed over. Thanks for the clarification. – pat Oct 3 at 15:53
If CRC is based on primitive polynomial what usualy is, that mean that it will return uniqe key for every of 2^32 imputs. – ralu Oct 5 at 0:38
vote up 0 vote down

Cade Roux Is right about reversing CRC32.

The links you mentioned provide a solution to fix a CRC that has become invalide by altering the original byte stream. This fix is achieved by changing some (unimportant) bytes and so recreate the original CRC value.

link|flag
Or hacking the stream so that the CRC is unchanged while important data (like anti-piracy code) is changed. – Cade Roux Oct 3 at 16:14
vote up 0 vote down

Read this fine document.

This is C#:

public class Crc32
{
    public const uint poly = 0xedb88320;
    public const uint startxor = 0xffffffff;

    static uint[] table = null;
    static uint[] revtable = null;

    public void FixChecksum(byte[] bytes, int length, int fixpos, uint wantcrc)
    {
        if (fixpos + 4 > length) return;

        uint crc = startxor;
        for (int i = 0; i < fixpos; i++) {
            crc = (crc >> 8) ^ table[(crc ^ bytes[i]) & 0xff];
        }

        Array.Copy(BitConverter.GetBytes(crc), 0, bytes, fixpos, 4);

        crc = wantcrc ^ startxor;
        for (int i = length - 1; i >= fixpos; i--) {
            crc = (crc << 8) ^ revtable[crc >> (3 * 8)] ^ bytes[i];
        }

        Array.Copy(BitConverter.GetBytes(crc), 0, bytes, fixpos, 4);
    }

    public Crc32()
    {
        if (Crc32.table == null) {
            uint[] table = new uint[256];
            uint[] revtable = new uint[256];

            uint fwd, rev;
            for (int i = 0; i < table.Length; i++) {
                fwd = (uint)i;
                rev = (uint)(i) << (3 * 8);
                for (int j = 8; j > 0; j--) {
                    if ((fwd & 1) == 1) {
                        fwd = (uint)((fwd >> 1) ^ poly);
                    } else {
                        fwd >>= 1;
                    }

                    if ((rev & 0x80000000) != 0) {
                        rev = ((rev ^ poly) << 1) | 1;
                    } else {
                        rev <<= 1;
                    }
                }
                table[i] = fwd;
                revtable[i] = rev;
            }

            Crc32.table = table;
            Crc32.revtable = revtable;
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.