6/24/2014
w00tsec: Unpacki ng Fir mwar e Imag es fr om Cabl e Modems More
Next Blog»
Create Blog Sign In
w00t w 00tsec sec embedded device & webapp hacking
MONDAY, MOND AY, NOVEMBER 11, 2013
Unpacking Firmware Images from from Cable Modems Modems Hacking Cable modems modems used used to be very popular during the early 2000’s. People like DerEngel and Isabella from Isabella from TCNiSO carried lots of research on the topic and talks from bitemytaco (R.I.P) and BlakeSelf during DEFCON 16 and 16 and DEFCON 18 covered 18 covered lots of information on the subject. Securing cable modems is more difficult than other embedded devices because, on most cases, you can’t choose your own device/firmware and software updates are ar e alm almost ost entirely controlled by your ISP. Most cable modems offer a limited administrative interface and managemen managementt commands comm ands are sent using SNMP. Cable Modem Firmware
There are basically three types of firmware images for cable modems: - Signed and compresed (PKCS#7 & binary) - Compressed binary images - RAM dump images (uncompressed & r aw)
ABOUT ME
Bernardo Rodrigues
View my my complete p rofile TWITTER
@bernardomr BLOG ARCHIVE
► 2014 2014 (2) (2) ▼ 2013 (5) 2013 (5) ► December December (1) (1) ▼ November (1) November (1) Unpacking Firmware Images from Cable Modems ► September September (1) (1) ► August August (2) (2)
You can dump your own firmware image using JTAG JTAG or or sniffing the connection during upgrades, for example. ex ample. I’m a big fan of binwalk binwalk and and I always wondered why it doesn't unpack firmwares from popular Broadcom based cable modems so I decided to research on this. Unpacking the Firmware
For this analysis I’ll use Cisco DPC3925, DPC3925, which is a very common DOCSIS 3.0 modem here in Brazil. Cisco DPC3925 has a BCM3380 BCM3380 chipset, chipset, 16MB Flash x 64MB DRAM memory configuration.
The compressed firmware image has around 4MB. Using strings against the file didn't help much and binwalk v1.2.1 (without any additional parameters) did not recognize it.
http://w00tsec.bl og spot.com/2013/11/unpacki ng - fir mwar e- imag es- fr om- cabl e.html
1/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
We can gather lots of useful information from the vendor’s page: user guides, datasheets, licensing information and open source disclaimer for the product. There are no sources available on Cisco's home, but the Copyright Notices section states that the product uses LZMA SDK 4.21.
So we know that the firmware is probably packed using LZMA but we still need to figure out how to unpack it. Binwalk -i displays results marked as invalid during the scan and we might get some clue:
The LZMA header is not well documented. There are some good resources on lzma-purejs Github and you can also check binwalk's magic file signatures (devttys0 already did all the hard work for us).
Offset Size 0 1 1 4 5 8
Description lc, lp and pb in encoded form dictSize (little endian) uncompressed size (little endian)
The Bootloader in the beggining of the flash contains the necessary information to boot the firmware image. On the top of the firmware there's always an extractor which decompress the firmware into DRAM.
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
2/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
Offset 0x677 is a good candidate because it's located in the beginning of the file and it seems to have a valid header. 5D 00 00 00 01 indicates a LZMA compression level of -8 and the next 64 bits should be the data's uncompressed size (in little endian).
The 64 bits following the header (00 20 20 0E 3A 28 AB EF) is clearly not a valid uncompressed size (2898643604054482944 bytes). It represents the actual compressed data, making binwalk and 7zr unable to extract it. What we need to do here is append a few extra bytes to the header so our regular 7zr binary can recognize and extract the data. We don't know the uncompressed size for the firmware yet: the good news is that we can append and specify a big value here, allowing 7zr utility to unpack it (although complaining that the EOF was reached too early). Let's specify 268435456 bytes (256MB), convert it to little endian (00 00 00 10 00 00 00 00) and append it to the original LZMA header. The new header should be something like ... 5D 00 00 00 01 00 00 00 10 00 00 00 00 00 20 20 ... I took the opportunity to have a look on binwalk's API and wrote a simple lzma-unpacker.py:
1 2 3 4 5 6 7 8 9 10 11
#!/usr/bin/python import os, sys from binwalk import Binwalk def lzma_callback(offset, results): for result in results: if result['description'].startswith('LZMA compressed data, p with open(sys.argv[1]) as f: f.seek(result['offset'])
lzma_header = f.read(5)
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
3/10
6/24/2014 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
w00tsec: Unpacking Firmware Images from Cable Modems
uncompressed_size = '\x00\x00\x00\x10\x00\x00\x00\x0
data = f.read()
output = open(sys.argv[1]+'.lzma', 'w')
output.write(lzma_header+uncompressed_size+data) f.close()
if __name__ == '__main__':
nargs = len(sys.argv) if nargs != 2: print '\ \nLZMA Unpacker: Extract LZMA sections from firmware images\n\ \nTested with the following Cable Modems:\n\ - Cisco DPC3925, DPC2434\n\ - Motorola SB5100, SB5101, SVG6582, SVG1202\n\ - Thomson ACG905, DCM425, DHG534, DHG544, DWG850, DWG874\n\ - Webstar DPC2203\n\ \nBernardo Rodrigues, http://w00tsec.blogspot.com\n\ \nUsage: %s firmware_image.bin' % os.path.basename(sys.argv[0])+'\ else: with Binwalk() as bw: try: with open(sys.argv[1], 'rb'): bw.display.header() bw.scan(sys.argv[1], callback=lzma_callback, sho try: with open(sys.argv[1]+'.lzma', 'rb'): bw.extractor.add_rule('lzma:7z:7zr e -y bw.scan(sys.argv[1]+'.lzma', callback=bw. except Exception: print 'LZMA 0x5D signature not found' exit except IOError: print 'File not found: '+sys.argv[1]
lzma-unpacker.py hosted with
by GitHub
❤
view ra w
This code will be obsolete in a couple of days because I'm pretty sure Binwalk incorporate this (a plugin maybe?)
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
4/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
The data was extracted successfully and contains 21982740 bytes. If we replace the uncompressed size on the LZMA header with the correct value in Little Endian (14 6E 4F 01 00 00 00 00), the 7zr tool would not complain about the file integrity.
Most Broadcom cable modems are packed this way, including the ones manufactured by different vendors. The script was fully tested and works fine for the following models: - Cisco DPC3925, DPC2434 - Motorola SB5100, SB5101, SVG6582, SVG1202 - Thomson ACG905, DCM425, DHG534, DHG544, DWG850, DWG874 - Webstar DPC2203 Firmware Analysis
Now that you successfully unpacked the firmware, here's a couple of cool things you should do: - Find default passwords
- Find backdoors
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
5/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
- Pentest the Web Application
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
6/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
- Fingerprint your device and submit to NMAP - Find similar devices using scans.io dataset - Mail HD Moore a copy of the firmware and wait for the CVE Spam Posted by Bernardo Rodrigues at 11:16 AM +22 Recommend this on Google
Labels: acg905, binwalk, cable modem, dcm425, dhg534, dhg544, dpc2203, dpc2434, dpc3925, dwg850, dwg874, firmware, lzma, sb5100, sb5101, svg1202, svg6582, unpack
17 comments: Luiz Felipe November 11, 2013 at 11:40 PM
Ótima análise do firmware, parabéns pelo texto! Sobre o bootloader, é possível fazer uma análise dele para habilitar o console via serial? Reply Replies Bernardo Rodrigues
November 11, 2013 at 11:52 PM
Hi Luiz, OpenWRT' s wiki has some useful information about DPC3825/EPC3825, which has the same chipset (BCM3380) and probably the same bootloader as the DPC3925: http://wiki.openwrt.org/toh/cisco/epc3825 Reply
Damien O'Reilly November 12, 2013 at 8:49 AM
What way did you dump the firmware? I have an EPC3925 and would like to see if I can retrieve the firmware off it.
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
7/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems Reply Replies Bernardo Rodrigues
November 12, 2013 at 11:26 AM
You can follow instructions from http://www.usbjtag.com/vbforum/showthread.php?p=55977 http://www.usbjtag.com/vbforum/showthread.php?p=55341
USBJTAG
forums: and
Damien O'Reilly November 12, 2013 at 12:06 PM
Cheers thanks. I actually read these threads earlier today! DO you use USB JTAG? I was thinking in investing in one of these. But th is area is pretty n ew to me.
Bernardo Rodrigues
November 13, 2013 at 11:21 PM
Hi Damien, I currently own a FlashcatUSB (http://www.embeddedcomputers.net/products/FlashcatUSB/) which is older and cheaper. USBJTAG NT has the best support and compatibility out there and their software is very good. If you just want to test these firmwares you can also download dumps from their forums (http://www.usbjtag.com/vbforum/downloads.php?do=cat&id=8) or google them =)
Damien O'Reilly November 18, 2013 at 11:33 AM
Thanks for that. I want to test the firmware specifically no my modem also as its ISP specific. Plus would learn the hardware side of things also! You hardly took a pic when you had the FlashcatUSB wired up to the SPI interface did you?
Bernardo Rodrigues
November 20, 2013 at 8:12 PM
Sorry, I didn't take pics =( Reply
MaCXyLo November 12, 2013 at 5:23 PM
Dear Bernardo, very nice Post!! Thanks for sharing. Search a long time for informations about the cisco modem's. My Provider rent my router as a modem (because it have only one port). Can't bridge the device... Did you found any backdoor for ssh / telnet (e.g. a Web-GUI) activation ? I ordered already parts to read out the firmware. Pictures of the board and my previous informations: http://www.haxorware.com/forums/thread-2824.html Kind Regards MaCXyLo Reply Replies Bernardo Rodrigues
November 13, 2013 at 11:39 PM
Hi MaCXyLo, I did not have much time to test it yet. Some modems like the Webstar DPC2100 have a firmware upgrade page at specific URI's (http://192.168.100.1/__swdld.asp). Try to carve and find HTML pages (using foremost or the latest binwalk-dev), analyze the strings, search for *.asp to identify hidden pages and */goform/*, which is used for dynamic actions. The modem is MIPS-based, you can also try reverse engineering it with IDA Pro.
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
8/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems Reply
Mike December 17, 2013 at 5:26 AM
Awesome post! Just discovered this while I was looking for CMImageTool ;) This is way better. Any chance of adding support for SBG6580? Join us on #surboard_hacker sometime. Will be nice to chat with you. Reply Replies Mike December 19, 2013 at 5:58 PM
SBG6580 disassembles just fine using the same commands. You can add it to the list of devices it works on.
Bernardo Rodrigues
December 26, 2013 at 8:15 PM
Hey Mike, I didn't have a copy of the SBG6580 firmware and I couldn't test back then, thanks for letting me know. Firmwares for most broadcom based cable modems are packed this way. Anyway, newer versions of binwalk already have a plugin to unpack them, check it later on: http: //binwalk.org/lzmamod-plugin/
Mike December 28, 2013 at 1:16 PM
Thanks for the reply Bernardo. Nice to see binwalk just enable it as a plugin by default, sure is coming in handy. Btw ever work with the backdoor that says 255.255-255.255 ? (Notice how it seems there is a dash - instead of dot . between the 2nd and 3rd 255)
Bernardo Rodrigues
February 16, 2014 at 10:18 PM
Hey Mike, sorry for the late reply. Regarding the 255.255-255.255 backdoor, I didn't spend much time reversing it, as you may noticed that was a simple recursive grep, but it may reveal some interesting info. Reply
magnex April 9, 2014 at 9:15 PM
Reply Replies magnex April 9, 2014 at 9:19 PM
Will this method work for Cisco DPC3000 modems also? (it's Puma 5 base d) Reply
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
9/10
6/24/2014
w00tsec: Unpacking Firmware Images from Cable Modems
Enter your comment...
Comment as:
Publish
Google Accou
Preview
Newer Post
Home
Older Post
Subscribe to: Post Comments (Atom)
Picture Window template. Powered by Blogger.
http://w00tsec.blogspot.com/2013/11/unpacking-firmware-images-from-cable.html
10/10