EIP=0x41414141

hacking, reversing and other stuff

Aug 16, 2017 - 1 minute read - unzip Office OpenXML golang tool

unpack Office OpenXML files

I often have to dig into Office OpenXML files (docx, xlsx, pptx). There is a bunch of reasons why i do not want to use unzip for this. For example:

  • some unzip implementations require the file to have a ‘.zip’ extension.
  • some unzip codebase is not maintained proper and has known but unfixed vulns.
  • unzip does not write to a meaningful local directory without extra argument passed.

Because of all the above and some more points i decided to write unzipOpenXML

Happy Hacking