* starting to flesh out a pattern for PNG
* using defines to improve readability
* data type changes to wip png pattern
* read png chunks until end of file
* iccp chunk and commenting
* Move IHDR out of array
* Function and pointer fixes
Co-authored-by: Foster Brereton <fbrereto@adobe.com>
* add intel_hex format (#15)
* pattern: Added Nintendo Switch NACP file format pattern (#21)
* patterns: Added Nintendo Switch NRO format pattern
Co-authored-by: Matt Farstad <matthewwilliamfarstad@gmail.com>
* Add initial pcap support
Assumes little endian and fixed to 1000 packets, but it's a start.
* update readme for pcap entry
added initial pcap support
* Fix : Added pragma for multiple PE MIME types.
* Use magic db instead of application/octet-stream MIME-type.
* Fix: handles shared libs mime type as ELF format
* Updates README.md for new ELF mime-type
* Improved PE patterns for both x86 and x64 files.
Added sections table and data directories.
Support for 64bits binaries.
Separated files for 32bits and 64bits binaries.
* Deleted old PE pattern.
* Single file used for both PE32 and PE32+.
Change FORMAT preprocessor constant to switch mode.
* Improved sections table localization.
Using recently added nextAfter() builtin-function to locate sections
table.
* Automatic detection for 64bits executables.
Automatically detect if PE32+ format is enabled by checking machine
value.
* Updated README.md for single PE hexpat file.
* Use String for sections name.
* Remove silly usage of define preprocessor.