Good afternoon Keith Uhlmann
Thanks for using our forum
From 4th byte the rest is the zipped config. try it:
#! /usr/bin/perl -w
use Compress::Zlib;
open(FH, $ARGV[0]);
binmode FH;
seek FH, 4, 0;
sysread FH, $_, (-s $ARGV[0]) - 4;
print uncompress($_);
close(FH);
I hope you find this answer useful, if it was satisfactory for you, please mark the question as Answered.
Greetings,
Johnnatan Rodriguez Miranda