How would you go about reverse engineering a set of binary data pulled from a device? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:25:12Z http://stackoverflow.com/feeds/question/115836 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/115836/how-would-you-go-about-reverse-engineering-a-set-of-binary-data-pulled-from-a-dev 4 How would you go about reverse engineering a set of binary data pulled from a device? Omar Kooheji 2008-09-22T16:18:00Z 2009-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#115849 0 Answer by workmad3 for How would you go about reverse engineering a set of binary data pulled from a device? workmad3 2008-09-22T16:19:46Z 2008-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#115858 0 Answer by nsanders for How would you go about reverse engineering a set of binary data pulled from a device? nsanders 2008-09-22T16:21:14Z 2008-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#115861 0 Answer by Vinko Vrsalovic for How would you go about reverse engineering a set of binary data pulled from a device? Vinko Vrsalovic 2008-09-22T16:21:48Z 2008-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#115865 3 Answer by Steve Moyer for How would you go about reverse engineering a set of binary data pulled from a device? Steve Moyer 2008-09-22T16:22:14Z 2008-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#115883 0 Answer by curtisk for How would you go about reverse engineering a set of binary data pulled from a device? curtisk 2008-09-22T16:24:20Z 2008-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#115920 0 Answer by freespace for How would you go about reverse engineering a set of binary data pulled from a device? freespace 2008-09-22T16:28:24Z 2008-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>