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

- Lots of cleanup and expansion of XML match types. - Signatures for ATOM and RSS (text/atom, text/rss). - Improved SOAP signature. - Improved text/cross-domain-policy signature - Improved and expanded javascript matching a bit. - Removed a lot of potentially problematic signatures (performance) - Split out more signatures from libmagic.sig - Added a signature for matching JSON. Seems to work ok. - Signature for MPEGv4 audio. - Expanded java applet signature. - Improved PNG matching. - Improved MP3 matching.
13 lines
234 B
Standard ML
13 lines
234 B
Standard ML
|
|
# MPEG v3 audio
|
|
signature file-mpeg-audio {
|
|
file-mime "audio/mpeg", 20
|
|
file-magic /^\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)/
|
|
}
|
|
|