polyfile-weave 0.5.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- polyfile_weave-0.5.8/CODEOWNERS +1 -0
- polyfile_weave-0.5.8/LICENSE +202 -0
- polyfile_weave-0.5.8/MANIFEST.in +7 -0
- polyfile_weave-0.5.8/PKG-INFO +188 -0
- polyfile_weave-0.5.8/README.md +140 -0
- polyfile_weave-0.5.8/compile_kaitai_parsers.py +161 -0
- polyfile_weave-0.5.8/docs/extending_polyfile.md +208 -0
- polyfile_weave-0.5.8/docs/json_format.md +47 -0
- polyfile_weave-0.5.8/file/.cvsignore +26 -0
- polyfile_weave-0.5.8/file/.git +1 -0
- polyfile_weave-0.5.8/file/.gitignore +44 -0
- polyfile_weave-0.5.8/file/.travis.yml +28 -0
- polyfile_weave-0.5.8/file/AUTHORS +1 -0
- polyfile_weave-0.5.8/file/COPYING +29 -0
- polyfile_weave-0.5.8/file/ChangeLog +2122 -0
- polyfile_weave-0.5.8/file/INSTALL +365 -0
- polyfile_weave-0.5.8/file/MAINT +44 -0
- polyfile_weave-0.5.8/file/Makefile.am +11 -0
- polyfile_weave-0.5.8/file/NEWS +1 -0
- polyfile_weave-0.5.8/file/README.DEVELOPER +49 -0
- polyfile_weave-0.5.8/file/README.md +155 -0
- polyfile_weave-0.5.8/file/RELEASE-PROCEDURE +29 -0
- polyfile_weave-0.5.8/file/TODO +49 -0
- polyfile_weave-0.5.8/file/acinclude.m4 +61 -0
- polyfile_weave-0.5.8/file/configure.ac +258 -0
- polyfile_weave-0.5.8/file/doc/.cvsignore +7 -0
- polyfile_weave-0.5.8/file/doc/Makefile.am +32 -0
- polyfile_weave-0.5.8/file/doc/file.man +743 -0
- polyfile_weave-0.5.8/file/doc/libmagic.man +419 -0
- polyfile_weave-0.5.8/file/doc/magic.man +830 -0
- polyfile_weave-0.5.8/file/fuzz/Dockerfile +21 -0
- polyfile_weave-0.5.8/file/fuzz/build.sh +29 -0
- polyfile_weave-0.5.8/file/fuzz/magic_fuzzer.c +75 -0
- polyfile_weave-0.5.8/file/fuzz/project.yaml +6 -0
- polyfile_weave-0.5.8/file/libmagic.pc.in +11 -0
- polyfile_weave-0.5.8/file/m4/.cvsignore +2 -0
- polyfile_weave-0.5.8/file/m4/visibility.m4 +77 -0
- polyfile_weave-0.5.8/file/magic/.cvsignore +6 -0
- polyfile_weave-0.5.8/file/magic/Header +5 -0
- polyfile_weave-0.5.8/file/magic/Localstuff +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/acorn +102 -0
- polyfile_weave-0.5.8/file/magic/Magdir/adi +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/adventure +122 -0
- polyfile_weave-0.5.8/file/magic/Magdir/aes +29 -0
- polyfile_weave-0.5.8/file/magic/Magdir/algol68 +35 -0
- polyfile_weave-0.5.8/file/magic/Magdir/allegro +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/alliant +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/amanda +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/amigaos +218 -0
- polyfile_weave-0.5.8/file/magic/Magdir/android +259 -0
- polyfile_weave-0.5.8/file/magic/Magdir/animation +1197 -0
- polyfile_weave-0.5.8/file/magic/Magdir/aout +46 -0
- polyfile_weave-0.5.8/file/magic/Magdir/apache +28 -0
- polyfile_weave-0.5.8/file/magic/Magdir/apl +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/apple +773 -0
- polyfile_weave-0.5.8/file/magic/Magdir/application +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/applix +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/apt +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/archive +2586 -0
- polyfile_weave-0.5.8/file/magic/Magdir/aria +38 -0
- polyfile_weave-0.5.8/file/magic/Magdir/arm +50 -0
- polyfile_weave-0.5.8/file/magic/Magdir/asf +132 -0
- polyfile_weave-0.5.8/file/magic/Magdir/assembler +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/asterix +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/att3b +41 -0
- polyfile_weave-0.5.8/file/magic/Magdir/audio +1291 -0
- polyfile_weave-0.5.8/file/magic/Magdir/avm +33 -0
- polyfile_weave-0.5.8/file/magic/Magdir/basis +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/beetle +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ber +65 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bflt +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bhl +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bioinformatics +178 -0
- polyfile_weave-0.5.8/file/magic/Magdir/biosig +154 -0
- polyfile_weave-0.5.8/file/magic/Magdir/blackberry +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/blcr +25 -0
- polyfile_weave-0.5.8/file/magic/Magdir/blender +50 -0
- polyfile_weave-0.5.8/file/magic/Magdir/blit +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bm +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bout +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bsdi +33 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bsi +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/btsnoop +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/burp +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/bytecode +41 -0
- polyfile_weave-0.5.8/file/magic/Magdir/c-lang +110 -0
- polyfile_weave-0.5.8/file/magic/Magdir/c64 +531 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cad +437 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cafebabe +107 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cbor +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ccf +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cddb +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/chord +15 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cisco +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/citrus +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/clarion +27 -0
- polyfile_weave-0.5.8/file/magic/Magdir/claris +48 -0
- polyfile_weave-0.5.8/file/magic/Magdir/clipper +65 -0
- polyfile_weave-0.5.8/file/magic/Magdir/clojure +30 -0
- polyfile_weave-0.5.8/file/magic/Magdir/coff +98 -0
- polyfile_weave-0.5.8/file/magic/Magdir/commands +201 -0
- polyfile_weave-0.5.8/file/magic/Magdir/communications +22 -0
- polyfile_weave-0.5.8/file/magic/Magdir/compress +461 -0
- polyfile_weave-0.5.8/file/magic/Magdir/console +1213 -0
- polyfile_weave-0.5.8/file/magic/Magdir/convex +69 -0
- polyfile_weave-0.5.8/file/magic/Magdir/coverage +91 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cracklib +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/crypto +31 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ctags +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ctf +23 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cubemap +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/cups +56 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dact +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/database +886 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dataone +47 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dbpf +15 -0
- polyfile_weave-0.5.8/file/magic/Magdir/der +146 -0
- polyfile_weave-0.5.8/file/magic/Magdir/diamond +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dif +33 -0
- polyfile_weave-0.5.8/file/magic/Magdir/diff +41 -0
- polyfile_weave-0.5.8/file/magic/Magdir/digital +59 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dolby +69 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dump +96 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dwarfs +45 -0
- polyfile_weave-0.5.8/file/magic/Magdir/dyadic +61 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ebml +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/edid +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/editors +43 -0
- polyfile_weave-0.5.8/file/magic/Magdir/efi +15 -0
- polyfile_weave-0.5.8/file/magic/Magdir/elf +379 -0
- polyfile_weave-0.5.8/file/magic/Magdir/encore +22 -0
- polyfile_weave-0.5.8/file/magic/Magdir/epoc +62 -0
- polyfile_weave-0.5.8/file/magic/Magdir/erlang +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/espressif +57 -0
- polyfile_weave-0.5.8/file/magic/Magdir/esri +28 -0
- polyfile_weave-0.5.8/file/magic/Magdir/etf +33 -0
- polyfile_weave-0.5.8/file/magic/Magdir/fcs +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/filesystems +2694 -0
- polyfile_weave-0.5.8/file/magic/Magdir/finger +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/firmware +133 -0
- polyfile_weave-0.5.8/file/magic/Magdir/flash +62 -0
- polyfile_weave-0.5.8/file/magic/Magdir/flif +36 -0
- polyfile_weave-0.5.8/file/magic/Magdir/fonts +449 -0
- polyfile_weave-0.5.8/file/magic/Magdir/forth +82 -0
- polyfile_weave-0.5.8/file/magic/Magdir/fortran +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/frame +62 -0
- polyfile_weave-0.5.8/file/magic/Magdir/freebsd +164 -0
- polyfile_weave-0.5.8/file/magic/Magdir/fsav +128 -0
- polyfile_weave-0.5.8/file/magic/Magdir/fusecompress +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/games +696 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gcc +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gconv +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gentoo +85 -0
- polyfile_weave-0.5.8/file/magic/Magdir/geo +166 -0
- polyfile_weave-0.5.8/file/magic/Magdir/geos +20 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gimp +77 -0
- polyfile_weave-0.5.8/file/magic/Magdir/git +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/glibc +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gnome +59 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gnu +173 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gnumeric +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gpt +240 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gpu +28 -0
- polyfile_weave-0.5.8/file/magic/Magdir/grace +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/graphviz +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/gringotts +48 -0
- polyfile_weave-0.5.8/file/magic/Magdir/hardware +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/hitachi-sh +30 -0
- polyfile_weave-0.5.8/file/magic/Magdir/hp +433 -0
- polyfile_weave-0.5.8/file/magic/Magdir/human68k +26 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ibm370 +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ibm6000 +35 -0
- polyfile_weave-0.5.8/file/magic/Magdir/icc +214 -0
- polyfile_weave-0.5.8/file/magic/Magdir/iff +80 -0
- polyfile_weave-0.5.8/file/magic/Magdir/images +4210 -0
- polyfile_weave-0.5.8/file/magic/Magdir/inform +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/intel +310 -0
- polyfile_weave-0.5.8/file/magic/Magdir/interleaf +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/island +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ispell +63 -0
- polyfile_weave-0.5.8/file/magic/Magdir/isz +15 -0
- polyfile_weave-0.5.8/file/magic/Magdir/java +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/javascript +171 -0
- polyfile_weave-0.5.8/file/magic/Magdir/jpeg +252 -0
- polyfile_weave-0.5.8/file/magic/Magdir/karma +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/kde +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/keepass +20 -0
- polyfile_weave-0.5.8/file/magic/Magdir/kerberos +45 -0
- polyfile_weave-0.5.8/file/magic/Magdir/kicad +85 -0
- polyfile_weave-0.5.8/file/magic/Magdir/kml +34 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lammps +64 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lecter +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lex +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lif +50 -0
- polyfile_weave-0.5.8/file/magic/Magdir/linux +557 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lisp +78 -0
- polyfile_weave-0.5.8/file/magic/Magdir/llvm +22 -0
- polyfile_weave-0.5.8/file/magic/Magdir/locoscript +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/lua +31 -0
- polyfile_weave-0.5.8/file/magic/Magdir/luks +126 -0
- polyfile_weave-0.5.8/file/magic/Magdir/m4 +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mach +303 -0
- polyfile_weave-0.5.8/file/magic/Magdir/macintosh +505 -0
- polyfile_weave-0.5.8/file/magic/Magdir/macos +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/magic +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mail.news +132 -0
- polyfile_weave-0.5.8/file/magic/Magdir/make +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/map +413 -0
- polyfile_weave-0.5.8/file/magic/Magdir/maple +109 -0
- polyfile_weave-0.5.8/file/magic/Magdir/marc21 +30 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mathcad +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mathematica +188 -0
- polyfile_weave-0.5.8/file/magic/Magdir/matroska +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mcrypt +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/measure +44 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mercurial +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/metastore +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/meteorological +53 -0
- polyfile_weave-0.5.8/file/magic/Magdir/microfocus +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mime +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mips +120 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mirage +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/misctools +140 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mkid +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mlssa +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mmdf +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/modem +92 -0
- polyfile_weave-0.5.8/file/magic/Magdir/modulefile +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/motorola +71 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mozilla +37 -0
- polyfile_weave-0.5.8/file/magic/Magdir/msdos +2304 -0
- polyfile_weave-0.5.8/file/magic/Magdir/msooxml +68 -0
- polyfile_weave-0.5.8/file/magic/Magdir/msvc +222 -0
- polyfile_weave-0.5.8/file/magic/Magdir/msx +309 -0
- polyfile_weave-0.5.8/file/magic/Magdir/mup +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/music +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/nasa +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/natinst +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ncr +49 -0
- polyfile_weave-0.5.8/file/magic/Magdir/netbsd +251 -0
- polyfile_weave-0.5.8/file/magic/Magdir/netscape +26 -0
- polyfile_weave-0.5.8/file/magic/Magdir/netware +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/news +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/nifty +202 -0
- polyfile_weave-0.5.8/file/magic/Magdir/nim-lang +29 -0
- polyfile_weave-0.5.8/file/magic/Magdir/nitpicker +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/numpy +9 -0
- polyfile_weave-0.5.8/file/magic/Magdir/oasis +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ocaml +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/octave +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ole2compounddocs +760 -0
- polyfile_weave-0.5.8/file/magic/Magdir/olf +98 -0
- polyfile_weave-0.5.8/file/magic/Magdir/openfst +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/opentimestamps +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/oric +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/os2 +186 -0
- polyfile_weave-0.5.8/file/magic/Magdir/os400 +39 -0
- polyfile_weave-0.5.8/file/magic/Magdir/os9 +80 -0
- polyfile_weave-0.5.8/file/magic/Magdir/osf1 +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/palm +156 -0
- polyfile_weave-0.5.8/file/magic/Magdir/parix +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/parrot +22 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pascal +39 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pbf +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pbm +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pc88 +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pc98 +77 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pci_ids +116 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pcjr +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pdf +51 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pdp +42 -0
- polyfile_weave-0.5.8/file/magic/Magdir/perl +100 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pgf +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pgp +581 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pgp-binary-keys +388 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pkgadd +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/plan9 +25 -0
- polyfile_weave-0.5.8/file/magic/Magdir/playdate +57 -0
- polyfile_weave-0.5.8/file/magic/Magdir/plus5 +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pmem +46 -0
- polyfile_weave-0.5.8/file/magic/Magdir/polyml +23 -0
- polyfile_weave-0.5.8/file/magic/Magdir/printer +269 -0
- polyfile_weave-0.5.8/file/magic/Magdir/project +10 -0
- polyfile_weave-0.5.8/file/magic/Magdir/psdbms +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/psl +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pulsar +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/puzzle +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pwsafe +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/pyramid +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/python +305 -0
- polyfile_weave-0.5.8/file/magic/Magdir/qt +30 -0
- polyfile_weave-0.5.8/file/magic/Magdir/revision +66 -0
- polyfile_weave-0.5.8/file/magic/Magdir/riff +840 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ringdove +45 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rpi +52 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rpm +45 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rpmsg +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rst +11 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rtf +94 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ruby +55 -0
- polyfile_weave-0.5.8/file/magic/Magdir/rust +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sc +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sccs +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/scientific +144 -0
- polyfile_weave-0.5.8/file/magic/Magdir/securitycerts +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/selinux +24 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sendmail +37 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sequent +42 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sereal +35 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sgi +144 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sgml +161 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sharc +23 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sinclair +40 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sisu +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sketch +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/smalltalk +25 -0
- polyfile_weave-0.5.8/file/magic/Magdir/smile +34 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sniffer +482 -0
- polyfile_weave-0.5.8/file/magic/Magdir/softquad +40 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sosi +40 -0
- polyfile_weave-0.5.8/file/magic/Magdir/spec +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/spectrum +184 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sql +288 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ssh +39 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ssl +20 -0
- polyfile_weave-0.5.8/file/magic/Magdir/statistics +45 -0
- polyfile_weave-0.5.8/file/magic/Magdir/subtitle +38 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sun +141 -0
- polyfile_weave-0.5.8/file/magic/Magdir/svf +5 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sylk +36 -0
- polyfile_weave-0.5.8/file/magic/Magdir/symbos +42 -0
- polyfile_weave-0.5.8/file/magic/Magdir/sysex +429 -0
- polyfile_weave-0.5.8/file/magic/Magdir/tcl +29 -0
- polyfile_weave-0.5.8/file/magic/Magdir/teapot +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/terminfo +63 -0
- polyfile_weave-0.5.8/file/magic/Magdir/tex +141 -0
- polyfile_weave-0.5.8/file/magic/Magdir/tgif +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/ti-8x +239 -0
- polyfile_weave-0.5.8/file/magic/Magdir/timezone +42 -0
- polyfile_weave-0.5.8/file/magic/Magdir/tplink +95 -0
- polyfile_weave-0.5.8/file/magic/Magdir/troff +38 -0
- polyfile_weave-0.5.8/file/magic/Magdir/tuxedo +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/typeset +8 -0
- polyfile_weave-0.5.8/file/magic/Magdir/uf2 +72 -0
- polyfile_weave-0.5.8/file/magic/Magdir/unicode +15 -0
- polyfile_weave-0.5.8/file/magic/Magdir/unisig +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/unknown +34 -0
- polyfile_weave-0.5.8/file/magic/Magdir/usd +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/uterus +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/uuencode +28 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vacuum-cleaner +54 -0
- polyfile_weave-0.5.8/file/magic/Magdir/varied.out +46 -0
- polyfile_weave-0.5.8/file/magic/Magdir/varied.script +21 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vax +32 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vicar +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/virtual +307 -0
- polyfile_weave-0.5.8/file/magic/Magdir/virtutech +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/visx +32 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vms +30 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vmware +6 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vorbis +155 -0
- polyfile_weave-0.5.8/file/magic/Magdir/vxl +14 -0
- polyfile_weave-0.5.8/file/magic/Magdir/warc +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/weak +16 -0
- polyfile_weave-0.5.8/file/magic/Magdir/web +18 -0
- polyfile_weave-0.5.8/file/magic/Magdir/webassembly +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/windows +1811 -0
- polyfile_weave-0.5.8/file/magic/Magdir/wireless +7 -0
- polyfile_weave-0.5.8/file/magic/Magdir/wordprocessors +630 -0
- polyfile_weave-0.5.8/file/magic/Magdir/wsdl +23 -0
- polyfile_weave-0.5.8/file/magic/Magdir/x68000 +25 -0
- polyfile_weave-0.5.8/file/magic/Magdir/xdelta +13 -0
- polyfile_weave-0.5.8/file/magic/Magdir/xenix +106 -0
- polyfile_weave-0.5.8/file/magic/Magdir/xilinx +58 -0
- polyfile_weave-0.5.8/file/magic/Magdir/xo65 +37 -0
- polyfile_weave-0.5.8/file/magic/Magdir/xwindows +43 -0
- polyfile_weave-0.5.8/file/magic/Magdir/yara +17 -0
- polyfile_weave-0.5.8/file/magic/Magdir/zfs +96 -0
- polyfile_weave-0.5.8/file/magic/Magdir/zilog +12 -0
- polyfile_weave-0.5.8/file/magic/Magdir/zip +126 -0
- polyfile_weave-0.5.8/file/magic/Magdir/zyxel +17 -0
- polyfile_weave-0.5.8/file/magic/Makefile.am +387 -0
- polyfile_weave-0.5.8/file/magic/scripts/create_filemagic_flac +71 -0
- polyfile_weave-0.5.8/file/python/.cvsignore +7 -0
- polyfile_weave-0.5.8/file/python/CHANGELOG.md +21 -0
- polyfile_weave-0.5.8/file/python/HOWTO +7 -0
- polyfile_weave-0.5.8/file/python/LICENSE +25 -0
- polyfile_weave-0.5.8/file/python/Makefile.am +4 -0
- polyfile_weave-0.5.8/file/python/README.md +31 -0
- polyfile_weave-0.5.8/file/python/example.py +17 -0
- polyfile_weave-0.5.8/file/python/file_magic/__init__.py +1 -0
- polyfile_weave-0.5.8/file/python/magic.py +361 -0
- polyfile_weave-0.5.8/file/python/magic.pyi +93 -0
- polyfile_weave-0.5.8/file/python/pyproject.toml +31 -0
- polyfile_weave-0.5.8/file/python/setup.py +27 -0
- polyfile_weave-0.5.8/file/python/tests.py +32 -0
- polyfile_weave-0.5.8/file/python/threads.py +24 -0
- polyfile_weave-0.5.8/file/src/.cvsignore +15 -0
- polyfile_weave-0.5.8/file/src/BNF +151 -0
- polyfile_weave-0.5.8/file/src/Makefile.am +30 -0
- polyfile_weave-0.5.8/file/src/apprentice.c +3729 -0
- polyfile_weave-0.5.8/file/src/apptype.c +169 -0
- polyfile_weave-0.5.8/file/src/ascmagic.c +389 -0
- polyfile_weave-0.5.8/file/src/asctime_r.c +19 -0
- polyfile_weave-0.5.8/file/src/asprintf.c +45 -0
- polyfile_weave-0.5.8/file/src/buffer.c +93 -0
- polyfile_weave-0.5.8/file/src/cdf.c +1676 -0
- polyfile_weave-0.5.8/file/src/cdf.h +353 -0
- polyfile_weave-0.5.8/file/src/cdf.mk +3 -0
- polyfile_weave-0.5.8/file/src/cdf_time.c +203 -0
- polyfile_weave-0.5.8/file/src/compress.c +1227 -0
- polyfile_weave-0.5.8/file/src/ctime_r.c +19 -0
- polyfile_weave-0.5.8/file/src/der.c +458 -0
- polyfile_weave-0.5.8/file/src/der.h +28 -0
- polyfile_weave-0.5.8/file/src/dprintf.c +58 -0
- polyfile_weave-0.5.8/file/src/elfclass.h +82 -0
- polyfile_weave-0.5.8/file/src/encoding.c +658 -0
- polyfile_weave-0.5.8/file/src/file.c +859 -0
- polyfile_weave-0.5.8/file/src/file.h +716 -0
- polyfile_weave-0.5.8/file/src/file_opts.h +89 -0
- polyfile_weave-0.5.8/file/src/fmtcheck.c +254 -0
- polyfile_weave-0.5.8/file/src/fsmagic.c +435 -0
- polyfile_weave-0.5.8/file/src/funcs.c +932 -0
- polyfile_weave-0.5.8/file/src/getline.c +104 -0
- polyfile_weave-0.5.8/file/src/getopt_long.c +498 -0
- polyfile_weave-0.5.8/file/src/gmtime_r.c +19 -0
- polyfile_weave-0.5.8/file/src/is_csv.c +197 -0
- polyfile_weave-0.5.8/file/src/is_json.c +500 -0
- polyfile_weave-0.5.8/file/src/is_simh.c +204 -0
- polyfile_weave-0.5.8/file/src/is_tar.c +179 -0
- polyfile_weave-0.5.8/file/src/localtime_r.c +19 -0
- polyfile_weave-0.5.8/file/src/magic.c +686 -0
- polyfile_weave-0.5.8/file/src/magic.h.in +166 -0
- polyfile_weave-0.5.8/file/src/memtest.c +148 -0
- polyfile_weave-0.5.8/file/src/mygetopt.h +68 -0
- polyfile_weave-0.5.8/file/src/pread.c +23 -0
- polyfile_weave-0.5.8/file/src/print.c +365 -0
- polyfile_weave-0.5.8/file/src/readcdf.c +682 -0
- polyfile_weave-0.5.8/file/src/readelf.c +1902 -0
- polyfile_weave-0.5.8/file/src/readelf.h +545 -0
- polyfile_weave-0.5.8/file/src/seccomp.c +290 -0
- polyfile_weave-0.5.8/file/src/softmagic.c +2515 -0
- polyfile_weave-0.5.8/file/src/strcasestr.c +84 -0
- polyfile_weave-0.5.8/file/src/strlcat.c +61 -0
- polyfile_weave-0.5.8/file/src/strlcpy.c +57 -0
- polyfile_weave-0.5.8/file/src/tar.h +73 -0
- polyfile_weave-0.5.8/file/src/vasprintf.c +650 -0
- polyfile_weave-0.5.8/file/tests/.cvsignore +5 -0
- polyfile_weave-0.5.8/file/tests/CVE-2014-1943.result +1 -0
- polyfile_weave-0.5.8/file/tests/CVE-2014-1943.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/HWP2016.hwp.result +1 -0
- polyfile_weave-0.5.8/file/tests/HWP2016.hwp.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/HWP2016.hwpx.zip.result +1 -0
- polyfile_weave-0.5.8/file/tests/HWP2016.hwpx.zip.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/HWP97.hwp.result +1 -0
- polyfile_weave-0.5.8/file/tests/HWP97.hwp.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/JW07022A.mp3.result +1 -0
- polyfile_weave-0.5.8/file/tests/JW07022A.mp3.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/Makefile.am +186 -0
- polyfile_weave-0.5.8/file/tests/README +14 -0
- polyfile_weave-0.5.8/file/tests/android-vdex-1.result +1 -0
- polyfile_weave-0.5.8/file/tests/android-vdex-1.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/android-vdex-2.result +1 -0
- polyfile_weave-0.5.8/file/tests/android-vdex-2.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/arj.result +1 -0
- polyfile_weave-0.5.8/file/tests/arj.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/bcachefs.result +1 -0
- polyfile_weave-0.5.8/file/tests/bcachefs.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/bcachefs2.result +1 -0
- polyfile_weave-0.5.8/file/tests/bcachefs2.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/cl8m8ocofedso.result +1 -0
- polyfile_weave-0.5.8/file/tests/cl8m8ocofedso.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/cmd1.result +1 -0
- polyfile_weave-0.5.8/file/tests/cmd1.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/cmd2.result +1 -0
- polyfile_weave-0.5.8/file/tests/cmd2.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/cmd3.result +1 -0
- polyfile_weave-0.5.8/file/tests/cmd3.testfile +2 -0
- polyfile_weave-0.5.8/file/tests/cmd4.result +1 -0
- polyfile_weave-0.5.8/file/tests/cmd4.testfile +2 -0
- polyfile_weave-0.5.8/file/tests/dsd64-dff.result +1 -0
- polyfile_weave-0.5.8/file/tests/dsd64-dff.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/dsd64-dsf.result +1 -0
- polyfile_weave-0.5.8/file/tests/dsd64-dsf.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/escapevel.result +1 -0
- polyfile_weave-0.5.8/file/tests/escapevel.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/ext4.result +1 -0
- polyfile_weave-0.5.8/file/tests/ext4.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/fit-map-data.result +1 -0
- polyfile_weave-0.5.8/file/tests/fit-map-data.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/gedcom.result +1 -0
- polyfile_weave-0.5.8/file/tests/gedcom.testfile +8 -0
- polyfile_weave-0.5.8/file/tests/gpkg-1-zst.result +1 -0
- polyfile_weave-0.5.8/file/tests/gpkg-1-zst.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/hddrawcopytool.result +1 -0
- polyfile_weave-0.5.8/file/tests/hddrawcopytool.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/hello-racket_rkt.result +1 -0
- polyfile_weave-0.5.8/file/tests/hello-racket_rkt.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/issue311docx.result +1 -0
- polyfile_weave-0.5.8/file/tests/issue311docx.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/issue359xlsx.result +1 -0
- polyfile_weave-0.5.8/file/tests/issue359xlsx.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/jpeg-text.result +1 -0
- polyfile_weave-0.5.8/file/tests/jpeg-text.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/json1.result +1 -0
- polyfile_weave-0.5.8/file/tests/json1.testfile +14 -0
- polyfile_weave-0.5.8/file/tests/json2.result +1 -0
- polyfile_weave-0.5.8/file/tests/json2.testfile +22 -0
- polyfile_weave-0.5.8/file/tests/json3.result +1 -0
- polyfile_weave-0.5.8/file/tests/json3.testfile +13 -0
- polyfile_weave-0.5.8/file/tests/json4.result +1 -0
- polyfile_weave-0.5.8/file/tests/json4.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/json5.result +1 -0
- polyfile_weave-0.5.8/file/tests/json5.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/json6.result +1 -0
- polyfile_weave-0.5.8/file/tests/json6.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/json7.result +1 -0
- polyfile_weave-0.5.8/file/tests/json7.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/json8.result +1 -0
- polyfile_weave-0.5.8/file/tests/json8.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/jsonlines1.result +1 -0
- polyfile_weave-0.5.8/file/tests/jsonlines1.testfile +2 -0
- polyfile_weave-0.5.8/file/tests/matilde.arm.result +1 -0
- polyfile_weave-0.5.8/file/tests/matilde.arm.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/multiple-A.magic +2 -0
- polyfile_weave-0.5.8/file/tests/multiple-B.magic +2 -0
- polyfile_weave-0.5.8/file/tests/multiple.flags +1 -0
- polyfile_weave-0.5.8/file/tests/multiple.result +1 -0
- polyfile_weave-0.5.8/file/tests/multiple.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/pcjr.result +1 -0
- polyfile_weave-0.5.8/file/tests/pcjr.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v2-phil.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v2-phil.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v3-lutz.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v3-lutz.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-dsa.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-dsa.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-ecc-no-userid-secret.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-ecc-no-userid-secret.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-ecc-rev.result +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-ecc-secret-key.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-ecc-secret-key.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-key.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-key.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-no-userid-rev.result +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-no-userid-secret.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-no-userid-secret.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-secret-key.result +1 -0
- polyfile_weave-0.5.8/file/tests/pgp-binary-key-v4-rsa-secret-key.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pnm1.result +1 -0
- polyfile_weave-0.5.8/file/tests/pnm1.testfile +5 -0
- polyfile_weave-0.5.8/file/tests/pnm2.result +1 -0
- polyfile_weave-0.5.8/file/tests/pnm2.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/pnm3.result +1 -0
- polyfile_weave-0.5.8/file/tests/pnm3.testfile +5 -0
- polyfile_weave-0.5.8/file/tests/regex-eol.magic +6 -0
- polyfile_weave-0.5.8/file/tests/regex-eol.result +1 -0
- polyfile_weave-0.5.8/file/tests/regex-eol.testfile +24 -0
- polyfile_weave-0.5.8/file/tests/test.c +162 -0
- polyfile_weave-0.5.8/file/tests/uf2.result +1 -0
- polyfile_weave-0.5.8/file/tests/uf2.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/xclbin.result +1 -0
- polyfile_weave-0.5.8/file/tests/xclbin.testfile +0 -0
- polyfile_weave-0.5.8/file/tests/zstd-3-skippable-frames.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-dictionary-0.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-dictionary-1.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-dictionary-2.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-skippable-frame-0.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-skippable-frame-4.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-skippable-frame-8.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-skippable-frame-C.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.2-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.2-FF.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.3-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.3-FF.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.4-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.4-FF.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.5-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.5-FF.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.6-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.6-FF.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.7-00.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.7-21.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.7-21.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.7-22.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.7-22.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-00.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-01.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-01.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-02.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-02.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-03.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-03.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-16.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-16.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-20.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-20.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-21.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-21.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-22.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-22.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-23.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-23.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-F4.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-F4.testfile +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-FF.result +1 -0
- polyfile_weave-0.5.8/file/tests/zstd-v0.8-FF.testfile +1 -0
- polyfile_weave-0.5.8/hooks/README.md +6 -0
- polyfile_weave-0.5.8/hooks/pre-commit +49 -0
- polyfile_weave-0.5.8/hooks/pre-push +82 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.editorconfig +9 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.git +1 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.gitattributes +1 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.github/checksums +1 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.github/workflows/main.yml +76 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/.gitmodules +3 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/3d/gltf_binary.ksy +71 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/CONTRIBUTING.md +34 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/README.md +41 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/.gitignore +4 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/Gemfile +4 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/build +8 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/build-diagrams +18 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/build-html +446 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/build-target +13 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/check-errors +39 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/footer.html.erb +35 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/format_base.html.erb +16 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/format_header.html.erb +100 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/format_index.html.erb +67 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/format_lang.html.erb +48 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/format_xref.html.erb +97 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/header.html.erb +87 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/test/Main.cs +6 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/test/main.cpp +3 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/test-target +279 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_cpp_stl.html.erb +77 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_csharp.html.erb +34 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_java.html.erb +36 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_javascript.html.erb +29 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_python.html.erb +36 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/_build/usage_ruby.html.erb +34 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_bootldr_asus.ksy +70 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_bootldr_huawei.ksy +99 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_bootldr_qcom.ksy +181 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_dto.ksy +79 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_img.ksy +123 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/android_sparse.ksy +143 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/cpio_old_le.ksy +69 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/gzip.ksy +196 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/lzh.ksy +90 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/mozilla_mar.ksy +116 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/phar_without_stub.ksy +310 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/rar.ksy +178 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/respack.ksy +28 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/rpm.ksy +1495 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/xar.ksy +120 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/zip.ksy +371 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/archive/zisofs.ksy +77 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/cad/monomakh_sapr_chg.ksy +36 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/bcd.ksy +124 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/bytes_with_io.ksy +10 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/dos_datetime.ksy +105 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/riff.ksy +159 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/utf8_string.ksy +75 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/vlq_base128_be.ksy +55 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/common/vlq_base128_le.ksy +65 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/database/dbf.ksy +136 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/database/gettext_mo.ksy +194 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/database/sqlite3.ksy +244 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/database/tsm.ksy +86 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/android_nanoapp_header.ksy +38 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/dex.ksy +759 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/dos_mz.ksy +93 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/elf.ksy +1905 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/java_class.ksy +494 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/mach_o.ksy +1390 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/mach_o_fat.ksy +50 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/microsoft_pe.ksy +412 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/python_pyc_27.ksy +320 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/swf.ksy +212 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/executable/uefi_te.ksy +150 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/android_super.ksy +210 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/apm_partition_table.ksy +102 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/apple_single_double.ksy +132 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/btrfs_stream.ksy +161 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/cramfs.ksy +146 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/ext2.ksy +271 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/gpt_partition_table.ksy +79 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/iso9660.ksy +275 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/luks.ksy +78 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/lvm2.ksy +172 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/mbr_partition_table.ksy +57 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/tr_dos_image.ksy +157 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/vdi.ksy +244 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/vfat.ksy +326 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/vmware_vmdk.ksy +90 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/filesystem/zx_spectrum_tap.ksy +90 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/firmware/andes_firmware.ksy +32 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/firmware/broadcom_trx.ksy +142 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/firmware/ines.ksy +152 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/firmware/uimage.ksy +353 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/font/grub2_font.ksy +137 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/font/pcf_font.ksy +317 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/font/ttf.ksy +1012 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/allegro_dat.ksy +163 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/doom_wad.ksy +300 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/dune_2_pak.ksy +45 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/fallout2_dat.ksy +69 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/fallout_dat.ksy +69 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/ftl_dat.ksy +36 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/gran_turismo_vol.ksy +55 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/heaps_pak.ksy +73 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/heroes_of_might_and_magic_agg.ksy +41 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/heroes_of_might_and_magic_bmp.ksy +15 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/minecraft_nbt.ksy +230 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/quake_mdl.ksy +238 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/quake_pak.ksy +42 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/renderware_binary_stream.ksy +433 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/saints_row_2_vpp_pc.ksy +92 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/game/warcraft_2_pud.ksy +242 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/geospatial/shapefile_index.ksy +81 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/geospatial/shapefile_main.ksy +361 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/hardware/dtb.ksy +156 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/hardware/edid.ksy +273 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/hardware/mifare/mifare_classic.ksy +250 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/bmp.ksy +614 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/dicom.ksy +4193 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/exif.ksy +544 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/gif.ksy +206 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/gimp_brush.ksy +125 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/icc_4.ksy +1714 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/ico.ksy +87 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/jpeg.ksy +223 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/nitf.ksy +822 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/pcx.ksy +115 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/pcx_dcx.ksy +34 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/pif.ksy +169 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/png.ksy +428 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/psx_tim.ksy +52 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/tga.ksy +146 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/wmf.ksy +275 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/image/xwd.ksy +142 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/aix_utmp.ksy +83 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/glibc_utmp.ksy +79 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/hashcat_restore.ksy +32 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/mcap.ksy +439 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/sudoers_ts.ksy +117 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/systemd_journal.ksy +211 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/log/windows_evt_log.ksy +225 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/machine_code/code_6502.ksy +300 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/compressed_resource.ksy +182 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/ds_store.ksy +223 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/mac_os_resource_snd.ksy +449 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/resource_compression/dcmp_0.ksy +535 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/resource_compression/dcmp_1.ksy +316 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/resource_compression/dcmp_2.ksy +292 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/resource_compression/dcmp_variable_length_integer.ksy +68 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/macos/resource_fork.ksy +593 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/android_opengl_shaders_cache.ksy +81 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/au.ksy +163 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/avi.ksy +151 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/blender_blend.ksy +184 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/creative_voice_file.ksy +173 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/genmidi_op2.ksy +88 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/id3v1_1.ksy +185 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/id3v2_3.ksy +143 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/id3v2_4.ksy +196 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/magicavoxel_vox.ksy +190 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/ogg.ksy +108 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/quicktime_mov.ksy +476 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/standard_midi_file.ksy +172 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/stl.ksy +68 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/tracker_modules/fasttracker_xm_module.ksy +324 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/tracker_modules/s3m.ksy +263 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/vp8_ivf.ksy +71 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/media/wav.ksy +679 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/bitcoin_transaction.ksy +151 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/dime_message.ksy +115 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/dns_packet.ksy +231 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/ethernet_frame.ksy +85 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/hccap.ksy +65 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/hccapx.ksy +98 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/icmp_packet.ksy +78 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/ipv4_packet.ksy +65 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/ipv6_packet.ksy +29 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/microsoft_network_monitor_v2.ksy +221 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/packet_ppi.ksy +334 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/pcap.ksy +298 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/protocol_body.ksy +203 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/rtcp_payload.ksy +267 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/rtp_packet.ksy +100 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/rtpdump.ksy +72 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/some_ip/some_ip.ksy +153 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/some_ip/some_ip_container.ksy +13 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/some_ip/some_ip_sd.ksy +48 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/some_ip/some_ip_sd_entries.ksy +80 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/some_ip/some_ip_sd_options.ksy +179 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/tcp_segment.ksy +36 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/tls_client_hello.ksy +132 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/udp_datagram.ksy +24 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/network/websocket.ksy +97 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/scientific/nt_mdt/nt_mdt.ksy +789 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/scientific/nt_mdt/nt_mdt_pal.ksy +82 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/scientific/spectroscopy/avantes_roh60.ksy +70 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/scientific/spectroscopy/specpr.ksy +263 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/security/efivar_signature_list.ksy +153 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/security/openpgp_message.ksy +507 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/security/ssh_public_key.ksy +122 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/asn1/asn1_der.ksy +121 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/bson.ksy +196 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/chrome_pak.ksy +112 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/google_protobuf.ksy +99 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/microsoft_cfb.ksy +149 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/msgpack.ksy +195 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/php_serialized_value.ksy +326 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/python_pickle.ksy +620 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/serialization/ruby_marshal.ksy +210 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/regf.ksy +290 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/windows_lnk_file.ksy +274 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/windows_minidump.ksy +358 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/windows_resource_file.ksy +157 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/windows_shell_items.ksy +81 -0
- polyfile_weave-0.5.8/kaitai_struct_formats/windows/windows_systemtime.ksy +42 -0
- polyfile_weave-0.5.8/logo/polyfile.eps +0 -0
- polyfile_weave-0.5.8/logo/polyfile.png +0 -0
- polyfile_weave-0.5.8/logo/polyfile.svg +96 -0
- polyfile_weave-0.5.8/logo/polyfile_bw.eps +0 -0
- polyfile_weave-0.5.8/logo/polyfile_bw.png +0 -0
- polyfile_weave-0.5.8/logo/polyfile_bw.svg +123 -0
- polyfile_weave-0.5.8/logo/polyfile_name.eps +0 -0
- polyfile_weave-0.5.8/logo/polyfile_name.png +0 -0
- polyfile_weave-0.5.8/logo/polyfile_name.svg +119 -0
- polyfile_weave-0.5.8/logo/polyfile_name_bw.eps +0 -0
- polyfile_weave-0.5.8/logo/polyfile_name_bw.png +0 -0
- polyfile_weave-0.5.8/logo/polyfile_name_bw.svg +147 -0
- polyfile_weave-0.5.8/polyfile/__init__.py +44 -0
- polyfile_weave-0.5.8/polyfile/__main__.py +394 -0
- polyfile_weave-0.5.8/polyfile/arithmetic.py +27 -0
- polyfile_weave-0.5.8/polyfile/ast.py +114 -0
- polyfile_weave-0.5.8/polyfile/debugger.py +1039 -0
- polyfile_weave-0.5.8/polyfile/expressions.py +346 -0
- polyfile_weave-0.5.8/polyfile/fileutils.py +343 -0
- polyfile_weave-0.5.8/polyfile/html.py +135 -0
- polyfile_weave-0.5.8/polyfile/http/__init__.py +1 -0
- polyfile_weave-0.5.8/polyfile/http/defacto.py +37 -0
- polyfile_weave-0.5.8/polyfile/http/deprecated.py +51 -0
- polyfile_weave-0.5.8/polyfile/http/experimental.py +67 -0
- polyfile_weave-0.5.8/polyfile/http/http_11.py +548 -0
- polyfile_weave-0.5.8/polyfile/http/matcher.py +37 -0
- polyfile_weave-0.5.8/polyfile/http/structured_headers.py +48 -0
- polyfile_weave-0.5.8/polyfile/iterators.py +72 -0
- polyfile_weave-0.5.8/polyfile/jpeg.py +24 -0
- polyfile_weave-0.5.8/polyfile/kaitai/__init__.py +0 -0
- polyfile_weave-0.5.8/polyfile/kaitai/compiler.py +156 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parser.py +312 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/__init__.py +0 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/aix_utmp.py +116 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/allegro_dat.py +367 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/andes_firmware.py +64 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_bootldr_asus.py +105 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_bootldr_huawei.py +181 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_bootldr_qcom.py +217 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_dto.py +138 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_img.py +319 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_nanoapp_header.py +83 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_opengl_shaders_cache.py +151 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_sparse.py +237 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/android_super.py +401 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/apm_partition_table.py +196 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/apple_single_double.py +180 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/asn1_der.py +235 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/au.py +138 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/avantes_roh60.py +112 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/avi.py +296 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/bcd.py +111 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/bitcoin_transaction.py +210 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/blender_blend.py +334 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/bmp.py +780 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/bson.py +411 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/btrfs_stream.py +318 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/bytes_with_io.py +27 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/chrome_pak.py +194 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/code_6502.py +456 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/compressed_resource.py +217 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/cpio_old_le.py +154 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/cramfs.py +344 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/creative_voice_file.py +342 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dbf.py +274 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dcmp_0.py +664 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dcmp_1.py +422 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dcmp_2.py +312 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dcmp_variable_length_integer.py +66 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dex.py +1086 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dicom.py +4370 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dime_message.py +201 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dns_packet.py +569 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/doom_wad.py +654 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dos_datetime.py +191 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dos_mz.py +172 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ds_store.py +513 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dtb.py +310 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/dune_2_pak.py +126 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/edid.py +472 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/efivar_signature_list.py +331 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/elf.py +2482 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ethernet_frame.py +114 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/exif.py +723 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ext2.py +537 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/fallout2_dat.py +187 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/fallout_dat.py +156 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/fasttracker_xm_module.py +558 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ftl_dat.py +90 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/genmidi_op2.py +161 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gettext_mo.py +541 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gif.py +492 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gimp_brush.py +244 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/glibc_utmp.py +114 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gltf_binary.py +132 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/google_protobuf.py +151 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gpt_partition_table.py +175 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gran_turismo_vol.py +140 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/grub2_font.py +337 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/gzip.py +232 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/hashcat_restore.py +60 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/hccap.py +111 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/hccapx.py +103 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/heaps_pak.py +177 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/heroes_of_might_and_magic_agg.py +116 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/heroes_of_might_and_magic_bmp.py +34 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/icmp_packet.py +136 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ico.py +129 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/id3v1_1.py +220 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/id3v2_3.py +324 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/id3v2_4.py +423 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ines.py +282 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ipv4_packet.py +158 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ipv6_packet.py +55 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/iso9660.py +544 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/java_class.py +1113 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/jpeg.py +361 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/luks.py +149 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/lzh.py +165 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mac_os_resource_snd.py +493 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mach_o.py +3033 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mach_o_fat.py +92 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/magicavoxel_vox.py +391 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/manifest.json +1 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mbr_partition_table.py +119 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mcap.py +1015 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/microsoft_cfb.py +293 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/microsoft_network_monitor_v2.py +309 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/microsoft_pe.py +765 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mifare_classic.py +706 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/minecraft_nbt.py +449 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/monomakh_sapr_chg.py +69 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mozilla_mar.py +239 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/mp4.py +333 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/msgpack.py +467 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/nitf.py +1189 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/nt_mdt_pal.py +155 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ogg.py +118 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/openpgp_message.py +993 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/packet_ppi.py +515 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/pcap.py +344 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/pcf_font.py +506 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/pcx.py +195 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/pcx_dcx.py +79 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/phar_without_stub.py +399 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/php_serialized_value.py +505 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/png.py +721 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/protocol_body.py +260 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/psx_tim.py +104 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/python_pickle.py +718 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/python_pyc_27.py +510 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/quake_mdl.py +441 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/quake_pak.py +112 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/quicktime_mov.py +634 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/rar.py +265 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/regf.py +569 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/renderware_binary_stream.py +877 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/resource_fork.py +611 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/respack.py +57 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/riff.py +409 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/rpm.py +964 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/rtcp_payload.py +579 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/rtp_packet.py +150 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/rtpdump.py +115 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ruby_marshal.py +423 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/s3m.py +493 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/saints_row_2_vpp_pc.py +254 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/shapefile_index.py +174 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/shapefile_main.py +893 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/some_ip.py +209 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/some_ip_container.py +37 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/some_ip_sd.py +86 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/some_ip_sd_entries.py +160 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/some_ip_sd_options.py +374 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/specpr.py +404 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/sqlite3.py +472 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ssh_public_key.py +252 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/standard_midi_file.py +390 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/stl.py +111 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/sudoers_ts.py +201 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/swf.py +406 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/systemd_journal.py +361 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/tcp_segment.py +57 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/tga.py +213 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/tls_client_hello.py +293 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/tr_dos_image.py +322 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/tsm.py +198 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/ttf.py +1847 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/udp_datagram.py +42 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/uefi_te.py +236 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/uimage.py +198 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/utf8_string.py +137 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/vfat.py +410 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/vlq_base128_be.py +104 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/vlq_base128_le.py +129 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/vmware_vmdk.py +167 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/vp8_ivf.py +112 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/warcraft_2_pud.py +423 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/wav.py +1014 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/websocket.py +167 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_evt_log.py +304 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_lnk_file.py +467 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_minidump.py +575 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_resource_file.py +243 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_shell_items.py +190 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/windows_systemtime.py +52 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/wmf.py +502 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/xar.py +181 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/xwd.py +189 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/zip.py +685 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/zisofs.py +158 -0
- polyfile_weave-0.5.8/polyfile/kaitai/parsers/zx_spectrum_tap.py +184 -0
- polyfile_weave-0.5.8/polyfile/kaitaimatcher.py +113 -0
- polyfile_weave-0.5.8/polyfile/languagematcher.py +217 -0
- polyfile_weave-0.5.8/polyfile/logger.py +135 -0
- polyfile_weave-0.5.8/polyfile/magic.py +2983 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/COPYING +29 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/__init__.py +0 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/acorn +102 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/adi +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/adventure +122 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/aes +29 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/algol68 +35 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/allegro +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/alliant +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/alpha +32 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/amanda +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/amigaos +218 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/android +259 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/animation +1197 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/aout +46 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/apache +28 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/apl +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/apple +773 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/application +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/applix +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/apt +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/archive +2586 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/aria +38 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/arm +50 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/asf +132 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/assembler +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/asterix +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/att3b +41 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/audio +1291 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/avm +33 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/basis +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/beetle +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ber +65 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bflt +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bhl +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bioinformatics +178 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/biosig +154 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/blackberry +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/blcr +25 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/blender +50 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/blit +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bm +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bout +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bsdi +33 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bsi +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/btsnoop +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/burp +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/bytecode +41 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/c-lang +110 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/c64 +531 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cad +437 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cafebabe +107 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cbor +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ccf +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cddb +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/chord +15 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cisco +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/citrus +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/clarion +27 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/claris +48 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/clipper +65 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/clojure +30 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/coff +98 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/commands +201 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/communications +22 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/compress +461 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/console +1213 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/convex +69 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/coverage +91 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cracklib +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/crypto +31 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/csv +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ctags +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ctf +23 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cubemap +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/cups +56 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dact +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/database +886 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dataone +47 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dbpf +15 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/der +146 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/diamond +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dif +33 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/diff +41 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/digital +59 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dolby +69 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dsf +25 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dump +96 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dwarfs +45 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/dyadic +61 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ebml +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/edid +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/editors +43 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/efi +15 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/elf +379 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/encore +22 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/epoc +62 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/erlang +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/espressif +57 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/esri +28 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/etf +33 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/fcs +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/filesystems +2694 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/finger +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/firmware +133 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/flash +62 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/flif +36 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/fonts +449 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/forth +82 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/fortran +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/frame +62 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/freebsd +164 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/fsav +128 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/fusecompress +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/games +696 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gcc +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gconv +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gentoo +85 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/geo +166 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/geos +20 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gimp +77 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/git +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/glibc +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gnome +59 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gnu +173 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gnumeric +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gpt +240 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gpu +28 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/grace +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/graphviz +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/gringotts +48 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/guile +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/hardware +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/hitachi-sh +30 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/hp +433 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/human68k +26 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ibm370 +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ibm6000 +35 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/icc +214 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/iff +80 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/images +4210 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/inform +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/intel +310 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/interleaf +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/island +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ispell +63 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/isz +15 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/java +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/javascript +171 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/jpeg +252 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/json +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/karma +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/kde +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/keepass +20 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/kerberos +45 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/kicad +85 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/kml +34 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lammps +64 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lecter +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lex +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lif +50 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/linux +557 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lisp +78 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/llvm +22 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/locoscript +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/lua +31 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/luks +126 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/m4 +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mach +303 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/macintosh +505 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/macos +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/magic +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/magic.mgc +0 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mail.news +132 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/make +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/map +413 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/maple +109 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/marc21 +30 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mathcad +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mathematica +188 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/matroska +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mcrypt +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/measure +44 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mercurial +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/metastore +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/meteorological +53 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/microfocus +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mime +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mips +120 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mirage +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/misctools +140 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mkid +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mlssa +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mmdf +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/modem +92 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/modulefile +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/motorola +71 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mozilla +37 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/msdos +2304 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/msooxml +68 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/msvc +222 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/msx +309 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/mup +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/music +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/nasa +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/natinst +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ncr +49 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/neko +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/netbsd +251 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/netscape +26 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/netware +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/news +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/nifty +202 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/nim-lang +29 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/nitpicker +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/numpy +9 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/oasis +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ocaml +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/octave +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ole2compounddocs +760 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/olf +98 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/openfst +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/opentimestamps +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/oric +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/os2 +186 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/os400 +39 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/os9 +80 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/osf1 +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/palm +156 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/parix +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/parrot +22 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pascal +39 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pbf +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pbm +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pc88 +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pc98 +77 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pci_ids +116 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pcjr +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pdf +51 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pdp +42 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/perl +100 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pgf +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pgp +581 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pgp-binary-keys +388 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pkgadd +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/plan9 +25 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/playdate +57 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/plus5 +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pmem +46 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/polyfile_zip +5 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/polyml +23 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/printer +269 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/project +10 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/psdbms +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/psl +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pulsar +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/puzzle +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pwsafe +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/pyramid +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/python +305 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/qt +30 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/revision +66 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/riff +840 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rinex +44 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ringdove +45 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rpi +52 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rpm +45 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rpmsg +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rst +11 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rtf +94 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ruby +55 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/rust +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sc +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sccs +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/scientific +144 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/securitycerts +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/selinux +24 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sendmail +37 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sequent +42 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sereal +35 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sgi +144 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sgml +161 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sharc +23 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sinclair +40 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sisu +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sketch +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/smalltalk +25 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/smile +34 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sniffer +482 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/softquad +40 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sosi +40 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/spec +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/spectrum +184 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sql +288 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ssh +39 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ssl +20 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/statistics +45 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/subtitle +38 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sun +141 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/svf +5 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sylk +36 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/symbos +42 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/sysex +429 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/tcl +29 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/teapot +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/terminfo +63 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/tex +141 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/tgif +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/ti-8x +239 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/timezone +42 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/tplink +95 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/troff +38 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/tuxedo +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/typeset +8 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/uf2 +72 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/unicode +15 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/unisig +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/unknown +34 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/usd +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/uterus +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/uuencode +28 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vacuum-cleaner +54 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/varied.out +46 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/varied.script +21 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vax +32 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vicar +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/virtual +307 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/virtutech +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/visx +32 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vms +30 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vmware +6 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vorbis +155 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/vxl +14 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/warc +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/weak +16 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/web +18 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/webassembly +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/windows +1811 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/wireless +7 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/wordprocessors +630 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/wsdl +23 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/x68000 +25 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/xdelta +13 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/xenix +106 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/xilinx +58 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/xo65 +37 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/xwindows +43 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/yara +17 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/zfs +96 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/zilog +12 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/zip +126 -0
- polyfile_weave-0.5.8/polyfile/magic_defs/zyxel +17 -0
- polyfile_weave-0.5.8/polyfile/nes.py +144 -0
- polyfile_weave-0.5.8/polyfile/nitf.py +15 -0
- polyfile_weave-0.5.8/polyfile/pdf.py +1338 -0
- polyfile_weave-0.5.8/polyfile/pickles.py +45 -0
- polyfile_weave-0.5.8/polyfile/polyfile.py +416 -0
- polyfile_weave-0.5.8/polyfile/profiling.py +115 -0
- polyfile_weave-0.5.8/polyfile/repl.py +624 -0
- polyfile_weave-0.5.8/polyfile/search.py +310 -0
- polyfile_weave-0.5.8/polyfile/serialization.py +323 -0
- polyfile_weave-0.5.8/polyfile/structmatcher.py +46 -0
- polyfile_weave-0.5.8/polyfile/structs.py +281 -0
- polyfile_weave-0.5.8/polyfile/templates/download.js +162 -0
- polyfile_weave-0.5.8/polyfile/templates/hexdump.css +268 -0
- polyfile_weave-0.5.8/polyfile/templates/hexdump.js +756 -0
- polyfile_weave-0.5.8/polyfile/templates/jquery-3.4.1.min.js +2 -0
- polyfile_weave-0.5.8/polyfile/templates/template.html +119 -0
- polyfile_weave-0.5.8/polyfile/wildcards.py +62 -0
- polyfile_weave-0.5.8/polyfile/zipmatcher.py +183 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/PKG-INFO +188 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/SOURCES.txt +1426 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/dependency_links.txt +1 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/entry_points.txt +2 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/requires.txt +24 -0
- polyfile_weave-0.5.8/polyfile_weave.egg-info/top_level.txt +2 -0
- polyfile_weave-0.5.8/polymerge/__init__.py +1 -0
- polyfile_weave-0.5.8/polymerge/__main__.py +296 -0
- polyfile_weave-0.5.8/polymerge/cfg.py +127 -0
- polyfile_weave-0.5.8/polymerge/polymerge.py +227 -0
- polyfile_weave-0.5.8/polymerge/polytracker.py +190 -0
- polyfile_weave-0.5.8/pyproject.toml +3 -0
- polyfile_weave-0.5.8/setup.cfg +4 -0
- polyfile_weave-0.5.8/setup.py +71 -0
- polyfile_weave-0.5.8/tests/test_corkami.py +182 -0
- polyfile_weave-0.5.8/tests/test_iterators.py +32 -0
- polyfile_weave-0.5.8/tests/test_kaitai.py +45 -0
- polyfile_weave-0.5.8/tests/test_magic.py +189 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* @ESultanik
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: polyfile-weave
|
|
3
|
+
Version: 0.5.8
|
|
4
|
+
Summary: A utility to recursively map the structure of a file.
|
|
5
|
+
Home-page: https://github.com/zbirenbaum/polyfile-weave
|
|
6
|
+
Author: Trail of Bits
|
|
7
|
+
Classifier: Development Status :: 4 - Beta
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Topic :: Security
|
|
13
|
+
Classifier: Topic :: Software Development :: Testing
|
|
14
|
+
Classifier: Topic :: Utilities
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: abnf~=2.2.0
|
|
19
|
+
Requires-Dist: chardet>=5.0.0
|
|
20
|
+
Requires-Dist: cint>=1.0.0
|
|
21
|
+
Requires-Dist: fickling>=0.0.8
|
|
22
|
+
Requires-Dist: graphviz>=0.20.1
|
|
23
|
+
Requires-Dist: intervaltree>=2.4.0
|
|
24
|
+
Requires-Dist: jinja2>=2.1.0
|
|
25
|
+
Requires-Dist: kaitaistruct~=0.10
|
|
26
|
+
Requires-Dist: networkx>=2.6.3
|
|
27
|
+
Requires-Dist: Pillow>=5.0.0
|
|
28
|
+
Requires-Dist: pyreadline3; platform_system == "Windows"
|
|
29
|
+
Requires-Dist: pyyaml>=3.13
|
|
30
|
+
Requires-Dist: setuptools>=80.9.0
|
|
31
|
+
Requires-Dist: pdfminer.six>=20251230
|
|
32
|
+
Provides-Extra: demangle
|
|
33
|
+
Requires-Dist: cxxfilt; extra == "demangle"
|
|
34
|
+
Provides-Extra: dev
|
|
35
|
+
Requires-Dist: mypy; extra == "dev"
|
|
36
|
+
Requires-Dist: pytest; extra == "dev"
|
|
37
|
+
Requires-Dist: flake8; extra == "dev"
|
|
38
|
+
Dynamic: author
|
|
39
|
+
Dynamic: classifier
|
|
40
|
+
Dynamic: description
|
|
41
|
+
Dynamic: description-content-type
|
|
42
|
+
Dynamic: home-page
|
|
43
|
+
Dynamic: license-file
|
|
44
|
+
Dynamic: provides-extra
|
|
45
|
+
Dynamic: requires-dist
|
|
46
|
+
Dynamic: requires-python
|
|
47
|
+
Dynamic: summary
|
|
48
|
+
|
|
49
|
+
# PolyFile
|
|
50
|
+
<p align="center">
|
|
51
|
+
<img src="logo/polyfile_name.png?raw=true" width="256" title="PolyFile">
|
|
52
|
+
</p>
|
|
53
|
+
<br />
|
|
54
|
+
|
|
55
|
+
[](https://badge.fury.io/py/polyfile)
|
|
56
|
+
[](https://github.com/trailofbits/polyfile/actions)
|
|
57
|
+
[](https://slack.empirehacking.nyc)
|
|
58
|
+
|
|
59
|
+
A utility to identify and map the semantic and syntactic structure of files,
|
|
60
|
+
including polyglots, chimeras, and schizophrenic files. It has [a pure-Python implementation of libmagic](#file-support) and can act as a drop-in replacement for the [`file` command](https://github.com/file/file). However, unlike `file`, PolyFile can recursively identify embedded files, like [binwalk](https://github.com/ReFirmLabs/binwalk).
|
|
61
|
+
|
|
62
|
+
PolyFile can be used in conjunction with its sister tool
|
|
63
|
+
[PolyTracker](https://github.com/trailofbits/polytracker) for
|
|
64
|
+
_Automated Lexical Annotation and Navigation of Parsers_, a backronym
|
|
65
|
+
devised solely for the purpose of collectively referring to the tools
|
|
66
|
+
as _The ALAN Parsers Project_.
|
|
67
|
+
|
|
68
|
+
## Quickstart
|
|
69
|
+
|
|
70
|
+
You can install the latest stable version of PolyFile from PyPI:
|
|
71
|
+
```
|
|
72
|
+
pip3 install polyfile
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
To install PolyFile from source, in the same directory as this README, run:
|
|
76
|
+
```
|
|
77
|
+
pip3 install .
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Important: Before installing from source, make sure Java is installed. Java is used to
|
|
81
|
+
run the Kaitai Struct compiler, which compiles the file format definitions.
|
|
82
|
+
|
|
83
|
+
This will automatically install the `polyfile` and `polymerge` executables in your path.
|
|
84
|
+
|
|
85
|
+
## Usage
|
|
86
|
+
|
|
87
|
+
Running `polyfile` on a file with no arguments will mimic the behavior of `file --keep-going`:
|
|
88
|
+
```console
|
|
89
|
+
$ polyfile png-polyglot.png
|
|
90
|
+
PNG image data, 256 x 144, 8-bit/color RGB, non-interlaced
|
|
91
|
+
Brainfu** Program
|
|
92
|
+
Malformed PDF
|
|
93
|
+
PDF document, version 1.3, 1 pages
|
|
94
|
+
ZIP end of central directory record Java JAR archive
|
|
95
|
+
```
|
|
96
|
+
To generate an interactive hex viewer for the file, use the `--html` option:
|
|
97
|
+
```console
|
|
98
|
+
$ polyfile --html output.html png-polyglot.png
|
|
99
|
+
Found a file of type application/pdf at byte offset 0
|
|
100
|
+
Found a file of type application/x-brainfuck at byte offset 0
|
|
101
|
+
Found a file of type image/png at byte offset 0
|
|
102
|
+
Found a file of type application/zip at byte offset 0
|
|
103
|
+
Found a file of type application/java-archive at byte offset 0
|
|
104
|
+
Saved HTML output to output.html
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Run `polyfile --help` for full usage instructions.
|
|
108
|
+
|
|
109
|
+
### Interactive Debugger
|
|
110
|
+
|
|
111
|
+
PolyFile has an interactive debugger both for its file matching and parsing. It can be used to debug a libmagic pattern
|
|
112
|
+
definition, determine why a specific file fails to be classified as the expected MIME type, or step through a parser.
|
|
113
|
+
You can run PolyFile with the debugger enabled using the `-db` option.
|
|
114
|
+
|
|
115
|
+
### File Support
|
|
116
|
+
|
|
117
|
+
PolyFile has a cleanroom, [pure Python implementation of the libmagic file classifier](#libmagic-implementation), and supports all 263 MIME types that it can identify.
|
|
118
|
+
|
|
119
|
+
It currently has support for parsing and semantically mapping the following formats:
|
|
120
|
+
* PDF, using an instrumented version of [Didier Stevens' public domain, permissive, forensic parser](https://blog.didierstevens.com/programs/pdf-tools/)
|
|
121
|
+
* ZIP, including recursive identification of all ZIP contents
|
|
122
|
+
* JPEG/JFIF, using its [Kaitai Struct grammar](https://formats.kaitai.io/jpeg/index.html)
|
|
123
|
+
* [iNES](https://wiki.nesdev.com/w/index.php/INES)
|
|
124
|
+
* [Any other format](https://formats.kaitai.io/index.html) specified in a [KSY grammar](https://doc.kaitai.io/user_guide.html)
|
|
125
|
+
|
|
126
|
+
For an example that exercises all of these file formats, run:
|
|
127
|
+
```bash
|
|
128
|
+
curl -v --silent https://www.sultanik.com/files/ESultanikResume.pdf | polyfile --html ESultanikResume.html -
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Prior to PolyFile version 0.3.0, it used the [TrID database](http://mark0.net/soft-trid-deflist.html) for file
|
|
132
|
+
identification rather than the libmagic file definitions. This proved to be very slow (since TrID has many duplicate
|
|
133
|
+
entries) and prone to false positives (since TrID's file definitions are much simpler than libmagic's). The original
|
|
134
|
+
TrID matching code is still shipped with PolyFile and can be invoked programmatically, but it is not used by default.
|
|
135
|
+
|
|
136
|
+
### Output Format
|
|
137
|
+
|
|
138
|
+
PolyFile has several options for outputting its results, specified by its `--format` option. For computer-readable output, PolyFile has an extension of the [SBuD](https://github.com/corkami/sbud) JSON format described [in the documentation](docs/json_format.md). Prior to version 0.5.0 this was the default output format of PolyFile. However, now the default output format is to mimic the behavior of the `file` command. To maintain the original behavior, use the `--format sbud` option.
|
|
139
|
+
|
|
140
|
+
### libmagic Implementation
|
|
141
|
+
|
|
142
|
+
PolyFile has a cleanroom implementation of [libmagic (used in the `file` command)](https://github.com/file/file).
|
|
143
|
+
It can be invoked programmatically by running:
|
|
144
|
+
```python
|
|
145
|
+
from polyfile.magic import MagicMatcher
|
|
146
|
+
|
|
147
|
+
with open("file_to_test", "rb") as f:
|
|
148
|
+
# the default instance automatically loads all file definitions
|
|
149
|
+
for match in MagicMatcher.DEFAULT_INSTANCE.match(f.read()):
|
|
150
|
+
for mimetype in match.mimetypes:
|
|
151
|
+
print(f"Matched MIME: {mimetype}")
|
|
152
|
+
print(f"Match string: {match!s}")
|
|
153
|
+
```
|
|
154
|
+
To load a specific or custom file definition:
|
|
155
|
+
```python
|
|
156
|
+
list_of_paths_to_definitions = ["def1", "def2"]
|
|
157
|
+
matcher = MagicMatcher.parse(*list_of_paths_to_definitions)
|
|
158
|
+
with open("file_to_test", "rb") as f:
|
|
159
|
+
for match in matcher.match(f.read()):
|
|
160
|
+
...
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## Extending PolyFile
|
|
164
|
+
|
|
165
|
+
Instructions on extending PolyFile to support more file formats with new matchers and parsers is described [in the documentation]([in the documentation](docs/extending_polyfile.md)).
|
|
166
|
+
|
|
167
|
+
## License and Acknowledgements
|
|
168
|
+
|
|
169
|
+
This research was developed by [Trail of
|
|
170
|
+
Bits](https://www.trailofbits.com/) with funding from the Defense
|
|
171
|
+
Advanced Research Projects Agency (DARPA) under the SafeDocs program
|
|
172
|
+
as a subcontractor to [Galois](https://galois.com). It is licensed under the [Apache 2.0 license](LICENSE).
|
|
173
|
+
© 2019, Trail of Bits.
|
|
174
|
+
|
|
175
|
+
## Known Issues & Fixes
|
|
176
|
+
|
|
177
|
+
### Python Reserved Keyword in Auto-generated Code
|
|
178
|
+
|
|
179
|
+
The Kaitai Struct compiler may generate Python code that uses `class` as a variable name (e.g., `self.class = ...`), which is invalid syntax since `class` is a reserved keyword in Python. This issue specifically affects the auto-generated `polyfile/kaitai/parsers/openpgp_message.py` file.
|
|
180
|
+
|
|
181
|
+
**Automatic Fix:** As of this version, polyfile-weave automatically patches this issue on import. The fix is applied transparently when you first import the package, ensuring it works out-of-the-box.
|
|
182
|
+
|
|
183
|
+
**Manual Fix:** If you need to manually apply the fix (e.g., for development or debugging), you can run the included `fix_class_keyword.py` script:
|
|
184
|
+
```bash
|
|
185
|
+
python fix_class_keyword.py
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
This will patch all occurrences of `self.class` to `self.class_` in the affected file.
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
# PolyFile
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img src="logo/polyfile_name.png?raw=true" width="256" title="PolyFile">
|
|
4
|
+
</p>
|
|
5
|
+
<br />
|
|
6
|
+
|
|
7
|
+
[](https://badge.fury.io/py/polyfile)
|
|
8
|
+
[](https://github.com/trailofbits/polyfile/actions)
|
|
9
|
+
[](https://slack.empirehacking.nyc)
|
|
10
|
+
|
|
11
|
+
A utility to identify and map the semantic and syntactic structure of files,
|
|
12
|
+
including polyglots, chimeras, and schizophrenic files. It has [a pure-Python implementation of libmagic](#file-support) and can act as a drop-in replacement for the [`file` command](https://github.com/file/file). However, unlike `file`, PolyFile can recursively identify embedded files, like [binwalk](https://github.com/ReFirmLabs/binwalk).
|
|
13
|
+
|
|
14
|
+
PolyFile can be used in conjunction with its sister tool
|
|
15
|
+
[PolyTracker](https://github.com/trailofbits/polytracker) for
|
|
16
|
+
_Automated Lexical Annotation and Navigation of Parsers_, a backronym
|
|
17
|
+
devised solely for the purpose of collectively referring to the tools
|
|
18
|
+
as _The ALAN Parsers Project_.
|
|
19
|
+
|
|
20
|
+
## Quickstart
|
|
21
|
+
|
|
22
|
+
You can install the latest stable version of PolyFile from PyPI:
|
|
23
|
+
```
|
|
24
|
+
pip3 install polyfile
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
To install PolyFile from source, in the same directory as this README, run:
|
|
28
|
+
```
|
|
29
|
+
pip3 install .
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Important: Before installing from source, make sure Java is installed. Java is used to
|
|
33
|
+
run the Kaitai Struct compiler, which compiles the file format definitions.
|
|
34
|
+
|
|
35
|
+
This will automatically install the `polyfile` and `polymerge` executables in your path.
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
Running `polyfile` on a file with no arguments will mimic the behavior of `file --keep-going`:
|
|
40
|
+
```console
|
|
41
|
+
$ polyfile png-polyglot.png
|
|
42
|
+
PNG image data, 256 x 144, 8-bit/color RGB, non-interlaced
|
|
43
|
+
Brainfu** Program
|
|
44
|
+
Malformed PDF
|
|
45
|
+
PDF document, version 1.3, 1 pages
|
|
46
|
+
ZIP end of central directory record Java JAR archive
|
|
47
|
+
```
|
|
48
|
+
To generate an interactive hex viewer for the file, use the `--html` option:
|
|
49
|
+
```console
|
|
50
|
+
$ polyfile --html output.html png-polyglot.png
|
|
51
|
+
Found a file of type application/pdf at byte offset 0
|
|
52
|
+
Found a file of type application/x-brainfuck at byte offset 0
|
|
53
|
+
Found a file of type image/png at byte offset 0
|
|
54
|
+
Found a file of type application/zip at byte offset 0
|
|
55
|
+
Found a file of type application/java-archive at byte offset 0
|
|
56
|
+
Saved HTML output to output.html
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Run `polyfile --help` for full usage instructions.
|
|
60
|
+
|
|
61
|
+
### Interactive Debugger
|
|
62
|
+
|
|
63
|
+
PolyFile has an interactive debugger both for its file matching and parsing. It can be used to debug a libmagic pattern
|
|
64
|
+
definition, determine why a specific file fails to be classified as the expected MIME type, or step through a parser.
|
|
65
|
+
You can run PolyFile with the debugger enabled using the `-db` option.
|
|
66
|
+
|
|
67
|
+
### File Support
|
|
68
|
+
|
|
69
|
+
PolyFile has a cleanroom, [pure Python implementation of the libmagic file classifier](#libmagic-implementation), and supports all 263 MIME types that it can identify.
|
|
70
|
+
|
|
71
|
+
It currently has support for parsing and semantically mapping the following formats:
|
|
72
|
+
* PDF, using an instrumented version of [Didier Stevens' public domain, permissive, forensic parser](https://blog.didierstevens.com/programs/pdf-tools/)
|
|
73
|
+
* ZIP, including recursive identification of all ZIP contents
|
|
74
|
+
* JPEG/JFIF, using its [Kaitai Struct grammar](https://formats.kaitai.io/jpeg/index.html)
|
|
75
|
+
* [iNES](https://wiki.nesdev.com/w/index.php/INES)
|
|
76
|
+
* [Any other format](https://formats.kaitai.io/index.html) specified in a [KSY grammar](https://doc.kaitai.io/user_guide.html)
|
|
77
|
+
|
|
78
|
+
For an example that exercises all of these file formats, run:
|
|
79
|
+
```bash
|
|
80
|
+
curl -v --silent https://www.sultanik.com/files/ESultanikResume.pdf | polyfile --html ESultanikResume.html -
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Prior to PolyFile version 0.3.0, it used the [TrID database](http://mark0.net/soft-trid-deflist.html) for file
|
|
84
|
+
identification rather than the libmagic file definitions. This proved to be very slow (since TrID has many duplicate
|
|
85
|
+
entries) and prone to false positives (since TrID's file definitions are much simpler than libmagic's). The original
|
|
86
|
+
TrID matching code is still shipped with PolyFile and can be invoked programmatically, but it is not used by default.
|
|
87
|
+
|
|
88
|
+
### Output Format
|
|
89
|
+
|
|
90
|
+
PolyFile has several options for outputting its results, specified by its `--format` option. For computer-readable output, PolyFile has an extension of the [SBuD](https://github.com/corkami/sbud) JSON format described [in the documentation](docs/json_format.md). Prior to version 0.5.0 this was the default output format of PolyFile. However, now the default output format is to mimic the behavior of the `file` command. To maintain the original behavior, use the `--format sbud` option.
|
|
91
|
+
|
|
92
|
+
### libmagic Implementation
|
|
93
|
+
|
|
94
|
+
PolyFile has a cleanroom implementation of [libmagic (used in the `file` command)](https://github.com/file/file).
|
|
95
|
+
It can be invoked programmatically by running:
|
|
96
|
+
```python
|
|
97
|
+
from polyfile.magic import MagicMatcher
|
|
98
|
+
|
|
99
|
+
with open("file_to_test", "rb") as f:
|
|
100
|
+
# the default instance automatically loads all file definitions
|
|
101
|
+
for match in MagicMatcher.DEFAULT_INSTANCE.match(f.read()):
|
|
102
|
+
for mimetype in match.mimetypes:
|
|
103
|
+
print(f"Matched MIME: {mimetype}")
|
|
104
|
+
print(f"Match string: {match!s}")
|
|
105
|
+
```
|
|
106
|
+
To load a specific or custom file definition:
|
|
107
|
+
```python
|
|
108
|
+
list_of_paths_to_definitions = ["def1", "def2"]
|
|
109
|
+
matcher = MagicMatcher.parse(*list_of_paths_to_definitions)
|
|
110
|
+
with open("file_to_test", "rb") as f:
|
|
111
|
+
for match in matcher.match(f.read()):
|
|
112
|
+
...
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Extending PolyFile
|
|
116
|
+
|
|
117
|
+
Instructions on extending PolyFile to support more file formats with new matchers and parsers is described [in the documentation]([in the documentation](docs/extending_polyfile.md)).
|
|
118
|
+
|
|
119
|
+
## License and Acknowledgements
|
|
120
|
+
|
|
121
|
+
This research was developed by [Trail of
|
|
122
|
+
Bits](https://www.trailofbits.com/) with funding from the Defense
|
|
123
|
+
Advanced Research Projects Agency (DARPA) under the SafeDocs program
|
|
124
|
+
as a subcontractor to [Galois](https://galois.com). It is licensed under the [Apache 2.0 license](LICENSE).
|
|
125
|
+
© 2019, Trail of Bits.
|
|
126
|
+
|
|
127
|
+
## Known Issues & Fixes
|
|
128
|
+
|
|
129
|
+
### Python Reserved Keyword in Auto-generated Code
|
|
130
|
+
|
|
131
|
+
The Kaitai Struct compiler may generate Python code that uses `class` as a variable name (e.g., `self.class = ...`), which is invalid syntax since `class` is a reserved keyword in Python. This issue specifically affects the auto-generated `polyfile/kaitai/parsers/openpgp_message.py` file.
|
|
132
|
+
|
|
133
|
+
**Automatic Fix:** As of this version, polyfile-weave automatically patches this issue on import. The fix is applied transparently when you first import the package, ensuring it works out-of-the-box.
|
|
134
|
+
|
|
135
|
+
**Manual Fix:** If you need to manually apply the fix (e.g., for development or debugging), you can run the included `fix_class_keyword.py` script:
|
|
136
|
+
```bash
|
|
137
|
+
python fix_class_keyword.py
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
This will patch all occurrences of `self.class` to `self.class_` in the affected file.
|