home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / magic.mime < prev    next >
Text File  |  2003-11-22  |  22KB  |  626 lines

  1. # Magic data for KMimeMagic (originally for file(1) command)
  2. #
  3. # The format is 4-5 columns:
  4. #    Column #1: byte number to begin checking from, ">" indicates continuation
  5. #    Column #2: type of data to match
  6. #    Column #3: contents of data to match
  7. #    Column #4: MIME type of result
  8. #    Column #5: MIME encoding of result (optional)
  9.  
  10. #------------------------------------------------------------------------------
  11. # Localstuff:  file(1) magic for locally observed files
  12. # Add any locally observed files here.
  13.  
  14. #------------------------------------------------------------------------------
  15. # end local stuff
  16. #------------------------------------------------------------------------------
  17.  
  18. #------------------------------------------------------------------------------
  19. # Java
  20.  
  21. 0    short        0xcafe
  22. >2    short        0xbabe        application/java
  23.  
  24. #------------------------------------------------------------------------------
  25. # audio:  file(1) magic for sound formats
  26. #
  27. # from Jan Nicolai Langfeldt <janl@ifi.uio.no>,
  28. #
  29.  
  30. # Sun/NeXT audio data
  31. 0    string        .snd
  32. >12    belong        1        audio/basic
  33. >12    belong        2        audio/basic
  34. >12    belong        3        audio/basic
  35. >12    belong        4        audio/basic
  36. >12    belong        5        audio/basic
  37. >12    belong        6        audio/basic
  38. >12    belong        7        audio/basic
  39.  
  40. >12    belong        23        audio/x-adpcm
  41.  
  42. # DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
  43. # that uses little-endian encoding and has a different magic number
  44. # (0x0064732E in little-endian encoding).
  45. 0    lelong        0x0064732E    
  46. >12    lelong        1        audio/x-dec-basic
  47. >12    lelong        2        audio/x-dec-basic
  48. >12    lelong        3        audio/x-dec-basic
  49. >12    lelong        4        audio/x-dec-basic
  50. >12    lelong        5        audio/x-dec-basic
  51. >12    lelong        6        audio/x-dec-basic
  52. >12    lelong        7        audio/x-dec-basic
  53. #                                       compressed (G.721 ADPCM)
  54. >12    lelong        23        audio/x-dec-adpcm
  55.  
  56. # Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
  57. #                    AIFF audio data
  58. 8    string        AIFF        audio/x-aiff    
  59. #                    AIFF-C audio data
  60. 8    string        AIFC        audio/x-aiff    
  61. #                    IFF/8SVX audio data
  62. 8    string        8SVX        audio/x-aiff    
  63.  
  64. # Creative Labs AUDIO stuff
  65. #                    Standard MIDI data
  66. 0    string    MThd            audio/unknown    
  67. #>9     byte    >0            (format %d)
  68. #>11    byte    >1            using %d channels
  69. #                    Creative Music (CMF) data
  70. 0    string    CTMF            audio/unknown    
  71. #                    SoundBlaster instrument data
  72. 0    string    SBI            audio/unknown    
  73. #                    Creative Labs voice data
  74. 0    string    Creative\ Voice\ File    audio/unknown    
  75. ## is this next line right?  it came this way...
  76. #>19    byte    0x1A
  77. #>23    byte    >0            - version %d
  78. #>22    byte    >0            \b.%d
  79.  
  80. # [GRR 950115:  is this also Creative Labs?  Guessing that first line
  81. #  should be string instead of unknown-endian long...]
  82. #0    long        0x4e54524b    MultiTrack sound data
  83. #0    string        NTRK        MultiTrack sound data
  84. #>4    long        x        - version %ld
  85.  
  86. # Microsoft WAVE format (*.wav)
  87. # [GRR 950115:  probably all of the shorts and longs should be leshort/lelong]
  88. #                    Microsoft RIFF
  89. 0    string        RIFF
  90. #                    - WAVE format
  91. >8    string        WAVE        audio/x-wav
  92. >8    string        AVI        video/x-msvideo
  93. #
  94. 0    belong        0x2e7261fd    application/x-realaudio
  95. >8     string        CDRA        image/x-coreldraw
  96.  
  97.  
  98. # MPEG Layer 3 sound files
  99. 0       beshort        &0xffe0        audio/mpeg
  100. #MP3 with ID3 tag
  101. 0    string        ID3        audio/mpeg
  102. # Ogg/Vorbis
  103. 0    string        OggS        application/ogg
  104.  
  105. #------------------------------------------------------------------------------
  106. # c-lang:  file(1) magic for C programs or various scripts
  107. #
  108.  
  109. # XPM icons (Greg Roelofs, newt@uchicago.edu)
  110. # ideally should go into "images", but entries below would tag XPM as C source
  111. 0    string        /*\ XPM        image/x-xpm    7bit
  112.  
  113. # 3DS (3d Studio files)
  114. 16    beshort        0x3d3d        image/x-3ds
  115.  
  116. # this first will upset you if you're a PL/1 shop... (are there any left?)
  117. # in which case rm it; ascmagic will catch real C programs
  118. #                    C or REXX program text
  119. #0    string        /*        text/x-c
  120. #                    C++ program text
  121. #0    string        //        text/x-c++
  122.  
  123. #------------------------------------------------------------------------------
  124. # commands:  file(1) magic for various shells and interpreters
  125. #
  126. #0       string          :\ shell archive or commands for antique kernel text
  127. 0       string          #!/bin/sh               application/x-shellscript
  128. 0       string          #!\ /bin/sh             application/x-shellscript
  129. 0       string          #!/bin/csh              application/x-shellscript
  130. 0       string          #!\ /bin/csh            application/x-shellscript
  131. # korn shell magic, sent by George Wu, gwu@clyde.att.com
  132. 0       string          #!/bin/ksh              application/x-shellscript
  133. 0       string          #!\ /bin/ksh            application/x-shellscript
  134. 0       string          #!/bin/tcsh             application/x-shellscript
  135. 0       string          #!\ /bin/tcsh           application/x-shellscript
  136. 0       string          #!/usr/local/tcsh       application/x-shellscript
  137. 0       string          #!\ /usr/local/tcsh     application/x-shellscript
  138. 0       string          #!/usr/local/bin/tcsh   application/x-shellscript
  139. 0       string          #!\ /usr/local/bin/tcsh application/x-shellscript
  140. # bash shell magic, from Peter Tobias (tobias@server.et-inf.fho-emden.de)
  141. 0       string          #!/bin/bash             application/x-shellscript
  142. 0       string          #!\ /bin/bash           application/x-shellscript
  143. 0       string          #!/usr/local/bin/bash   application/x-shellscript
  144. 0       string          #!\ /usr/local/bin/bash application/x-shellscript
  145.  
  146. #
  147. # zsh/ash/ae/nawk/gawk magic from cameron@cs.unsw.oz.au (Cameron Simpson)
  148. 0       string          #!/bin/zsh            application/x-shellscript
  149. 0       string          #!/usr/bin/zsh            application/x-shellscript
  150. 0       string          #!/usr/local/bin/zsh    application/x-shellscript
  151. 0       string          #!\ /usr/local/bin/zsh  application/x-shellscript
  152. 0       string          #!/usr/local/bin/ash    application/x-shellscript
  153. 0       string          #!\ /usr/local/bin/ash  application/x-shellscript
  154. #0       string          #!/usr/local/bin/ae     Neil Brown's ae
  155. #0       string          #!\ /usr/local/bin/ae   Neil Brown's ae
  156. 0       string          #!/bin/nawk             application/x-nawk
  157. 0       string          #!\ /bin/nawk           application/x-nawk
  158. 0       string          #!/usr/bin/nawk         application/x-nawk
  159. 0       string          #!\ /usr/bin/nawk       application/x-nawk
  160. 0       string          #!/usr/local/bin/nawk   application/x-nawk
  161. 0       string          #!\ /usr/local/bin/nawk application/x-nawk
  162. 0       string          #!/bin/gawk             application/x-gawk
  163. 0       string          #!\ /bin/gawk           application/x-gawk
  164. 0       string          #!/usr/bin/gawk         application/x-gawk
  165. 0       string          #!\ /usr/bin/gawk       application/x-gawk
  166. 0       string          #!/usr/local/bin/gawk   application/x-gawk
  167. 0       string          #!\ /usr/local/bin/gawk application/x-gawk
  168. #
  169. 0       string          #!/bin/awk              application/x-awk
  170. 0       string          #!\ /bin/awk            application/x-awk
  171. 0       string          #!/usr/bin/awk          application/x-awk
  172. 0       string          #!\ /usr/bin/awk        application/x-awk
  173. 0       string          BEGIN                   application/x-awk
  174.  
  175. # For Larry Wall's perl language.  The ``eval'' line recognizes an
  176. # outrageously clever hack for USG systems.
  177. #                               Keith Waclena <keith@cerberus.uchicago.edu>
  178. 0       string          #!/bin/perl                     application/x-perl
  179. 0       string          #!\ /bin/perl                   application/x-perl
  180. 0       string          eval\ "exec\ /bin/perl          application/x-perl
  181. 0       string          #!/usr/bin/perl                 application/x-perl
  182. 0       string          #!\ /usr/bin/perl               application/x-perl
  183. 0       string          eval\ "exec\ /usr/bin/perl      application/x-perl
  184. 0       string          #!/usr/local/bin/perl           application/x-perl
  185. 0       string          #!\ /usr/local/bin/perl         application/x-perl
  186. 0       string          eval\ "exec\ /usr/local/bin/perl application/x-perl
  187.  
  188. #------------------------------------------------------------------------------
  189. # compress:  file(1) magic for pure-compression formats (no archives)
  190. #
  191. # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, whap, etc.
  192. #
  193. # Formats for various forms of compressed data
  194. # Formats for "compress" proper have been moved into "compress.c",
  195. # because it tries to uncompress it to figure out what's inside.
  196.  
  197. # standard unix compress
  198. 0    string        \037\235    application/x-compress
  199.  
  200. # gzip (GNU zip, not to be confused with [Info-ZIP/PKWARE] zip archiver)
  201. 0       string          \037\213        application/x-gzip
  202.  
  203. 0        string            PK\003\004        application/x-zip
  204.  
  205. # RAR archiver (Greg Roelofs, newt@uchicago.edu)
  206. 0    string        Rar!        application/x-rar
  207.  
  208. # According to gzip.h, this is the correct byte order for packed data.
  209. 0    string        \037\036    application/octet-stream
  210. #
  211. # This magic number is byte-order-independent.
  212. #
  213. 0    short        017437        application/octet-stream
  214.  
  215. # XXX - why *two* entries for "compacted data", one of which is
  216. # byte-order independent, and one of which is byte-order dependent?
  217. #
  218. # compacted data
  219. 0    short        0x1fff        application/octet-stream
  220. 0    string        \377\037    application/octet-stream
  221. # huf output
  222. 0    short        0145405        application/octet-stream
  223.  
  224. # Squeeze and Crunch...
  225. # These numbers were gleaned from the Unix versions of the programs to
  226. # handle these formats.  Note that I can only uncrunch, not crunch, and
  227. # I didn't have a crunched file handy, so the crunch number is untested.
  228. #                Keith Waclena <keith@cerberus.uchicago.edu>
  229. #0    leshort        0x76FF        squeezed data (CP/M, DOS)
  230. #0    leshort        0x76FE        crunched data (CP/M, DOS)
  231.  
  232. # Freeze
  233. #0    string        \037\237    Frozen file 2.1
  234. #0    string        \037\236    Frozen file 1.0 (or gzip 0.5)
  235.  
  236. # lzh?
  237. #0    string        \037\240    LZH compressed data
  238.  
  239. 257    string        ustar\0        application/x-tar    posix
  240. 257    string        ustar\040\040\0        application/x-tar    gnu
  241.  
  242. 0    short        070707        application/x-cpio
  243. 0    short        0143561        application/x-cpio    swapped
  244.  
  245. 0    string        =<ar>        application/x-archive
  246. 0    string        !<arch>        application/x-archive
  247. >8    string        debian        application/x-debian-package
  248.  
  249. #------------------------------------------------------------------------------
  250. #
  251. # RPM: file(1) magic for Red Hat Packages   Erik Troan (ewt@redhat.com)
  252. #
  253. 0       beshort         0xedab
  254. >2      beshort         0xeedb          application/x-rpm
  255.  
  256. 0    lelong&0x8080ffff    0x0000081a    application/x-arc    lzw
  257. 0    lelong&0x8080ffff    0x0000091a    application/x-arc    squashed
  258. 0    lelong&0x8080ffff    0x0000021a    application/x-arc    uncompressed
  259. 0    lelong&0x8080ffff    0x0000031a    application/x-arc    packed
  260. 0    lelong&0x8080ffff    0x0000041a    application/x-arc    squeezed
  261. 0    lelong&0x8080ffff    0x0000061a    application/x-arc    crunched
  262.  
  263. 0    leshort    0xea60    application/x-arj
  264.  
  265. # LHARC/LHA archiver (Greg Roelofs, newt@uchicago.edu)
  266. 2    string    -lh0-    application/x-lharc    lh0
  267. 2    string    -lh1-    application/x-lharc    lh1
  268. 2    string    -lz4-    application/x-lharc    lz4
  269. 2    string    -lz5-    application/x-lharc    lz5
  270. #    [never seen any but the last; -lh4- reported in comp.compression:]
  271. 2    string    -lzs-    application/x-lha    lzs
  272. 2    string    -lh\ -    application/x-lha    lh
  273. 2    string    -lhd-    application/x-lha    lhd
  274. 2    string    -lh2-    application/x-lha    lh2
  275. 2    string    -lh3-    application/x-lha    lh3
  276. 2    string    -lh4-    application/x-lha    lh4
  277. 2    string    -lh5-    application/x-lha    lh5
  278. 2    string    -lh6-    application/x-lha    lh6
  279. 2    string    -lh7-    application/x-lha    lh7
  280. # Shell archives
  281. 10    string    #\ This\ is\ a\ shell\ archive    application/octet-stream    x-shell
  282.  
  283. #------------------------------------------------------------------------------
  284. # frame:  file(1) magic for FrameMaker files
  285. #
  286. # This stuff came on a FrameMaker demo tape, most of which is
  287. # copyright, but this file is "published" as witness the following:
  288. #
  289. 0    string        \<MakerFile    application/x-frame
  290. 0    string        \<MIFFile    application/x-frame
  291. 0    string        \<MakerDictionary    application/x-frame
  292. 0    string        \<MakerScreenFon    application/x-frame
  293. 0    string        \<MML        application/x-frame
  294. 0    string        \<Book        application/x-frame
  295. 0    string        \<Maker        application/x-frame
  296.  
  297. #------------------------------------------------------------------------------
  298. # html:  file(1) magic for HTML (HyperText Markup Language) docs
  299. #
  300. # from Daniel Quinlan <quinlan@yggdrasil.com>
  301. #
  302. 0    string        \<HEAD    text/html
  303. 0    string        \<head    text/html
  304. 0    string        \<TITLE    text/html
  305. 0    string        \<title    text/html
  306. 0       string          \<html    text/html
  307. 0       string          \<HTML    text/html
  308. 0    string        \<!--    text/html
  309. 0    string        \<h1    text/html
  310. 0    string        \<H1    text/html
  311. 0    string        \<!doctype\ HTML    text/html
  312. 0    string        \<!DOCTYPE\ HTML    text/html
  313. 0    string        \<!doctype\ html    text/html
  314. 0    string        \<!doctype\ HTML    text/html
  315.  
  316. #------------------------------------------------------------------------------
  317. # images:  file(1) magic for image formats (see also "c-lang" for XPM bitmaps)
  318. #
  319. # originally from jef@helios.ee.lbl.gov (Jef Poskanzer),
  320. # additions by janl@ifi.uio.no as well as others. Jan also suggested
  321. # merging several one- and two-line files into here.
  322. #
  323. # XXX - byte order for GIF and TIFF fields?
  324. # [GRR:  TIFF allows both byte orders; GIF is probably little-endian]
  325. #
  326.  
  327. # [GRR:  what the hell is this doing in here?]
  328. #0    string        xbtoa        btoa'd file
  329.  
  330. # PBMPLUS
  331. #                    PBM file
  332. 0    string        P1        image/x-portable-bitmap    7bit
  333. #                    PGM file
  334. 0    string        P2        image/x-portable-greymap    7bit
  335. #                    PPM file
  336. 0    string        P3        image/x-portable-pixmap    7bit
  337. #                    PBM "rawbits" file
  338. 0    string        P4        image/x-portable-bitmap
  339. #                    PGM "rawbits" file
  340. 0    string        P5        image/x-portable-greymap
  341. #                    PPM "rawbits" file
  342. 0    string        P6        image/x-portable-pixmap
  343.  
  344. # NIFF (Navy Interchange File Format, a modification of TIFF)
  345. # [GRR:  this *must* go before TIFF]
  346. 0    string        IIN1        image/x-niff
  347.  
  348. # TIFF and friends
  349. #                    TIFF file, big-endian
  350. 0    string        MM        image/tiff
  351. #                    TIFF file, little-endian
  352. 0    string        II        image/tiff
  353.  
  354. # possible GIF replacements; none yet released!
  355. # (Greg Roelofs, newt@uchicago.edu)
  356. #
  357. # GRR 950115:  this was mine ("Zip GIF"):
  358. #                    ZIF image (GIF+deflate alpha)
  359. 0    string        GIF94z        image/unknown
  360. #
  361. # GRR 950115:  this is Jeremy Wohl's Free Graphics Format (better):
  362. #                    FGF image (GIF+deflate beta)
  363. 0    string        FGF95a        image/unknown
  364. #
  365. # GRR 950115:  this is Thomas Boutell's Portable Bitmap Format proposal
  366. # (best; not yet implemented):
  367. #                    PBF image (deflate compression)
  368. 0    string        PBF        image/unknown
  369.  
  370. # GIF
  371. 0    string        GIF        image/gif
  372.  
  373. # JPEG images
  374. 0    beshort        0xffd8        image/jpeg
  375.  
  376. # PC bitmaps (OS/2, Windoze BMP files)  (Greg Roelofs, newt@uchicago.edu)
  377. 0    string        BM        image/bmp
  378. #>14    byte        12        (OS/2 1.x format)
  379. #>14    byte        64        (OS/2 2.x format)
  380. #>14    byte        40        (Windows 3.x format)
  381. #0    string        IC        icon
  382. #0    string        PI        pointer
  383. #0    string        CI        color icon
  384. #0    string        CP        color pointer
  385. #0    string        BA        bitmap array
  386.  
  387.  
  388. #------------------------------------------------------------------------------
  389. # lisp:  file(1) magic for lisp programs
  390. #
  391. # various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com)
  392. 0    string    ;;            text/plain    8bit
  393. # Emacs 18 - this is always correct, but not very magical.
  394. 0    string    \012(            application/x-elc
  395. # Emacs 19
  396. 0    string    ;ELC\023\000\000\000    application/x-elc
  397.  
  398. #------------------------------------------------------------------------------
  399. # mail.news:  file(1) magic for mail and news
  400. #
  401. # There are tests to ascmagic.c to cope with mail and news.
  402. 0    string        Relay-Version:     message/rfc822    7bit
  403. 0    string        #!\ rnews    message/rfc822    7bit
  404. 0    string        N#!\ rnews    message/rfc822    7bit
  405. 0    string        Forward\ to     message/rfc822    7bit
  406. 0    string        Pipe\ to     message/rfc822    7bit
  407. 0    string        Return-Path:    message/rfc822    7bit
  408. 0    string        Path:        message/news    8bit
  409. 0    string        Xref:        message/news    8bit
  410. 0    string        From:        message/rfc822    7bit
  411. 0    string        Article     message/news    8bit
  412. #------------------------------------------------------------------------------
  413. # msword: file(1) magic for MS Word files
  414. #
  415. # Contributor claims:
  416. # Reversed-engineered MS Word magic numbers
  417. #
  418.  
  419. 0    string        \376\067\0\043            application/msword
  420. 0    string        \320\317\021\340\241\261    application/msword
  421. 0    string        \333\245-\0\0\0            application/msword
  422.  
  423.  
  424.  
  425. #------------------------------------------------------------------------------
  426. # printer:  file(1) magic for printer-formatted files
  427. #
  428.  
  429. # PostScript
  430. 0    string        %!        application/postscript
  431. 0    string        \004%!        application/postscript
  432.  
  433. # Acrobat
  434. # (due to clamen@cs.cmu.edu)
  435. 0    string        %PDF-        application/pdf
  436.  
  437. #------------------------------------------------------------------------------
  438. # sc:  file(1) magic for "sc" spreadsheet
  439. #
  440. 38    string        Spreadsheet    application/x-sc
  441.  
  442. #------------------------------------------------------------------------------
  443. # tex:  file(1) magic for TeX files
  444. #
  445. # XXX - needs byte-endian stuff (big-endian and little-endian DVI?)
  446. #
  447. # From <conklin@talisman.kaleida.com>
  448.  
  449. # Although we may know the offset of certain text fields in TeX DVI
  450. # and font files, we can't use them reliably because they are not
  451. # zero terminated. [but we do anyway, christos]
  452. 0    string        \367\002    application/x-dvi
  453. #0    string        \367\203    TeX generic font data
  454. #0    string        \367\131    TeX packed font data
  455. #0    string        \367\312    TeX virtual font data
  456. #0    string        This\ is\ TeX,    TeX transcript text    
  457. #0    string        This\ is\ METAFONT,    METAFONT transcript text
  458.  
  459. # There is no way to detect TeX Font Metric (*.tfm) files without
  460. # breaking them apart and reading the data.  The following patterns
  461. # match most *.tfm files generated by METAFONT or afm2tfm.
  462. 2    string        \000\021    application/x-tex-tfm
  463. 2    string        \000\022    application/x-tex-tfm
  464. #>34    string        >\0        (%s)
  465.  
  466. # Texinfo and GNU Info, from Daniel Quinlan (quinlan@yggdrasil.com)
  467. #0    string        \\input\ texinfo    Texinfo source text
  468. #0    string        This\ is\ Info\ file    GNU Info text
  469.  
  470. # correct TeX magic for Linux (and maybe more)
  471. # from Peter Tobias (tobias@server.et-inf.fho-emden.de)
  472. #
  473. 0    leshort        0x02f7        application/x-dvi
  474.  
  475. # RTF - Rich Text Format
  476. 0    string        {\\rtf        text/rtf
  477.  
  478. #------------------------------------------------------------------------------
  479. # animation:  file(1) magic for animation/movie formats
  480. #
  481. # animation formats, originally from vax@ccwf.cc.utexas.edu (VaX#n8)
  482. #                        MPEG file
  483. 0    belong        0x000001b3            video/mpeg
  484. 0    belong        0x000001ba            video/mpeg
  485. # FLI animation format
  486. 0    leshort        0xAF11                video/fli
  487. # FLC animation format
  488. 0    leshort        0xAF12                video/flc
  489. # AVI
  490. >8    string        AVI\                 video/avi
  491. #
  492. # SGI and Apple formats
  493. #
  494. 0    string        MOVI                video/sgi
  495. 4    string        moov                video/quicktime    moov
  496. 4    string        mdat                video/quicktime    mdat
  497. # The contributor claims:
  498. #   I couldn't find a real magic number for these, however, this
  499. #   -appears- to work.  Note that it might catch other files, too,
  500. #   so BE CAREFUL!
  501. #
  502. # Note that title and author appear in the two 20-byte chunks
  503. # at decimal offsets 2 and 22, respectively, but they are XOR'ed with
  504. # 255 (hex FF)! DL format SUCKS BIG ROCKS.
  505. #
  506. #                        DL file version 1 , medium format (160x100, 4 images/screen)
  507. 0    byte        1            video/unknown
  508. 0    byte        2            video/unknown
  509. #
  510. # Databases
  511. #
  512. # GDBM magic numbers
  513. #  Will be maintained as part of the GDBM distribution in the future.
  514. #  <downsj@teeny.org>
  515. 0       belong  0x13579ace      application/x-gdbm
  516. 0       lelong  0x13579ace      application/x-gdbm
  517. 0       string  GDBM            application/x-gdbm
  518. #
  519. 0       belong  0x061561        application/x-dbm
  520. #
  521. # Executables
  522. #
  523. 0       string          \177ELF 
  524. >4      byte            0
  525. >4      byte            1
  526. >4      byte            2
  527. >5      byte            0
  528. >5      byte            1
  529. >>16    leshort         0
  530. >>16    leshort         1               application/x-object
  531. >>16    leshort         2               application/x-executable
  532. >>16    leshort         3               application/x-sharedlib
  533. >>16    leshort         4               application/x-coredump
  534. #
  535. # DOS
  536. 0        string            MZ                application/x-dosexec
  537. #
  538. # KDE
  539. 0        string    [KDE\ Desktop\ Entry]    application/x-kdelnk
  540. 0        string    \#\ KDE\ Config\ File    application/x-kdelnk
  541. # xmcd database file for kscd
  542. 0        string    \#\ xmcd                text/xmcd
  543.  
  544. #------------------------------------------------------------------------------
  545. # pkgadd:  file(1) magic for SysV R4 PKG Datastreams
  546. #
  547. 0       string          #\ PaCkAgE\ DaTaStReAm  application/x-svr4-package
  548.  
  549. #PNG Image Format
  550. 0    string        \x89PNG            image/png
  551.  
  552. # MNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/>
  553. 0    string        \x8aMNG            video/x-mng
  554. 0    string        \x8aJNG            video/x-jng
  555.  
  556. #------------------------------------------------------------------------------
  557. # Hierarchical Data Format, used to facilitate scientific data exchange
  558. # specifications at http://hdf.ncsa.uiuc.edu/
  559. 0    belong        0x0e031301    Hierarchical Data Format (version 4) data
  560. 0    string        \211HDF\r\n\032    Hierarchical Data Format (version 5) data
  561.  
  562. # Adobe Photoshop
  563. 0    string        8BPS            image/x-photoshop
  564.  
  565. # Felix von Leitner <felix-file@fefe.de>
  566. 0    string        d8:announce        application/x-bittorrent
  567.  
  568.  
  569. # lotus 1-2-3 document
  570. 0    belong    0x00001a00    application/x-123
  571. 0    belong    0x00000200     application/x-123
  572.  
  573. # MS Access database
  574. 4    string    Standard\ Jet\ DB    application/msaccess
  575.  
  576. ## magic for XBase files
  577. #0      byte       0x02    
  578. #>8     leshort      >0
  579. #>>12   leshort    0    application/x-dbf
  580. #
  581. #0      byte       0x03    
  582. #>8     leshort      >0
  583. #>>12   leshort    0    application/x-dbf
  584. #
  585. #0      byte       0x04    
  586. #>8     leshort      >0
  587. #>>12   leshort    0    application/x-dbf
  588. #
  589. #0      byte       0x05    
  590. #>8     leshort      >0
  591. #>>12   leshort    0    application/x-dbf
  592. #
  593. #0      byte       0x30
  594. #>8     leshort      >0
  595. #>>12   leshort    0    application/x-dbf
  596. #
  597. #0      byte       0x43
  598. #>8     leshort      >0
  599. #>>12   leshort    0    application/x-dbf
  600. #
  601. #0      byte       0x7b
  602. #>8     leshort      >0
  603. #>>12   leshort    0    application/x-dbf
  604. #
  605. #0      byte       0x83    
  606. #>8     leshort      >0
  607. #>>12   leshort    0    application/x-dbf
  608. #
  609. #0      byte       0x8b
  610. #>8     leshort      >0
  611. #>>12   leshort    0    application/x-dbf
  612. #
  613. #0      byte       0x8e    
  614. #>8     leshort      >0
  615. #>>12   leshort    0    application/x-dbf
  616. #
  617. #0      byte       0xb3
  618. #>8     leshort      >0
  619. #>>12   leshort    0    application/x-dbf
  620. #
  621. #0      byte       0xf5
  622. #>8     leshort      >0
  623. #>>12   leshort    0    application/x-dbf
  624. #
  625. #0    leshort        0x0006        application/x-dbt
  626.