mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

- It's derived from the magic database of libmagic 5.14, but with most everything not related to mime types removed. - The custom database is always used by default for mime detection, but the more verbose file type detection will fall back on the default libmagic installation's database. The result is: mime type strings are now guaranteed to be consistent across platforms, but the verbose file type descriptions are not. - The custom database gets installed in $prefix/share/bro/magic, and should even be extensible if files with new patterns are added inside the directory. - The search path for the mime magic database can be controlled via BROMAGIC environment variable. - Remove mime_desc field from ftp.log. - Stop using the mime/file type canonifier with unit tests. - libmagic >= 5.04 is now a requirement.
31 lines
1 KiB
Text
31 lines
1 KiB
Text
# See COPYING file in this directory for original libmagic copyright.
|
|
#------------------------------------------------------------------------------
|
|
# $File: jpeg,v 1.18 2012/08/01 12:12:36 christos Exp $
|
|
# JPEG images
|
|
# SunOS 5.5.1 had
|
|
#
|
|
# 0 string \377\330\377\340 JPEG file
|
|
# 0 string \377\330\377\356 JPG file
|
|
#
|
|
# both of which turn into "JPEG image data" here.
|
|
#
|
|
0 beshort 0xffd8 JPEG image data
|
|
!:mime image/jpeg
|
|
!:apple 8BIMJPEG
|
|
!:strength +2
|
|
|
|
# From: David Santinoli <david@santinoli.com>
|
|
0 string \x00\x00\x00\x0C\x6A\x50\x20\x20\x0D\x0A\x87\x0A JPEG 2000
|
|
# From: Johan van der Knijff <johan.vanderknijff@kb.nl>
|
|
# Added sub-entries for JP2, JPX, JPM and MJ2 formats; added mimetypes
|
|
# https://github.com/bitsgalore/jp2kMagic
|
|
#
|
|
# Now read value of 'Brand' field, which yields a few possibilities:
|
|
>20 string \x6a\x70\x32\x20 Part 1 (JP2)
|
|
!:mime image/jp2
|
|
>20 string \x6a\x70\x78\x20 Part 2 (JPX)
|
|
!:mime image/jpx
|
|
>20 string \x6a\x70\x6d\x20 Part 6 (JPM)
|
|
!:mime image/jpm
|
|
>20 string \x6d\x6a\x70\x32 Part 3 (MJ2)
|
|
!:mime video/mj2
|