mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

Some of the existing mime types received extended matchers to fix problems with UTF-16 BOMs. New file mime types: - .ini files - MS Registry policy files - MS Registry files - MS Registry format files (e.g. DESKTOP.DAT) - MS Outlook PST files - Apple AFPInfo files Mime type fixes: - MP3 files with ID3 tags. - JSON and XML matchers were extended
13 lines
240 B
Standard ML
13 lines
240 B
Standard ML
|
|
# MPEG v3 audio
|
|
signature file-mpeg-audio {
|
|
file-mime "audio/mpeg", 20
|
|
file-magic /^(ID3|\xff[\xe2\xe3\xf2\xf3\xf6\xf7\xfa\xfb\xfc\xfd])/
|
|
}
|
|
|
|
# MPEG v4 audio
|
|
signature file-m4a {
|
|
file-mime "audio/m4a", 70
|
|
file-magic /^....ftyp(m4a)/
|
|
}
|
|
|