How would you go about reverse engineering a set of binary data pulled from a device? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T18:25:12Zhttp://stackoverflow.com/feeds/question/115836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev4How would you go about reverse engineering a set of binary data pulled from a device?Omar Kooheji2008-09-22T16:18:00Z2009-01-08T18:06:07Z
<p>A friend of mine brought up this questiont he other day, he's recently bought a garmin heart rate moniter device which keeps track of his heart rate and allows him to upload his heart rate stats for a day to his computer.</p>
<p>The only problem is there are no linux drivers for the garmin USB device, he's managed to interpret some of the data, such as the model number and his user details and has identified that there are some binary datatables essentially which we assume represent a series of recordings of his heart rate and the time the recording was taken.</p>
<p>Where does one start when reverse engineering data when you know nothing about the structure? </p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115849#1158490Answer by workmad3 for How would you go about reverse engineering a set of binary data pulled from a device?workmad32008-09-22T16:19:46Z2008-09-22T16:19:46Z<p>I'd suggest you start with checking the legality of reverse engineering in your country of origin. Most countries have very strict laws about what is allowed and what isn't regarding reverse engineering devices and code.</p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115858#1158580Answer by nsanders for How would you go about reverse engineering a set of binary data pulled from a device?nsanders2008-09-22T16:21:14Z2008-09-22T16:21:14Z<p>Can you synthesize a heart beat using something like a computer speaker? (I have no idea how such devices actually work). Watch how the binary results change based on different inputs.</p>
<p>Ripping apart the device and checking out what's inside would probably help too.</p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115861#1158610Answer by Vinko Vrsalovic for How would you go about reverse engineering a set of binary data pulled from a device?Vinko Vrsalovic2008-09-22T16:21:48Z2008-09-22T16:21:48Z<p>I'd start looking at the data in a hexadecimal editor, hopefully a good one which knows the most common encodings (ASCII, Unicode, etc.) and then try to make sense of it out of the data you know it has stored.</p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115865#1158653Answer by Steve Moyer for How would you go about reverse engineering a set of binary data pulled from a device?Steve Moyer2008-09-22T16:22:14Z2008-09-22T16:22:14Z<p>I had the same problem and initially found this project at Google Code that aims to complete a cross-platform version of tools for the Garmin devices ... see: <a href="http://code.google.com/p/garmintools/" rel="nofollow">http://code.google.com/p/garmintools/</a>. There's a link on the front page of that project to the protocols you need, which Garmin was thoughtful enough to release publically.</p>
<p>And here's a direct link to the Garmin I/O specification: <a href="http://www.garmin.com/support/pdf/IOSDK.zip" rel="nofollow">http://www.garmin.com/support/pdf/IOSDK.zip</a></p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115883#1158830Answer by curtisk for How would you go about reverse engineering a set of binary data pulled from a device?curtisk2008-09-22T16:24:20Z2008-09-22T16:24:20Z<p>As another poster mentioned, reverse engineering can be hairy, not in practice but in legality. </p>
<p>That being said, you may be able to find everything related to your root question at hand by checking out this project and its' code...and they do handle the runner's heart rate/GPS combo data as well</p>
<p><a href="http://www.gpsbabel.org/" rel="nofollow">http://www.gpsbabel.org/</a></p>
http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev/115920#1159200Answer by freespace for How would you go about reverse engineering a set of binary data pulled from a device?freespace2008-09-22T16:28:24Z2008-09-22T16:28:24Z<p>I would start by seeing what data is being sent by the device, then consider how such data could be represented and packed. </p>
<p>I would first capture many samples, and see if any pattern presents itself, since heart beat is something which is regular and that would suggest it is measurement related to the heart itself. I would also look for bit fields which are monotonically increasing, as that would suggest some sort of time stamp.</p>
<p>Having formed a hypothesis for what is where, I would write a program to test it and graph the results and see if it makes sense. If it does but not quite, then closer inspection would probably reveal you need some scaling factors here or there. It is also entirely possible I need to process the data first before it looks anything like what their program is showing, i.e. might need to integrate the data points. If I get garbage, then it is back to the drawing board :-)</p>
<p>I would also check the manufacturer's website, or maybe run <code>strings</code> on their binaries. Finding someone who works in the field of biomedical engineering would also be on my list, as they would probably know what protocols are typically used, if any. I would also look for these protocols and see if any could be applied to the data I am seeing.</p>