How could I guess a checksum algorithm? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T13:15:48Z http://stackoverflow.com/feeds/question/149617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm 5 How could I guess a checksum algorithm? dpavlin 2008-09-29T16:56:37Z 2009-07-08T14:33:21Z <p>Let's assume that I have some packets with a 16-bit checksum at the end. I would like to guess which checksum algorithm is used.</p> <p>For a start, from dump data I can see that one byte change in the packet's payload totally changes the checksum, so I can assume that it isn't some kind of simple XOR or sum.</p> <p>Then I tried <a href="http://svn.rot13.org/index.cgi/RFID/view/guess-crc.pl" rel="nofollow">several variations of CRC16</a>, but without much luck.</p> <p>This question might be more biased towards cryptography, but I'm really interested in any easy to understand statistical tools to find out which CRC this might be. I might even turn to <a href="http://lcamtuf.coredump.cx/newtcp/" rel="nofollow">drawing different CRC algorithms</a> if everything else fails.</p> <p>Backgroud story: I have serial RFID protocol with some kind of checksum. I can replay messages without problem, and interpret results (without checksum check), but I can't send modified packets because device drops them on the floor. </p> <p>Using existing software, I can change payload of RFID chip. However, unique serial number is immutable, so I don't have ability to check every possible combination. Allthough I could generate dumps of values incrementing by one, but not enough to make exhaustive search applicable to this problem.</p> <p><a href="http://www.bljak.org/~dpavlin/rfid-serial-dump.tar.gz" rel="nofollow">dump files with data</a> are available if question itself isn't enough :-)</p> <p><strong>Need reference documentation?</strong> <a href="http://www.geocities.com/SiliconValley/Pines/8659/crc.htm" rel="nofollow">A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS</a> is great reference which I found after asking question here.</p> <p>In the end, after very helpful hint in accepted answer than it's CCITT, I <a href="http://www.zorc.breitbandkatze.de/crc.html" rel="nofollow">used this CRC calculator</a>, and xored generated checksum with known checksum to get 0xffff which led me to conclusion that final xor is 0xffff instread of CCITT's 0x0000.</p> http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/149663#149663 1 Answer by Martin Cote for How could I guess a checksum algorithm? Martin Cote 2008-09-29T17:03:06Z 2008-09-29T17:03:06Z <p>You would have to try every possible checksum algorithm and see which one generates the same result. However, there is no guarantee to what content was included in the checksum. For example, some algorithms skip white spaces, which lead to different results.</p> <p>I really don't see why would somebody want to know that though.</p> http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/149715#149715 1 Answer by DGentry for How could I guess a checksum algorithm? DGentry 2008-09-29T17:15:42Z 2008-09-29T17:15:42Z <p>It might not be a CRC, it might be an error correcting code like Reed-Solomon.</p> <p>ECC codes are often a substantial fraction of the size of the original data they protect, depending on the error rate they want to handle. If the size of the messages is more than about 16 bytes, 2 bytes of ECC wouldn't be enough to be useful. So if the message is large, you're most likely correct that its some sort of CRC.</p> http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693 5 Answer by selwyn for How could I guess a checksum algorithm? selwyn 2008-10-01T17:14:13Z 2008-10-02T14:40:37Z <p>There are a number of variables to consider for a CRC:</p> <pre><code>Polynomial No of bits (16 or 32) Normal (LSB first) or Reverse (MSB first) Initial value How the final value is manipulated (e.g. subtracted from 0xffff), or is a constant value </code></pre> <p>Typical CRCs:</p> <pre><code>LRC: Polynomial=0x81; 8 bits; Normal; Initial=0; Final=as calculated CRC16: Polynomial=0xa001; 16 bits; Normal; Initial=0; Final=as calculated CCITT: Polynomial=0x1021; 16 bits; reverse; Initial=0xffff; Final=0x1d0f Xmodem: Polynomial=0x1021; 16 bits; reverse; Initial=0; Final=0x1d0f CRC32: Polynomial=0xebd88320; 32 bits; Normal; Initial=0xffffffff; Final=inverted value ZIP32: Polynomial=0x04c11db7; 32 bits; Normal; Initial=0xffffffff; Final=as calculated </code></pre> <p>The first thing to do is to get some samples by changing say the last byte. This will assist you to figure out the number of bytes in the CRC. </p> <p>Is this a "homemade" algorithm. In this case it may take some time. Otherwise try the standard algorithms.</p> <p>Try changing either the msb or the lsb of the last byte, and see how this changes the CRC. This will give an indication of the direction.</p> <p>To make it more difficult, there are implementations manipulate the CRC so that it will not affect the communications medium (protocol).</p> <p>From your comment about RFID, it implies that the CRC is communications related. Usually CRC16 is used for communicated, though CCITT is also used on some systems.</p> <p>On the other hand, if this is UHF RFID tagging, then there are a few CRC schemes - a 5 bit one and some 16 bit ones. These are documented in the ISO standards and the IPX data sheets.</p> <pre><code>IPX: Polynomial=0x8005; 16 bits; Reverse; Initial=0xffff; Final=as calculated ISO 18000-6B: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated ISO 18000-6C: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated Data must be padded with zeroes to make a multiple of 8 bits ISO CRC5: Polynomial=custom; 5 bits; Reverse; Initial=0x9; Final=shifted left by 3 bits Data must be padded with zeroes to make a multiple of 8 bits EPC class 1: Polynomial=custom 0x1021; 16 bits; Reverse; Initial=0xffff; Final=post processing of 16 zero bits </code></pre> <p><strong>Here is your answer!!!!</strong></p> <p><strong>Having worked through your logs, the CRC is the CCITT one. The first byte 0xd6 is excluded from the CRC.</strong></p> http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/1098489#1098489 0 Answer by NEO for How could I guess a checksum algorithm? NEO 2009-07-08T14:33:21Z 2009-07-08T14:33:21Z <p>I Need calculate the checksum operation.. I have the source and the result. but I dont know the operation that do.. If you could Help me .. please reply.. Thank You</p> <p>Example :</p> <p>HostIP="192.9.200.154" CheckSum="fl/L+Zc7a8ACiGm3APAb/dPBMaZ0ruFY"/</p> <p>How It convert the Ip Address to Checksum?... </p> <p> </p>