polyfile-weave 0.5.5__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.

Potentially problematic release.


This version of polyfile-weave might be problematic. Click here for more details.

Files changed (1428) hide show
  1. polyfile_weave-0.5.5/CODEOWNERS +1 -0
  2. polyfile_weave-0.5.5/LICENSE +202 -0
  3. polyfile_weave-0.5.5/MANIFEST.in +7 -0
  4. polyfile_weave-0.5.5/PKG-INFO +173 -0
  5. polyfile_weave-0.5.5/README.md +125 -0
  6. polyfile_weave-0.5.5/compile_kaitai_parsers.py +161 -0
  7. polyfile_weave-0.5.5/docs/extending_polyfile.md +208 -0
  8. polyfile_weave-0.5.5/docs/json_format.md +47 -0
  9. polyfile_weave-0.5.5/file/.cvsignore +26 -0
  10. polyfile_weave-0.5.5/file/.git +1 -0
  11. polyfile_weave-0.5.5/file/.gitignore +44 -0
  12. polyfile_weave-0.5.5/file/.travis.yml +28 -0
  13. polyfile_weave-0.5.5/file/AUTHORS +1 -0
  14. polyfile_weave-0.5.5/file/COPYING +29 -0
  15. polyfile_weave-0.5.5/file/ChangeLog +2122 -0
  16. polyfile_weave-0.5.5/file/INSTALL +365 -0
  17. polyfile_weave-0.5.5/file/MAINT +44 -0
  18. polyfile_weave-0.5.5/file/Makefile.am +11 -0
  19. polyfile_weave-0.5.5/file/NEWS +1 -0
  20. polyfile_weave-0.5.5/file/README.DEVELOPER +49 -0
  21. polyfile_weave-0.5.5/file/README.md +155 -0
  22. polyfile_weave-0.5.5/file/RELEASE-PROCEDURE +29 -0
  23. polyfile_weave-0.5.5/file/TODO +49 -0
  24. polyfile_weave-0.5.5/file/acinclude.m4 +61 -0
  25. polyfile_weave-0.5.5/file/configure.ac +258 -0
  26. polyfile_weave-0.5.5/file/doc/.cvsignore +7 -0
  27. polyfile_weave-0.5.5/file/doc/Makefile.am +32 -0
  28. polyfile_weave-0.5.5/file/doc/file.man +743 -0
  29. polyfile_weave-0.5.5/file/doc/libmagic.man +419 -0
  30. polyfile_weave-0.5.5/file/doc/magic.man +830 -0
  31. polyfile_weave-0.5.5/file/fuzz/Dockerfile +21 -0
  32. polyfile_weave-0.5.5/file/fuzz/build.sh +29 -0
  33. polyfile_weave-0.5.5/file/fuzz/magic_fuzzer.c +75 -0
  34. polyfile_weave-0.5.5/file/fuzz/project.yaml +6 -0
  35. polyfile_weave-0.5.5/file/libmagic.pc.in +11 -0
  36. polyfile_weave-0.5.5/file/m4/.cvsignore +2 -0
  37. polyfile_weave-0.5.5/file/m4/visibility.m4 +77 -0
  38. polyfile_weave-0.5.5/file/magic/.cvsignore +6 -0
  39. polyfile_weave-0.5.5/file/magic/Header +5 -0
  40. polyfile_weave-0.5.5/file/magic/Localstuff +7 -0
  41. polyfile_weave-0.5.5/file/magic/Magdir/acorn +102 -0
  42. polyfile_weave-0.5.5/file/magic/Magdir/adi +13 -0
  43. polyfile_weave-0.5.5/file/magic/Magdir/adventure +122 -0
  44. polyfile_weave-0.5.5/file/magic/Magdir/aes +29 -0
  45. polyfile_weave-0.5.5/file/magic/Magdir/algol68 +35 -0
  46. polyfile_weave-0.5.5/file/magic/Magdir/allegro +9 -0
  47. polyfile_weave-0.5.5/file/magic/Magdir/alliant +18 -0
  48. polyfile_weave-0.5.5/file/magic/Magdir/amanda +12 -0
  49. polyfile_weave-0.5.5/file/magic/Magdir/amigaos +218 -0
  50. polyfile_weave-0.5.5/file/magic/Magdir/android +259 -0
  51. polyfile_weave-0.5.5/file/magic/Magdir/animation +1197 -0
  52. polyfile_weave-0.5.5/file/magic/Magdir/aout +46 -0
  53. polyfile_weave-0.5.5/file/magic/Magdir/apache +28 -0
  54. polyfile_weave-0.5.5/file/magic/Magdir/apl +7 -0
  55. polyfile_weave-0.5.5/file/magic/Magdir/apple +773 -0
  56. polyfile_weave-0.5.5/file/magic/Magdir/application +7 -0
  57. polyfile_weave-0.5.5/file/magic/Magdir/applix +13 -0
  58. polyfile_weave-0.5.5/file/magic/Magdir/apt +52 -0
  59. polyfile_weave-0.5.5/file/magic/Magdir/archive +2586 -0
  60. polyfile_weave-0.5.5/file/magic/Magdir/aria +38 -0
  61. polyfile_weave-0.5.5/file/magic/Magdir/arm +50 -0
  62. polyfile_weave-0.5.5/file/magic/Magdir/asf +132 -0
  63. polyfile_weave-0.5.5/file/magic/Magdir/assembler +18 -0
  64. polyfile_weave-0.5.5/file/magic/Magdir/asterix +18 -0
  65. polyfile_weave-0.5.5/file/magic/Magdir/att3b +41 -0
  66. polyfile_weave-0.5.5/file/magic/Magdir/audio +1291 -0
  67. polyfile_weave-0.5.5/file/magic/Magdir/avm +33 -0
  68. polyfile_weave-0.5.5/file/magic/Magdir/basis +18 -0
  69. polyfile_weave-0.5.5/file/magic/Magdir/beetle +7 -0
  70. polyfile_weave-0.5.5/file/magic/Magdir/ber +65 -0
  71. polyfile_weave-0.5.5/file/magic/Magdir/bflt +14 -0
  72. polyfile_weave-0.5.5/file/magic/Magdir/bhl +10 -0
  73. polyfile_weave-0.5.5/file/magic/Magdir/bioinformatics +178 -0
  74. polyfile_weave-0.5.5/file/magic/Magdir/biosig +154 -0
  75. polyfile_weave-0.5.5/file/magic/Magdir/blackberry +8 -0
  76. polyfile_weave-0.5.5/file/magic/Magdir/blcr +25 -0
  77. polyfile_weave-0.5.5/file/magic/Magdir/blender +50 -0
  78. polyfile_weave-0.5.5/file/magic/Magdir/blit +24 -0
  79. polyfile_weave-0.5.5/file/magic/Magdir/bm +10 -0
  80. polyfile_weave-0.5.5/file/magic/Magdir/bout +11 -0
  81. polyfile_weave-0.5.5/file/magic/Magdir/bsdi +33 -0
  82. polyfile_weave-0.5.5/file/magic/Magdir/bsi +10 -0
  83. polyfile_weave-0.5.5/file/magic/Magdir/btsnoop +13 -0
  84. polyfile_weave-0.5.5/file/magic/Magdir/burp +7 -0
  85. polyfile_weave-0.5.5/file/magic/Magdir/bytecode +41 -0
  86. polyfile_weave-0.5.5/file/magic/Magdir/c-lang +110 -0
  87. polyfile_weave-0.5.5/file/magic/Magdir/c64 +531 -0
  88. polyfile_weave-0.5.5/file/magic/Magdir/cad +437 -0
  89. polyfile_weave-0.5.5/file/magic/Magdir/cafebabe +107 -0
  90. polyfile_weave-0.5.5/file/magic/Magdir/cbor +21 -0
  91. polyfile_weave-0.5.5/file/magic/Magdir/ccf +14 -0
  92. polyfile_weave-0.5.5/file/magic/Magdir/cddb +12 -0
  93. polyfile_weave-0.5.5/file/magic/Magdir/chord +15 -0
  94. polyfile_weave-0.5.5/file/magic/Magdir/cisco +12 -0
  95. polyfile_weave-0.5.5/file/magic/Magdir/citrus +12 -0
  96. polyfile_weave-0.5.5/file/magic/Magdir/clarion +27 -0
  97. polyfile_weave-0.5.5/file/magic/Magdir/claris +48 -0
  98. polyfile_weave-0.5.5/file/magic/Magdir/clipper +65 -0
  99. polyfile_weave-0.5.5/file/magic/Magdir/clojure +30 -0
  100. polyfile_weave-0.5.5/file/magic/Magdir/coff +98 -0
  101. polyfile_weave-0.5.5/file/magic/Magdir/commands +201 -0
  102. polyfile_weave-0.5.5/file/magic/Magdir/communications +22 -0
  103. polyfile_weave-0.5.5/file/magic/Magdir/compress +461 -0
  104. polyfile_weave-0.5.5/file/magic/Magdir/console +1213 -0
  105. polyfile_weave-0.5.5/file/magic/Magdir/convex +69 -0
  106. polyfile_weave-0.5.5/file/magic/Magdir/coverage +91 -0
  107. polyfile_weave-0.5.5/file/magic/Magdir/cracklib +14 -0
  108. polyfile_weave-0.5.5/file/magic/Magdir/crypto +31 -0
  109. polyfile_weave-0.5.5/file/magic/Magdir/ctags +6 -0
  110. polyfile_weave-0.5.5/file/magic/Magdir/ctf +23 -0
  111. polyfile_weave-0.5.5/file/magic/Magdir/cubemap +8 -0
  112. polyfile_weave-0.5.5/file/magic/Magdir/cups +56 -0
  113. polyfile_weave-0.5.5/file/magic/Magdir/dact +11 -0
  114. polyfile_weave-0.5.5/file/magic/Magdir/database +886 -0
  115. polyfile_weave-0.5.5/file/magic/Magdir/dataone +47 -0
  116. polyfile_weave-0.5.5/file/magic/Magdir/dbpf +15 -0
  117. polyfile_weave-0.5.5/file/magic/Magdir/der +146 -0
  118. polyfile_weave-0.5.5/file/magic/Magdir/diamond +12 -0
  119. polyfile_weave-0.5.5/file/magic/Magdir/dif +33 -0
  120. polyfile_weave-0.5.5/file/magic/Magdir/diff +41 -0
  121. polyfile_weave-0.5.5/file/magic/Magdir/digital +59 -0
  122. polyfile_weave-0.5.5/file/magic/Magdir/dolby +69 -0
  123. polyfile_weave-0.5.5/file/magic/Magdir/dump +96 -0
  124. polyfile_weave-0.5.5/file/magic/Magdir/dwarfs +45 -0
  125. polyfile_weave-0.5.5/file/magic/Magdir/dyadic +61 -0
  126. polyfile_weave-0.5.5/file/magic/Magdir/ebml +8 -0
  127. polyfile_weave-0.5.5/file/magic/Magdir/edid +11 -0
  128. polyfile_weave-0.5.5/file/magic/Magdir/editors +43 -0
  129. polyfile_weave-0.5.5/file/magic/Magdir/efi +15 -0
  130. polyfile_weave-0.5.5/file/magic/Magdir/elf +379 -0
  131. polyfile_weave-0.5.5/file/magic/Magdir/encore +22 -0
  132. polyfile_weave-0.5.5/file/magic/Magdir/epoc +62 -0
  133. polyfile_weave-0.5.5/file/magic/Magdir/erlang +21 -0
  134. polyfile_weave-0.5.5/file/magic/Magdir/espressif +57 -0
  135. polyfile_weave-0.5.5/file/magic/Magdir/esri +28 -0
  136. polyfile_weave-0.5.5/file/magic/Magdir/etf +33 -0
  137. polyfile_weave-0.5.5/file/magic/Magdir/fcs +9 -0
  138. polyfile_weave-0.5.5/file/magic/Magdir/filesystems +2694 -0
  139. polyfile_weave-0.5.5/file/magic/Magdir/finger +16 -0
  140. polyfile_weave-0.5.5/file/magic/Magdir/firmware +133 -0
  141. polyfile_weave-0.5.5/file/magic/Magdir/flash +62 -0
  142. polyfile_weave-0.5.5/file/magic/Magdir/flif +36 -0
  143. polyfile_weave-0.5.5/file/magic/Magdir/fonts +449 -0
  144. polyfile_weave-0.5.5/file/magic/Magdir/forth +82 -0
  145. polyfile_weave-0.5.5/file/magic/Magdir/fortran +9 -0
  146. polyfile_weave-0.5.5/file/magic/Magdir/frame +62 -0
  147. polyfile_weave-0.5.5/file/magic/Magdir/freebsd +164 -0
  148. polyfile_weave-0.5.5/file/magic/Magdir/fsav +128 -0
  149. polyfile_weave-0.5.5/file/magic/Magdir/fusecompress +12 -0
  150. polyfile_weave-0.5.5/file/magic/Magdir/games +696 -0
  151. polyfile_weave-0.5.5/file/magic/Magdir/gcc +17 -0
  152. polyfile_weave-0.5.5/file/magic/Magdir/gconv +10 -0
  153. polyfile_weave-0.5.5/file/magic/Magdir/gentoo +85 -0
  154. polyfile_weave-0.5.5/file/magic/Magdir/geo +166 -0
  155. polyfile_weave-0.5.5/file/magic/Magdir/geos +20 -0
  156. polyfile_weave-0.5.5/file/magic/Magdir/gimp +77 -0
  157. polyfile_weave-0.5.5/file/magic/Magdir/git +13 -0
  158. polyfile_weave-0.5.5/file/magic/Magdir/glibc +21 -0
  159. polyfile_weave-0.5.5/file/magic/Magdir/gnome +59 -0
  160. polyfile_weave-0.5.5/file/magic/Magdir/gnu +173 -0
  161. polyfile_weave-0.5.5/file/magic/Magdir/gnumeric +8 -0
  162. polyfile_weave-0.5.5/file/magic/Magdir/gpt +240 -0
  163. polyfile_weave-0.5.5/file/magic/Magdir/gpu +28 -0
  164. polyfile_weave-0.5.5/file/magic/Magdir/grace +21 -0
  165. polyfile_weave-0.5.5/file/magic/Magdir/graphviz +12 -0
  166. polyfile_weave-0.5.5/file/magic/Magdir/gringotts +48 -0
  167. polyfile_weave-0.5.5/file/magic/Magdir/hardware +12 -0
  168. polyfile_weave-0.5.5/file/magic/Magdir/hitachi-sh +30 -0
  169. polyfile_weave-0.5.5/file/magic/Magdir/hp +433 -0
  170. polyfile_weave-0.5.5/file/magic/Magdir/human68k +26 -0
  171. polyfile_weave-0.5.5/file/magic/Magdir/ibm370 +52 -0
  172. polyfile_weave-0.5.5/file/magic/Magdir/ibm6000 +35 -0
  173. polyfile_weave-0.5.5/file/magic/Magdir/icc +214 -0
  174. polyfile_weave-0.5.5/file/magic/Magdir/iff +80 -0
  175. polyfile_weave-0.5.5/file/magic/Magdir/images +4210 -0
  176. polyfile_weave-0.5.5/file/magic/Magdir/inform +9 -0
  177. polyfile_weave-0.5.5/file/magic/Magdir/intel +310 -0
  178. polyfile_weave-0.5.5/file/magic/Magdir/interleaf +9 -0
  179. polyfile_weave-0.5.5/file/magic/Magdir/island +10 -0
  180. polyfile_weave-0.5.5/file/magic/Magdir/ispell +63 -0
  181. polyfile_weave-0.5.5/file/magic/Magdir/isz +15 -0
  182. polyfile_weave-0.5.5/file/magic/Magdir/java +52 -0
  183. polyfile_weave-0.5.5/file/magic/Magdir/javascript +171 -0
  184. polyfile_weave-0.5.5/file/magic/Magdir/jpeg +252 -0
  185. polyfile_weave-0.5.5/file/magic/Magdir/karma +9 -0
  186. polyfile_weave-0.5.5/file/magic/Magdir/kde +11 -0
  187. polyfile_weave-0.5.5/file/magic/Magdir/keepass +20 -0
  188. polyfile_weave-0.5.5/file/magic/Magdir/kerberos +45 -0
  189. polyfile_weave-0.5.5/file/magic/Magdir/kicad +85 -0
  190. polyfile_weave-0.5.5/file/magic/Magdir/kml +34 -0
  191. polyfile_weave-0.5.5/file/magic/Magdir/lammps +64 -0
  192. polyfile_weave-0.5.5/file/magic/Magdir/lecter +6 -0
  193. polyfile_weave-0.5.5/file/magic/Magdir/lex +12 -0
  194. polyfile_weave-0.5.5/file/magic/Magdir/lif +50 -0
  195. polyfile_weave-0.5.5/file/magic/Magdir/linux +557 -0
  196. polyfile_weave-0.5.5/file/magic/Magdir/lisp +78 -0
  197. polyfile_weave-0.5.5/file/magic/Magdir/llvm +22 -0
  198. polyfile_weave-0.5.5/file/magic/Magdir/locoscript +12 -0
  199. polyfile_weave-0.5.5/file/magic/Magdir/lua +31 -0
  200. polyfile_weave-0.5.5/file/magic/Magdir/luks +126 -0
  201. polyfile_weave-0.5.5/file/magic/Magdir/m4 +11 -0
  202. polyfile_weave-0.5.5/file/magic/Magdir/mach +303 -0
  203. polyfile_weave-0.5.5/file/magic/Magdir/macintosh +505 -0
  204. polyfile_weave-0.5.5/file/magic/Magdir/macos +7 -0
  205. polyfile_weave-0.5.5/file/magic/Magdir/magic +10 -0
  206. polyfile_weave-0.5.5/file/magic/Magdir/mail.news +132 -0
  207. polyfile_weave-0.5.5/file/magic/Magdir/make +21 -0
  208. polyfile_weave-0.5.5/file/magic/Magdir/map +413 -0
  209. polyfile_weave-0.5.5/file/magic/Magdir/maple +109 -0
  210. polyfile_weave-0.5.5/file/magic/Magdir/marc21 +30 -0
  211. polyfile_weave-0.5.5/file/magic/Magdir/mathcad +8 -0
  212. polyfile_weave-0.5.5/file/magic/Magdir/mathematica +188 -0
  213. polyfile_weave-0.5.5/file/magic/Magdir/matroska +17 -0
  214. polyfile_weave-0.5.5/file/magic/Magdir/mcrypt +52 -0
  215. polyfile_weave-0.5.5/file/magic/Magdir/measure +44 -0
  216. polyfile_weave-0.5.5/file/magic/Magdir/mercurial +13 -0
  217. polyfile_weave-0.5.5/file/magic/Magdir/metastore +8 -0
  218. polyfile_weave-0.5.5/file/magic/Magdir/meteorological +53 -0
  219. polyfile_weave-0.5.5/file/magic/Magdir/microfocus +21 -0
  220. polyfile_weave-0.5.5/file/magic/Magdir/mime +9 -0
  221. polyfile_weave-0.5.5/file/magic/Magdir/mips +120 -0
  222. polyfile_weave-0.5.5/file/magic/Magdir/mirage +8 -0
  223. polyfile_weave-0.5.5/file/magic/Magdir/misctools +140 -0
  224. polyfile_weave-0.5.5/file/magic/Magdir/mkid +11 -0
  225. polyfile_weave-0.5.5/file/magic/Magdir/mlssa +8 -0
  226. polyfile_weave-0.5.5/file/magic/Magdir/mmdf +6 -0
  227. polyfile_weave-0.5.5/file/magic/Magdir/modem +92 -0
  228. polyfile_weave-0.5.5/file/magic/Magdir/modulefile +9 -0
  229. polyfile_weave-0.5.5/file/magic/Magdir/motorola +71 -0
  230. polyfile_weave-0.5.5/file/magic/Magdir/mozilla +37 -0
  231. polyfile_weave-0.5.5/file/magic/Magdir/msdos +2304 -0
  232. polyfile_weave-0.5.5/file/magic/Magdir/msooxml +68 -0
  233. polyfile_weave-0.5.5/file/magic/Magdir/msvc +222 -0
  234. polyfile_weave-0.5.5/file/magic/Magdir/msx +309 -0
  235. polyfile_weave-0.5.5/file/magic/Magdir/mup +24 -0
  236. polyfile_weave-0.5.5/file/magic/Magdir/music +17 -0
  237. polyfile_weave-0.5.5/file/magic/Magdir/nasa +7 -0
  238. polyfile_weave-0.5.5/file/magic/Magdir/natinst +24 -0
  239. polyfile_weave-0.5.5/file/magic/Magdir/ncr +49 -0
  240. polyfile_weave-0.5.5/file/magic/Magdir/netbsd +251 -0
  241. polyfile_weave-0.5.5/file/magic/Magdir/netscape +26 -0
  242. polyfile_weave-0.5.5/file/magic/Magdir/netware +11 -0
  243. polyfile_weave-0.5.5/file/magic/Magdir/news +13 -0
  244. polyfile_weave-0.5.5/file/magic/Magdir/nifty +202 -0
  245. polyfile_weave-0.5.5/file/magic/Magdir/nim-lang +29 -0
  246. polyfile_weave-0.5.5/file/magic/Magdir/nitpicker +14 -0
  247. polyfile_weave-0.5.5/file/magic/Magdir/numpy +9 -0
  248. polyfile_weave-0.5.5/file/magic/Magdir/oasis +12 -0
  249. polyfile_weave-0.5.5/file/magic/Magdir/ocaml +14 -0
  250. polyfile_weave-0.5.5/file/magic/Magdir/octave +6 -0
  251. polyfile_weave-0.5.5/file/magic/Magdir/ole2compounddocs +760 -0
  252. polyfile_weave-0.5.5/file/magic/Magdir/olf +98 -0
  253. polyfile_weave-0.5.5/file/magic/Magdir/openfst +17 -0
  254. polyfile_weave-0.5.5/file/magic/Magdir/opentimestamps +16 -0
  255. polyfile_weave-0.5.5/file/magic/Magdir/oric +16 -0
  256. polyfile_weave-0.5.5/file/magic/Magdir/os2 +186 -0
  257. polyfile_weave-0.5.5/file/magic/Magdir/os400 +39 -0
  258. polyfile_weave-0.5.5/file/magic/Magdir/os9 +80 -0
  259. polyfile_weave-0.5.5/file/magic/Magdir/osf1 +10 -0
  260. polyfile_weave-0.5.5/file/magic/Magdir/palm +156 -0
  261. polyfile_weave-0.5.5/file/magic/Magdir/parix +13 -0
  262. polyfile_weave-0.5.5/file/magic/Magdir/parrot +22 -0
  263. polyfile_weave-0.5.5/file/magic/Magdir/pascal +39 -0
  264. polyfile_weave-0.5.5/file/magic/Magdir/pbf +11 -0
  265. polyfile_weave-0.5.5/file/magic/Magdir/pbm +8 -0
  266. polyfile_weave-0.5.5/file/magic/Magdir/pc88 +24 -0
  267. polyfile_weave-0.5.5/file/magic/Magdir/pc98 +77 -0
  268. polyfile_weave-0.5.5/file/magic/Magdir/pci_ids +116 -0
  269. polyfile_weave-0.5.5/file/magic/Magdir/pcjr +8 -0
  270. polyfile_weave-0.5.5/file/magic/Magdir/pdf +51 -0
  271. polyfile_weave-0.5.5/file/magic/Magdir/pdp +42 -0
  272. polyfile_weave-0.5.5/file/magic/Magdir/perl +100 -0
  273. polyfile_weave-0.5.5/file/magic/Magdir/pgf +52 -0
  274. polyfile_weave-0.5.5/file/magic/Magdir/pgp +581 -0
  275. polyfile_weave-0.5.5/file/magic/Magdir/pgp-binary-keys +388 -0
  276. polyfile_weave-0.5.5/file/magic/Magdir/pkgadd +7 -0
  277. polyfile_weave-0.5.5/file/magic/Magdir/plan9 +25 -0
  278. polyfile_weave-0.5.5/file/magic/Magdir/playdate +57 -0
  279. polyfile_weave-0.5.5/file/magic/Magdir/plus5 +18 -0
  280. polyfile_weave-0.5.5/file/magic/Magdir/pmem +46 -0
  281. polyfile_weave-0.5.5/file/magic/Magdir/polyml +23 -0
  282. polyfile_weave-0.5.5/file/magic/Magdir/printer +269 -0
  283. polyfile_weave-0.5.5/file/magic/Magdir/project +10 -0
  284. polyfile_weave-0.5.5/file/magic/Magdir/psdbms +14 -0
  285. polyfile_weave-0.5.5/file/magic/Magdir/psl +14 -0
  286. polyfile_weave-0.5.5/file/magic/Magdir/pulsar +13 -0
  287. polyfile_weave-0.5.5/file/magic/Magdir/puzzle +17 -0
  288. polyfile_weave-0.5.5/file/magic/Magdir/pwsafe +14 -0
  289. polyfile_weave-0.5.5/file/magic/Magdir/pyramid +12 -0
  290. polyfile_weave-0.5.5/file/magic/Magdir/python +305 -0
  291. polyfile_weave-0.5.5/file/magic/Magdir/qt +30 -0
  292. polyfile_weave-0.5.5/file/magic/Magdir/revision +66 -0
  293. polyfile_weave-0.5.5/file/magic/Magdir/riff +840 -0
  294. polyfile_weave-0.5.5/file/magic/Magdir/ringdove +45 -0
  295. polyfile_weave-0.5.5/file/magic/Magdir/rpi +52 -0
  296. polyfile_weave-0.5.5/file/magic/Magdir/rpm +45 -0
  297. polyfile_weave-0.5.5/file/magic/Magdir/rpmsg +7 -0
  298. polyfile_weave-0.5.5/file/magic/Magdir/rst +11 -0
  299. polyfile_weave-0.5.5/file/magic/Magdir/rtf +94 -0
  300. polyfile_weave-0.5.5/file/magic/Magdir/ruby +55 -0
  301. polyfile_weave-0.5.5/file/magic/Magdir/rust +21 -0
  302. polyfile_weave-0.5.5/file/magic/Magdir/sc +7 -0
  303. polyfile_weave-0.5.5/file/magic/Magdir/sccs +24 -0
  304. polyfile_weave-0.5.5/file/magic/Magdir/scientific +144 -0
  305. polyfile_weave-0.5.5/file/magic/Magdir/securitycerts +6 -0
  306. polyfile_weave-0.5.5/file/magic/Magdir/selinux +24 -0
  307. polyfile_weave-0.5.5/file/magic/Magdir/sendmail +37 -0
  308. polyfile_weave-0.5.5/file/magic/Magdir/sequent +42 -0
  309. polyfile_weave-0.5.5/file/magic/Magdir/sereal +35 -0
  310. polyfile_weave-0.5.5/file/magic/Magdir/sgi +144 -0
  311. polyfile_weave-0.5.5/file/magic/Magdir/sgml +161 -0
  312. polyfile_weave-0.5.5/file/magic/Magdir/sharc +23 -0
  313. polyfile_weave-0.5.5/file/magic/Magdir/sinclair +40 -0
  314. polyfile_weave-0.5.5/file/magic/Magdir/sisu +18 -0
  315. polyfile_weave-0.5.5/file/magic/Magdir/sketch +6 -0
  316. polyfile_weave-0.5.5/file/magic/Magdir/smalltalk +25 -0
  317. polyfile_weave-0.5.5/file/magic/Magdir/smile +34 -0
  318. polyfile_weave-0.5.5/file/magic/Magdir/sniffer +482 -0
  319. polyfile_weave-0.5.5/file/magic/Magdir/softquad +40 -0
  320. polyfile_weave-0.5.5/file/magic/Magdir/sosi +40 -0
  321. polyfile_weave-0.5.5/file/magic/Magdir/spec +21 -0
  322. polyfile_weave-0.5.5/file/magic/Magdir/spectrum +184 -0
  323. polyfile_weave-0.5.5/file/magic/Magdir/sql +288 -0
  324. polyfile_weave-0.5.5/file/magic/Magdir/ssh +39 -0
  325. polyfile_weave-0.5.5/file/magic/Magdir/ssl +20 -0
  326. polyfile_weave-0.5.5/file/magic/Magdir/statistics +45 -0
  327. polyfile_weave-0.5.5/file/magic/Magdir/subtitle +38 -0
  328. polyfile_weave-0.5.5/file/magic/Magdir/sun +141 -0
  329. polyfile_weave-0.5.5/file/magic/Magdir/svf +5 -0
  330. polyfile_weave-0.5.5/file/magic/Magdir/sylk +36 -0
  331. polyfile_weave-0.5.5/file/magic/Magdir/symbos +42 -0
  332. polyfile_weave-0.5.5/file/magic/Magdir/sysex +429 -0
  333. polyfile_weave-0.5.5/file/magic/Magdir/tcl +29 -0
  334. polyfile_weave-0.5.5/file/magic/Magdir/teapot +6 -0
  335. polyfile_weave-0.5.5/file/magic/Magdir/terminfo +63 -0
  336. polyfile_weave-0.5.5/file/magic/Magdir/tex +141 -0
  337. polyfile_weave-0.5.5/file/magic/Magdir/tgif +7 -0
  338. polyfile_weave-0.5.5/file/magic/Magdir/ti-8x +239 -0
  339. polyfile_weave-0.5.5/file/magic/Magdir/timezone +42 -0
  340. polyfile_weave-0.5.5/file/magic/Magdir/tplink +95 -0
  341. polyfile_weave-0.5.5/file/magic/Magdir/troff +38 -0
  342. polyfile_weave-0.5.5/file/magic/Magdir/tuxedo +8 -0
  343. polyfile_weave-0.5.5/file/magic/Magdir/typeset +8 -0
  344. polyfile_weave-0.5.5/file/magic/Magdir/uf2 +72 -0
  345. polyfile_weave-0.5.5/file/magic/Magdir/unicode +15 -0
  346. polyfile_weave-0.5.5/file/magic/Magdir/unisig +12 -0
  347. polyfile_weave-0.5.5/file/magic/Magdir/unknown +34 -0
  348. polyfile_weave-0.5.5/file/magic/Magdir/usd +21 -0
  349. polyfile_weave-0.5.5/file/magic/Magdir/uterus +16 -0
  350. polyfile_weave-0.5.5/file/magic/Magdir/uuencode +28 -0
  351. polyfile_weave-0.5.5/file/magic/Magdir/vacuum-cleaner +54 -0
  352. polyfile_weave-0.5.5/file/magic/Magdir/varied.out +46 -0
  353. polyfile_weave-0.5.5/file/magic/Magdir/varied.script +21 -0
  354. polyfile_weave-0.5.5/file/magic/Magdir/vax +32 -0
  355. polyfile_weave-0.5.5/file/magic/Magdir/vicar +17 -0
  356. polyfile_weave-0.5.5/file/magic/Magdir/virtual +307 -0
  357. polyfile_weave-0.5.5/file/magic/Magdir/virtutech +12 -0
  358. polyfile_weave-0.5.5/file/magic/Magdir/visx +32 -0
  359. polyfile_weave-0.5.5/file/magic/Magdir/vms +30 -0
  360. polyfile_weave-0.5.5/file/magic/Magdir/vmware +6 -0
  361. polyfile_weave-0.5.5/file/magic/Magdir/vorbis +155 -0
  362. polyfile_weave-0.5.5/file/magic/Magdir/vxl +14 -0
  363. polyfile_weave-0.5.5/file/magic/Magdir/warc +16 -0
  364. polyfile_weave-0.5.5/file/magic/Magdir/weak +16 -0
  365. polyfile_weave-0.5.5/file/magic/Magdir/web +18 -0
  366. polyfile_weave-0.5.5/file/magic/Magdir/webassembly +17 -0
  367. polyfile_weave-0.5.5/file/magic/Magdir/windows +1811 -0
  368. polyfile_weave-0.5.5/file/magic/Magdir/wireless +7 -0
  369. polyfile_weave-0.5.5/file/magic/Magdir/wordprocessors +630 -0
  370. polyfile_weave-0.5.5/file/magic/Magdir/wsdl +23 -0
  371. polyfile_weave-0.5.5/file/magic/Magdir/x68000 +25 -0
  372. polyfile_weave-0.5.5/file/magic/Magdir/xdelta +13 -0
  373. polyfile_weave-0.5.5/file/magic/Magdir/xenix +106 -0
  374. polyfile_weave-0.5.5/file/magic/Magdir/xilinx +58 -0
  375. polyfile_weave-0.5.5/file/magic/Magdir/xo65 +37 -0
  376. polyfile_weave-0.5.5/file/magic/Magdir/xwindows +43 -0
  377. polyfile_weave-0.5.5/file/magic/Magdir/yara +17 -0
  378. polyfile_weave-0.5.5/file/magic/Magdir/zfs +96 -0
  379. polyfile_weave-0.5.5/file/magic/Magdir/zilog +12 -0
  380. polyfile_weave-0.5.5/file/magic/Magdir/zip +126 -0
  381. polyfile_weave-0.5.5/file/magic/Magdir/zyxel +17 -0
  382. polyfile_weave-0.5.5/file/magic/Makefile.am +387 -0
  383. polyfile_weave-0.5.5/file/magic/scripts/create_filemagic_flac +71 -0
  384. polyfile_weave-0.5.5/file/python/.cvsignore +7 -0
  385. polyfile_weave-0.5.5/file/python/CHANGELOG.md +21 -0
  386. polyfile_weave-0.5.5/file/python/HOWTO +7 -0
  387. polyfile_weave-0.5.5/file/python/LICENSE +25 -0
  388. polyfile_weave-0.5.5/file/python/Makefile.am +4 -0
  389. polyfile_weave-0.5.5/file/python/README.md +31 -0
  390. polyfile_weave-0.5.5/file/python/example.py +17 -0
  391. polyfile_weave-0.5.5/file/python/file_magic/__init__.py +1 -0
  392. polyfile_weave-0.5.5/file/python/magic.py +361 -0
  393. polyfile_weave-0.5.5/file/python/magic.pyi +93 -0
  394. polyfile_weave-0.5.5/file/python/pyproject.toml +31 -0
  395. polyfile_weave-0.5.5/file/python/setup.py +27 -0
  396. polyfile_weave-0.5.5/file/python/tests.py +32 -0
  397. polyfile_weave-0.5.5/file/python/threads.py +24 -0
  398. polyfile_weave-0.5.5/file/src/.cvsignore +15 -0
  399. polyfile_weave-0.5.5/file/src/BNF +151 -0
  400. polyfile_weave-0.5.5/file/src/Makefile.am +30 -0
  401. polyfile_weave-0.5.5/file/src/apprentice.c +3729 -0
  402. polyfile_weave-0.5.5/file/src/apptype.c +169 -0
  403. polyfile_weave-0.5.5/file/src/ascmagic.c +389 -0
  404. polyfile_weave-0.5.5/file/src/asctime_r.c +19 -0
  405. polyfile_weave-0.5.5/file/src/asprintf.c +45 -0
  406. polyfile_weave-0.5.5/file/src/buffer.c +93 -0
  407. polyfile_weave-0.5.5/file/src/cdf.c +1676 -0
  408. polyfile_weave-0.5.5/file/src/cdf.h +353 -0
  409. polyfile_weave-0.5.5/file/src/cdf.mk +3 -0
  410. polyfile_weave-0.5.5/file/src/cdf_time.c +203 -0
  411. polyfile_weave-0.5.5/file/src/compress.c +1227 -0
  412. polyfile_weave-0.5.5/file/src/ctime_r.c +19 -0
  413. polyfile_weave-0.5.5/file/src/der.c +458 -0
  414. polyfile_weave-0.5.5/file/src/der.h +28 -0
  415. polyfile_weave-0.5.5/file/src/dprintf.c +58 -0
  416. polyfile_weave-0.5.5/file/src/elfclass.h +82 -0
  417. polyfile_weave-0.5.5/file/src/encoding.c +658 -0
  418. polyfile_weave-0.5.5/file/src/file.c +859 -0
  419. polyfile_weave-0.5.5/file/src/file.h +716 -0
  420. polyfile_weave-0.5.5/file/src/file_opts.h +89 -0
  421. polyfile_weave-0.5.5/file/src/fmtcheck.c +254 -0
  422. polyfile_weave-0.5.5/file/src/fsmagic.c +435 -0
  423. polyfile_weave-0.5.5/file/src/funcs.c +932 -0
  424. polyfile_weave-0.5.5/file/src/getline.c +104 -0
  425. polyfile_weave-0.5.5/file/src/getopt_long.c +498 -0
  426. polyfile_weave-0.5.5/file/src/gmtime_r.c +19 -0
  427. polyfile_weave-0.5.5/file/src/is_csv.c +197 -0
  428. polyfile_weave-0.5.5/file/src/is_json.c +500 -0
  429. polyfile_weave-0.5.5/file/src/is_simh.c +204 -0
  430. polyfile_weave-0.5.5/file/src/is_tar.c +179 -0
  431. polyfile_weave-0.5.5/file/src/localtime_r.c +19 -0
  432. polyfile_weave-0.5.5/file/src/magic.c +686 -0
  433. polyfile_weave-0.5.5/file/src/magic.h.in +166 -0
  434. polyfile_weave-0.5.5/file/src/memtest.c +148 -0
  435. polyfile_weave-0.5.5/file/src/mygetopt.h +68 -0
  436. polyfile_weave-0.5.5/file/src/pread.c +23 -0
  437. polyfile_weave-0.5.5/file/src/print.c +365 -0
  438. polyfile_weave-0.5.5/file/src/readcdf.c +682 -0
  439. polyfile_weave-0.5.5/file/src/readelf.c +1902 -0
  440. polyfile_weave-0.5.5/file/src/readelf.h +545 -0
  441. polyfile_weave-0.5.5/file/src/seccomp.c +290 -0
  442. polyfile_weave-0.5.5/file/src/softmagic.c +2515 -0
  443. polyfile_weave-0.5.5/file/src/strcasestr.c +84 -0
  444. polyfile_weave-0.5.5/file/src/strlcat.c +61 -0
  445. polyfile_weave-0.5.5/file/src/strlcpy.c +57 -0
  446. polyfile_weave-0.5.5/file/src/tar.h +73 -0
  447. polyfile_weave-0.5.5/file/src/vasprintf.c +650 -0
  448. polyfile_weave-0.5.5/file/tests/.cvsignore +5 -0
  449. polyfile_weave-0.5.5/file/tests/CVE-2014-1943.result +1 -0
  450. polyfile_weave-0.5.5/file/tests/CVE-2014-1943.testfile +0 -0
  451. polyfile_weave-0.5.5/file/tests/HWP2016.hwp.result +1 -0
  452. polyfile_weave-0.5.5/file/tests/HWP2016.hwp.testfile +0 -0
  453. polyfile_weave-0.5.5/file/tests/HWP2016.hwpx.zip.result +1 -0
  454. polyfile_weave-0.5.5/file/tests/HWP2016.hwpx.zip.testfile +0 -0
  455. polyfile_weave-0.5.5/file/tests/HWP97.hwp.result +1 -0
  456. polyfile_weave-0.5.5/file/tests/HWP97.hwp.testfile +0 -0
  457. polyfile_weave-0.5.5/file/tests/JW07022A.mp3.result +1 -0
  458. polyfile_weave-0.5.5/file/tests/JW07022A.mp3.testfile +0 -0
  459. polyfile_weave-0.5.5/file/tests/Makefile.am +186 -0
  460. polyfile_weave-0.5.5/file/tests/README +14 -0
  461. polyfile_weave-0.5.5/file/tests/android-vdex-1.result +1 -0
  462. polyfile_weave-0.5.5/file/tests/android-vdex-1.testfile +0 -0
  463. polyfile_weave-0.5.5/file/tests/android-vdex-2.result +1 -0
  464. polyfile_weave-0.5.5/file/tests/android-vdex-2.testfile +0 -0
  465. polyfile_weave-0.5.5/file/tests/arj.result +1 -0
  466. polyfile_weave-0.5.5/file/tests/arj.testfile +0 -0
  467. polyfile_weave-0.5.5/file/tests/bcachefs.result +1 -0
  468. polyfile_weave-0.5.5/file/tests/bcachefs.testfile +0 -0
  469. polyfile_weave-0.5.5/file/tests/bcachefs2.result +1 -0
  470. polyfile_weave-0.5.5/file/tests/bcachefs2.testfile +0 -0
  471. polyfile_weave-0.5.5/file/tests/cl8m8ocofedso.result +1 -0
  472. polyfile_weave-0.5.5/file/tests/cl8m8ocofedso.testfile +0 -0
  473. polyfile_weave-0.5.5/file/tests/cmd1.result +1 -0
  474. polyfile_weave-0.5.5/file/tests/cmd1.testfile +1 -0
  475. polyfile_weave-0.5.5/file/tests/cmd2.result +1 -0
  476. polyfile_weave-0.5.5/file/tests/cmd2.testfile +1 -0
  477. polyfile_weave-0.5.5/file/tests/cmd3.result +1 -0
  478. polyfile_weave-0.5.5/file/tests/cmd3.testfile +2 -0
  479. polyfile_weave-0.5.5/file/tests/cmd4.result +1 -0
  480. polyfile_weave-0.5.5/file/tests/cmd4.testfile +2 -0
  481. polyfile_weave-0.5.5/file/tests/dsd64-dff.result +1 -0
  482. polyfile_weave-0.5.5/file/tests/dsd64-dff.testfile +0 -0
  483. polyfile_weave-0.5.5/file/tests/dsd64-dsf.result +1 -0
  484. polyfile_weave-0.5.5/file/tests/dsd64-dsf.testfile +0 -0
  485. polyfile_weave-0.5.5/file/tests/escapevel.result +1 -0
  486. polyfile_weave-0.5.5/file/tests/escapevel.testfile +0 -0
  487. polyfile_weave-0.5.5/file/tests/ext4.result +1 -0
  488. polyfile_weave-0.5.5/file/tests/ext4.testfile +0 -0
  489. polyfile_weave-0.5.5/file/tests/fit-map-data.result +1 -0
  490. polyfile_weave-0.5.5/file/tests/fit-map-data.testfile +0 -0
  491. polyfile_weave-0.5.5/file/tests/gedcom.result +1 -0
  492. polyfile_weave-0.5.5/file/tests/gedcom.testfile +8 -0
  493. polyfile_weave-0.5.5/file/tests/gpkg-1-zst.result +1 -0
  494. polyfile_weave-0.5.5/file/tests/gpkg-1-zst.testfile +0 -0
  495. polyfile_weave-0.5.5/file/tests/hddrawcopytool.result +1 -0
  496. polyfile_weave-0.5.5/file/tests/hddrawcopytool.testfile +0 -0
  497. polyfile_weave-0.5.5/file/tests/hello-racket_rkt.result +1 -0
  498. polyfile_weave-0.5.5/file/tests/hello-racket_rkt.testfile +0 -0
  499. polyfile_weave-0.5.5/file/tests/issue311docx.result +1 -0
  500. polyfile_weave-0.5.5/file/tests/issue311docx.testfile +0 -0
  501. polyfile_weave-0.5.5/file/tests/issue359xlsx.result +1 -0
  502. polyfile_weave-0.5.5/file/tests/issue359xlsx.testfile +0 -0
  503. polyfile_weave-0.5.5/file/tests/jpeg-text.result +1 -0
  504. polyfile_weave-0.5.5/file/tests/jpeg-text.testfile +1 -0
  505. polyfile_weave-0.5.5/file/tests/json1.result +1 -0
  506. polyfile_weave-0.5.5/file/tests/json1.testfile +14 -0
  507. polyfile_weave-0.5.5/file/tests/json2.result +1 -0
  508. polyfile_weave-0.5.5/file/tests/json2.testfile +22 -0
  509. polyfile_weave-0.5.5/file/tests/json3.result +1 -0
  510. polyfile_weave-0.5.5/file/tests/json3.testfile +13 -0
  511. polyfile_weave-0.5.5/file/tests/json4.result +1 -0
  512. polyfile_weave-0.5.5/file/tests/json4.testfile +1 -0
  513. polyfile_weave-0.5.5/file/tests/json5.result +1 -0
  514. polyfile_weave-0.5.5/file/tests/json5.testfile +1 -0
  515. polyfile_weave-0.5.5/file/tests/json6.result +1 -0
  516. polyfile_weave-0.5.5/file/tests/json6.testfile +1 -0
  517. polyfile_weave-0.5.5/file/tests/json7.result +1 -0
  518. polyfile_weave-0.5.5/file/tests/json7.testfile +1 -0
  519. polyfile_weave-0.5.5/file/tests/json8.result +1 -0
  520. polyfile_weave-0.5.5/file/tests/json8.testfile +1 -0
  521. polyfile_weave-0.5.5/file/tests/jsonlines1.result +1 -0
  522. polyfile_weave-0.5.5/file/tests/jsonlines1.testfile +2 -0
  523. polyfile_weave-0.5.5/file/tests/matilde.arm.result +1 -0
  524. polyfile_weave-0.5.5/file/tests/matilde.arm.testfile +0 -0
  525. polyfile_weave-0.5.5/file/tests/multiple-A.magic +2 -0
  526. polyfile_weave-0.5.5/file/tests/multiple-B.magic +2 -0
  527. polyfile_weave-0.5.5/file/tests/multiple.flags +1 -0
  528. polyfile_weave-0.5.5/file/tests/multiple.result +1 -0
  529. polyfile_weave-0.5.5/file/tests/multiple.testfile +1 -0
  530. polyfile_weave-0.5.5/file/tests/pcjr.result +1 -0
  531. polyfile_weave-0.5.5/file/tests/pcjr.testfile +0 -0
  532. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v2-phil.result +1 -0
  533. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v2-phil.testfile +0 -0
  534. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v3-lutz.result +1 -0
  535. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v3-lutz.testfile +0 -0
  536. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-dsa.result +1 -0
  537. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-dsa.testfile +0 -0
  538. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-ecc-no-userid-secret.result +1 -0
  539. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-ecc-no-userid-secret.testfile +0 -0
  540. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-ecc-rev.result +0 -0
  541. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-ecc-secret-key.result +1 -0
  542. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-ecc-secret-key.testfile +0 -0
  543. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-key.result +1 -0
  544. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-key.testfile +0 -0
  545. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-no-userid-rev.result +0 -0
  546. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-no-userid-secret.result +1 -0
  547. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-no-userid-secret.testfile +0 -0
  548. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-secret-key.result +1 -0
  549. polyfile_weave-0.5.5/file/tests/pgp-binary-key-v4-rsa-secret-key.testfile +0 -0
  550. polyfile_weave-0.5.5/file/tests/pnm1.result +1 -0
  551. polyfile_weave-0.5.5/file/tests/pnm1.testfile +5 -0
  552. polyfile_weave-0.5.5/file/tests/pnm2.result +1 -0
  553. polyfile_weave-0.5.5/file/tests/pnm2.testfile +0 -0
  554. polyfile_weave-0.5.5/file/tests/pnm3.result +1 -0
  555. polyfile_weave-0.5.5/file/tests/pnm3.testfile +5 -0
  556. polyfile_weave-0.5.5/file/tests/regex-eol.magic +6 -0
  557. polyfile_weave-0.5.5/file/tests/regex-eol.result +1 -0
  558. polyfile_weave-0.5.5/file/tests/regex-eol.testfile +24 -0
  559. polyfile_weave-0.5.5/file/tests/test.c +162 -0
  560. polyfile_weave-0.5.5/file/tests/uf2.result +1 -0
  561. polyfile_weave-0.5.5/file/tests/uf2.testfile +0 -0
  562. polyfile_weave-0.5.5/file/tests/xclbin.result +1 -0
  563. polyfile_weave-0.5.5/file/tests/xclbin.testfile +0 -0
  564. polyfile_weave-0.5.5/file/tests/zstd-3-skippable-frames.result +1 -0
  565. polyfile_weave-0.5.5/file/tests/zstd-dictionary-0.result +1 -0
  566. polyfile_weave-0.5.5/file/tests/zstd-dictionary-1.result +1 -0
  567. polyfile_weave-0.5.5/file/tests/zstd-dictionary-2.result +1 -0
  568. polyfile_weave-0.5.5/file/tests/zstd-skippable-frame-0.result +1 -0
  569. polyfile_weave-0.5.5/file/tests/zstd-skippable-frame-4.result +1 -0
  570. polyfile_weave-0.5.5/file/tests/zstd-skippable-frame-8.result +1 -0
  571. polyfile_weave-0.5.5/file/tests/zstd-skippable-frame-C.result +1 -0
  572. polyfile_weave-0.5.5/file/tests/zstd-v0.2-FF.result +1 -0
  573. polyfile_weave-0.5.5/file/tests/zstd-v0.2-FF.testfile +1 -0
  574. polyfile_weave-0.5.5/file/tests/zstd-v0.3-FF.result +1 -0
  575. polyfile_weave-0.5.5/file/tests/zstd-v0.3-FF.testfile +1 -0
  576. polyfile_weave-0.5.5/file/tests/zstd-v0.4-FF.result +1 -0
  577. polyfile_weave-0.5.5/file/tests/zstd-v0.4-FF.testfile +1 -0
  578. polyfile_weave-0.5.5/file/tests/zstd-v0.5-FF.result +1 -0
  579. polyfile_weave-0.5.5/file/tests/zstd-v0.5-FF.testfile +1 -0
  580. polyfile_weave-0.5.5/file/tests/zstd-v0.6-FF.result +1 -0
  581. polyfile_weave-0.5.5/file/tests/zstd-v0.6-FF.testfile +1 -0
  582. polyfile_weave-0.5.5/file/tests/zstd-v0.7-00.result +1 -0
  583. polyfile_weave-0.5.5/file/tests/zstd-v0.7-21.result +1 -0
  584. polyfile_weave-0.5.5/file/tests/zstd-v0.7-21.testfile +1 -0
  585. polyfile_weave-0.5.5/file/tests/zstd-v0.7-22.result +1 -0
  586. polyfile_weave-0.5.5/file/tests/zstd-v0.7-22.testfile +1 -0
  587. polyfile_weave-0.5.5/file/tests/zstd-v0.8-00.result +1 -0
  588. polyfile_weave-0.5.5/file/tests/zstd-v0.8-01.result +1 -0
  589. polyfile_weave-0.5.5/file/tests/zstd-v0.8-01.testfile +1 -0
  590. polyfile_weave-0.5.5/file/tests/zstd-v0.8-02.result +1 -0
  591. polyfile_weave-0.5.5/file/tests/zstd-v0.8-02.testfile +1 -0
  592. polyfile_weave-0.5.5/file/tests/zstd-v0.8-03.result +1 -0
  593. polyfile_weave-0.5.5/file/tests/zstd-v0.8-03.testfile +1 -0
  594. polyfile_weave-0.5.5/file/tests/zstd-v0.8-16.result +1 -0
  595. polyfile_weave-0.5.5/file/tests/zstd-v0.8-16.testfile +1 -0
  596. polyfile_weave-0.5.5/file/tests/zstd-v0.8-20.result +1 -0
  597. polyfile_weave-0.5.5/file/tests/zstd-v0.8-20.testfile +1 -0
  598. polyfile_weave-0.5.5/file/tests/zstd-v0.8-21.result +1 -0
  599. polyfile_weave-0.5.5/file/tests/zstd-v0.8-21.testfile +1 -0
  600. polyfile_weave-0.5.5/file/tests/zstd-v0.8-22.result +1 -0
  601. polyfile_weave-0.5.5/file/tests/zstd-v0.8-22.testfile +1 -0
  602. polyfile_weave-0.5.5/file/tests/zstd-v0.8-23.result +1 -0
  603. polyfile_weave-0.5.5/file/tests/zstd-v0.8-23.testfile +1 -0
  604. polyfile_weave-0.5.5/file/tests/zstd-v0.8-F4.result +1 -0
  605. polyfile_weave-0.5.5/file/tests/zstd-v0.8-F4.testfile +1 -0
  606. polyfile_weave-0.5.5/file/tests/zstd-v0.8-FF.result +1 -0
  607. polyfile_weave-0.5.5/file/tests/zstd-v0.8-FF.testfile +1 -0
  608. polyfile_weave-0.5.5/hooks/README.md +6 -0
  609. polyfile_weave-0.5.5/hooks/pre-commit +49 -0
  610. polyfile_weave-0.5.5/hooks/pre-push +82 -0
  611. polyfile_weave-0.5.5/kaitai_struct_formats/.editorconfig +9 -0
  612. polyfile_weave-0.5.5/kaitai_struct_formats/.git +1 -0
  613. polyfile_weave-0.5.5/kaitai_struct_formats/.gitattributes +1 -0
  614. polyfile_weave-0.5.5/kaitai_struct_formats/.github/checksums +1 -0
  615. polyfile_weave-0.5.5/kaitai_struct_formats/.github/workflows/main.yml +76 -0
  616. polyfile_weave-0.5.5/kaitai_struct_formats/.gitmodules +3 -0
  617. polyfile_weave-0.5.5/kaitai_struct_formats/3d/gltf_binary.ksy +71 -0
  618. polyfile_weave-0.5.5/kaitai_struct_formats/CONTRIBUTING.md +34 -0
  619. polyfile_weave-0.5.5/kaitai_struct_formats/README.md +41 -0
  620. polyfile_weave-0.5.5/kaitai_struct_formats/_build/.gitignore +4 -0
  621. polyfile_weave-0.5.5/kaitai_struct_formats/_build/Gemfile +4 -0
  622. polyfile_weave-0.5.5/kaitai_struct_formats/_build/build +8 -0
  623. polyfile_weave-0.5.5/kaitai_struct_formats/_build/build-diagrams +18 -0
  624. polyfile_weave-0.5.5/kaitai_struct_formats/_build/build-html +446 -0
  625. polyfile_weave-0.5.5/kaitai_struct_formats/_build/build-target +13 -0
  626. polyfile_weave-0.5.5/kaitai_struct_formats/_build/check-errors +39 -0
  627. polyfile_weave-0.5.5/kaitai_struct_formats/_build/footer.html.erb +35 -0
  628. polyfile_weave-0.5.5/kaitai_struct_formats/_build/format_base.html.erb +16 -0
  629. polyfile_weave-0.5.5/kaitai_struct_formats/_build/format_header.html.erb +100 -0
  630. polyfile_weave-0.5.5/kaitai_struct_formats/_build/format_index.html.erb +67 -0
  631. polyfile_weave-0.5.5/kaitai_struct_formats/_build/format_lang.html.erb +48 -0
  632. polyfile_weave-0.5.5/kaitai_struct_formats/_build/format_xref.html.erb +97 -0
  633. polyfile_weave-0.5.5/kaitai_struct_formats/_build/header.html.erb +87 -0
  634. polyfile_weave-0.5.5/kaitai_struct_formats/_build/test/Main.cs +6 -0
  635. polyfile_weave-0.5.5/kaitai_struct_formats/_build/test/main.cpp +3 -0
  636. polyfile_weave-0.5.5/kaitai_struct_formats/_build/test-target +279 -0
  637. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_cpp_stl.html.erb +77 -0
  638. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_csharp.html.erb +34 -0
  639. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_java.html.erb +36 -0
  640. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_javascript.html.erb +29 -0
  641. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_python.html.erb +36 -0
  642. polyfile_weave-0.5.5/kaitai_struct_formats/_build/usage_ruby.html.erb +34 -0
  643. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_bootldr_asus.ksy +70 -0
  644. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_bootldr_huawei.ksy +99 -0
  645. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_bootldr_qcom.ksy +181 -0
  646. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_dto.ksy +79 -0
  647. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_img.ksy +123 -0
  648. polyfile_weave-0.5.5/kaitai_struct_formats/archive/android_sparse.ksy +143 -0
  649. polyfile_weave-0.5.5/kaitai_struct_formats/archive/cpio_old_le.ksy +69 -0
  650. polyfile_weave-0.5.5/kaitai_struct_formats/archive/gzip.ksy +196 -0
  651. polyfile_weave-0.5.5/kaitai_struct_formats/archive/lzh.ksy +90 -0
  652. polyfile_weave-0.5.5/kaitai_struct_formats/archive/mozilla_mar.ksy +116 -0
  653. polyfile_weave-0.5.5/kaitai_struct_formats/archive/phar_without_stub.ksy +310 -0
  654. polyfile_weave-0.5.5/kaitai_struct_formats/archive/rar.ksy +178 -0
  655. polyfile_weave-0.5.5/kaitai_struct_formats/archive/respack.ksy +28 -0
  656. polyfile_weave-0.5.5/kaitai_struct_formats/archive/rpm.ksy +1495 -0
  657. polyfile_weave-0.5.5/kaitai_struct_formats/archive/xar.ksy +120 -0
  658. polyfile_weave-0.5.5/kaitai_struct_formats/archive/zip.ksy +371 -0
  659. polyfile_weave-0.5.5/kaitai_struct_formats/archive/zisofs.ksy +77 -0
  660. polyfile_weave-0.5.5/kaitai_struct_formats/cad/monomakh_sapr_chg.ksy +36 -0
  661. polyfile_weave-0.5.5/kaitai_struct_formats/common/bcd.ksy +124 -0
  662. polyfile_weave-0.5.5/kaitai_struct_formats/common/bytes_with_io.ksy +10 -0
  663. polyfile_weave-0.5.5/kaitai_struct_formats/common/dos_datetime.ksy +105 -0
  664. polyfile_weave-0.5.5/kaitai_struct_formats/common/riff.ksy +159 -0
  665. polyfile_weave-0.5.5/kaitai_struct_formats/common/utf8_string.ksy +75 -0
  666. polyfile_weave-0.5.5/kaitai_struct_formats/common/vlq_base128_be.ksy +55 -0
  667. polyfile_weave-0.5.5/kaitai_struct_formats/common/vlq_base128_le.ksy +65 -0
  668. polyfile_weave-0.5.5/kaitai_struct_formats/database/dbf.ksy +136 -0
  669. polyfile_weave-0.5.5/kaitai_struct_formats/database/gettext_mo.ksy +194 -0
  670. polyfile_weave-0.5.5/kaitai_struct_formats/database/sqlite3.ksy +244 -0
  671. polyfile_weave-0.5.5/kaitai_struct_formats/database/tsm.ksy +86 -0
  672. polyfile_weave-0.5.5/kaitai_struct_formats/executable/android_nanoapp_header.ksy +38 -0
  673. polyfile_weave-0.5.5/kaitai_struct_formats/executable/dex.ksy +759 -0
  674. polyfile_weave-0.5.5/kaitai_struct_formats/executable/dos_mz.ksy +93 -0
  675. polyfile_weave-0.5.5/kaitai_struct_formats/executable/elf.ksy +1905 -0
  676. polyfile_weave-0.5.5/kaitai_struct_formats/executable/java_class.ksy +494 -0
  677. polyfile_weave-0.5.5/kaitai_struct_formats/executable/mach_o.ksy +1390 -0
  678. polyfile_weave-0.5.5/kaitai_struct_formats/executable/mach_o_fat.ksy +50 -0
  679. polyfile_weave-0.5.5/kaitai_struct_formats/executable/microsoft_pe.ksy +412 -0
  680. polyfile_weave-0.5.5/kaitai_struct_formats/executable/python_pyc_27.ksy +320 -0
  681. polyfile_weave-0.5.5/kaitai_struct_formats/executable/swf.ksy +212 -0
  682. polyfile_weave-0.5.5/kaitai_struct_formats/executable/uefi_te.ksy +150 -0
  683. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/android_super.ksy +210 -0
  684. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/apm_partition_table.ksy +102 -0
  685. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/apple_single_double.ksy +132 -0
  686. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/btrfs_stream.ksy +161 -0
  687. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/cramfs.ksy +146 -0
  688. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/ext2.ksy +271 -0
  689. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/gpt_partition_table.ksy +79 -0
  690. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/iso9660.ksy +275 -0
  691. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/luks.ksy +78 -0
  692. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/lvm2.ksy +172 -0
  693. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/mbr_partition_table.ksy +57 -0
  694. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/tr_dos_image.ksy +157 -0
  695. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/vdi.ksy +244 -0
  696. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/vfat.ksy +326 -0
  697. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/vmware_vmdk.ksy +90 -0
  698. polyfile_weave-0.5.5/kaitai_struct_formats/filesystem/zx_spectrum_tap.ksy +90 -0
  699. polyfile_weave-0.5.5/kaitai_struct_formats/firmware/andes_firmware.ksy +32 -0
  700. polyfile_weave-0.5.5/kaitai_struct_formats/firmware/broadcom_trx.ksy +142 -0
  701. polyfile_weave-0.5.5/kaitai_struct_formats/firmware/ines.ksy +152 -0
  702. polyfile_weave-0.5.5/kaitai_struct_formats/firmware/uimage.ksy +353 -0
  703. polyfile_weave-0.5.5/kaitai_struct_formats/font/grub2_font.ksy +137 -0
  704. polyfile_weave-0.5.5/kaitai_struct_formats/font/pcf_font.ksy +317 -0
  705. polyfile_weave-0.5.5/kaitai_struct_formats/font/ttf.ksy +1012 -0
  706. polyfile_weave-0.5.5/kaitai_struct_formats/game/allegro_dat.ksy +163 -0
  707. polyfile_weave-0.5.5/kaitai_struct_formats/game/doom_wad.ksy +300 -0
  708. polyfile_weave-0.5.5/kaitai_struct_formats/game/dune_2_pak.ksy +45 -0
  709. polyfile_weave-0.5.5/kaitai_struct_formats/game/fallout2_dat.ksy +69 -0
  710. polyfile_weave-0.5.5/kaitai_struct_formats/game/fallout_dat.ksy +69 -0
  711. polyfile_weave-0.5.5/kaitai_struct_formats/game/ftl_dat.ksy +36 -0
  712. polyfile_weave-0.5.5/kaitai_struct_formats/game/gran_turismo_vol.ksy +55 -0
  713. polyfile_weave-0.5.5/kaitai_struct_formats/game/heaps_pak.ksy +73 -0
  714. polyfile_weave-0.5.5/kaitai_struct_formats/game/heroes_of_might_and_magic_agg.ksy +41 -0
  715. polyfile_weave-0.5.5/kaitai_struct_formats/game/heroes_of_might_and_magic_bmp.ksy +15 -0
  716. polyfile_weave-0.5.5/kaitai_struct_formats/game/minecraft_nbt.ksy +230 -0
  717. polyfile_weave-0.5.5/kaitai_struct_formats/game/quake_mdl.ksy +238 -0
  718. polyfile_weave-0.5.5/kaitai_struct_formats/game/quake_pak.ksy +42 -0
  719. polyfile_weave-0.5.5/kaitai_struct_formats/game/renderware_binary_stream.ksy +433 -0
  720. polyfile_weave-0.5.5/kaitai_struct_formats/game/saints_row_2_vpp_pc.ksy +92 -0
  721. polyfile_weave-0.5.5/kaitai_struct_formats/game/warcraft_2_pud.ksy +242 -0
  722. polyfile_weave-0.5.5/kaitai_struct_formats/geospatial/shapefile_index.ksy +81 -0
  723. polyfile_weave-0.5.5/kaitai_struct_formats/geospatial/shapefile_main.ksy +361 -0
  724. polyfile_weave-0.5.5/kaitai_struct_formats/hardware/dtb.ksy +156 -0
  725. polyfile_weave-0.5.5/kaitai_struct_formats/hardware/edid.ksy +273 -0
  726. polyfile_weave-0.5.5/kaitai_struct_formats/hardware/mifare/mifare_classic.ksy +250 -0
  727. polyfile_weave-0.5.5/kaitai_struct_formats/image/bmp.ksy +614 -0
  728. polyfile_weave-0.5.5/kaitai_struct_formats/image/dicom.ksy +4193 -0
  729. polyfile_weave-0.5.5/kaitai_struct_formats/image/exif.ksy +544 -0
  730. polyfile_weave-0.5.5/kaitai_struct_formats/image/gif.ksy +206 -0
  731. polyfile_weave-0.5.5/kaitai_struct_formats/image/gimp_brush.ksy +125 -0
  732. polyfile_weave-0.5.5/kaitai_struct_formats/image/icc_4.ksy +1714 -0
  733. polyfile_weave-0.5.5/kaitai_struct_formats/image/ico.ksy +87 -0
  734. polyfile_weave-0.5.5/kaitai_struct_formats/image/jpeg.ksy +223 -0
  735. polyfile_weave-0.5.5/kaitai_struct_formats/image/nitf.ksy +822 -0
  736. polyfile_weave-0.5.5/kaitai_struct_formats/image/pcx.ksy +115 -0
  737. polyfile_weave-0.5.5/kaitai_struct_formats/image/pcx_dcx.ksy +34 -0
  738. polyfile_weave-0.5.5/kaitai_struct_formats/image/pif.ksy +169 -0
  739. polyfile_weave-0.5.5/kaitai_struct_formats/image/png.ksy +428 -0
  740. polyfile_weave-0.5.5/kaitai_struct_formats/image/psx_tim.ksy +52 -0
  741. polyfile_weave-0.5.5/kaitai_struct_formats/image/tga.ksy +146 -0
  742. polyfile_weave-0.5.5/kaitai_struct_formats/image/wmf.ksy +275 -0
  743. polyfile_weave-0.5.5/kaitai_struct_formats/image/xwd.ksy +142 -0
  744. polyfile_weave-0.5.5/kaitai_struct_formats/log/aix_utmp.ksy +83 -0
  745. polyfile_weave-0.5.5/kaitai_struct_formats/log/glibc_utmp.ksy +79 -0
  746. polyfile_weave-0.5.5/kaitai_struct_formats/log/hashcat_restore.ksy +32 -0
  747. polyfile_weave-0.5.5/kaitai_struct_formats/log/mcap.ksy +439 -0
  748. polyfile_weave-0.5.5/kaitai_struct_formats/log/sudoers_ts.ksy +117 -0
  749. polyfile_weave-0.5.5/kaitai_struct_formats/log/systemd_journal.ksy +211 -0
  750. polyfile_weave-0.5.5/kaitai_struct_formats/log/windows_evt_log.ksy +225 -0
  751. polyfile_weave-0.5.5/kaitai_struct_formats/machine_code/code_6502.ksy +300 -0
  752. polyfile_weave-0.5.5/kaitai_struct_formats/macos/compressed_resource.ksy +182 -0
  753. polyfile_weave-0.5.5/kaitai_struct_formats/macos/ds_store.ksy +223 -0
  754. polyfile_weave-0.5.5/kaitai_struct_formats/macos/mac_os_resource_snd.ksy +449 -0
  755. polyfile_weave-0.5.5/kaitai_struct_formats/macos/resource_compression/dcmp_0.ksy +535 -0
  756. polyfile_weave-0.5.5/kaitai_struct_formats/macos/resource_compression/dcmp_1.ksy +316 -0
  757. polyfile_weave-0.5.5/kaitai_struct_formats/macos/resource_compression/dcmp_2.ksy +292 -0
  758. polyfile_weave-0.5.5/kaitai_struct_formats/macos/resource_compression/dcmp_variable_length_integer.ksy +68 -0
  759. polyfile_weave-0.5.5/kaitai_struct_formats/macos/resource_fork.ksy +593 -0
  760. polyfile_weave-0.5.5/kaitai_struct_formats/media/android_opengl_shaders_cache.ksy +81 -0
  761. polyfile_weave-0.5.5/kaitai_struct_formats/media/au.ksy +163 -0
  762. polyfile_weave-0.5.5/kaitai_struct_formats/media/avi.ksy +151 -0
  763. polyfile_weave-0.5.5/kaitai_struct_formats/media/blender_blend.ksy +184 -0
  764. polyfile_weave-0.5.5/kaitai_struct_formats/media/creative_voice_file.ksy +173 -0
  765. polyfile_weave-0.5.5/kaitai_struct_formats/media/genmidi_op2.ksy +88 -0
  766. polyfile_weave-0.5.5/kaitai_struct_formats/media/id3v1_1.ksy +185 -0
  767. polyfile_weave-0.5.5/kaitai_struct_formats/media/id3v2_3.ksy +143 -0
  768. polyfile_weave-0.5.5/kaitai_struct_formats/media/id3v2_4.ksy +196 -0
  769. polyfile_weave-0.5.5/kaitai_struct_formats/media/magicavoxel_vox.ksy +190 -0
  770. polyfile_weave-0.5.5/kaitai_struct_formats/media/ogg.ksy +108 -0
  771. polyfile_weave-0.5.5/kaitai_struct_formats/media/quicktime_mov.ksy +476 -0
  772. polyfile_weave-0.5.5/kaitai_struct_formats/media/standard_midi_file.ksy +172 -0
  773. polyfile_weave-0.5.5/kaitai_struct_formats/media/stl.ksy +68 -0
  774. polyfile_weave-0.5.5/kaitai_struct_formats/media/tracker_modules/fasttracker_xm_module.ksy +324 -0
  775. polyfile_weave-0.5.5/kaitai_struct_formats/media/tracker_modules/s3m.ksy +263 -0
  776. polyfile_weave-0.5.5/kaitai_struct_formats/media/vp8_ivf.ksy +71 -0
  777. polyfile_weave-0.5.5/kaitai_struct_formats/media/wav.ksy +679 -0
  778. polyfile_weave-0.5.5/kaitai_struct_formats/network/bitcoin_transaction.ksy +151 -0
  779. polyfile_weave-0.5.5/kaitai_struct_formats/network/dime_message.ksy +115 -0
  780. polyfile_weave-0.5.5/kaitai_struct_formats/network/dns_packet.ksy +231 -0
  781. polyfile_weave-0.5.5/kaitai_struct_formats/network/ethernet_frame.ksy +85 -0
  782. polyfile_weave-0.5.5/kaitai_struct_formats/network/hccap.ksy +65 -0
  783. polyfile_weave-0.5.5/kaitai_struct_formats/network/hccapx.ksy +98 -0
  784. polyfile_weave-0.5.5/kaitai_struct_formats/network/icmp_packet.ksy +78 -0
  785. polyfile_weave-0.5.5/kaitai_struct_formats/network/ipv4_packet.ksy +65 -0
  786. polyfile_weave-0.5.5/kaitai_struct_formats/network/ipv6_packet.ksy +29 -0
  787. polyfile_weave-0.5.5/kaitai_struct_formats/network/microsoft_network_monitor_v2.ksy +221 -0
  788. polyfile_weave-0.5.5/kaitai_struct_formats/network/packet_ppi.ksy +334 -0
  789. polyfile_weave-0.5.5/kaitai_struct_formats/network/pcap.ksy +298 -0
  790. polyfile_weave-0.5.5/kaitai_struct_formats/network/protocol_body.ksy +203 -0
  791. polyfile_weave-0.5.5/kaitai_struct_formats/network/rtcp_payload.ksy +267 -0
  792. polyfile_weave-0.5.5/kaitai_struct_formats/network/rtp_packet.ksy +100 -0
  793. polyfile_weave-0.5.5/kaitai_struct_formats/network/rtpdump.ksy +72 -0
  794. polyfile_weave-0.5.5/kaitai_struct_formats/network/some_ip/some_ip.ksy +153 -0
  795. polyfile_weave-0.5.5/kaitai_struct_formats/network/some_ip/some_ip_container.ksy +13 -0
  796. polyfile_weave-0.5.5/kaitai_struct_formats/network/some_ip/some_ip_sd.ksy +48 -0
  797. polyfile_weave-0.5.5/kaitai_struct_formats/network/some_ip/some_ip_sd_entries.ksy +80 -0
  798. polyfile_weave-0.5.5/kaitai_struct_formats/network/some_ip/some_ip_sd_options.ksy +179 -0
  799. polyfile_weave-0.5.5/kaitai_struct_formats/network/tcp_segment.ksy +36 -0
  800. polyfile_weave-0.5.5/kaitai_struct_formats/network/tls_client_hello.ksy +132 -0
  801. polyfile_weave-0.5.5/kaitai_struct_formats/network/udp_datagram.ksy +24 -0
  802. polyfile_weave-0.5.5/kaitai_struct_formats/network/websocket.ksy +97 -0
  803. polyfile_weave-0.5.5/kaitai_struct_formats/scientific/nt_mdt/nt_mdt.ksy +789 -0
  804. polyfile_weave-0.5.5/kaitai_struct_formats/scientific/nt_mdt/nt_mdt_pal.ksy +82 -0
  805. polyfile_weave-0.5.5/kaitai_struct_formats/scientific/spectroscopy/avantes_roh60.ksy +70 -0
  806. polyfile_weave-0.5.5/kaitai_struct_formats/scientific/spectroscopy/specpr.ksy +263 -0
  807. polyfile_weave-0.5.5/kaitai_struct_formats/security/efivar_signature_list.ksy +153 -0
  808. polyfile_weave-0.5.5/kaitai_struct_formats/security/openpgp_message.ksy +507 -0
  809. polyfile_weave-0.5.5/kaitai_struct_formats/security/ssh_public_key.ksy +122 -0
  810. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/asn1/asn1_der.ksy +121 -0
  811. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/bson.ksy +196 -0
  812. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/chrome_pak.ksy +112 -0
  813. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/google_protobuf.ksy +99 -0
  814. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/microsoft_cfb.ksy +149 -0
  815. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/msgpack.ksy +195 -0
  816. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/php_serialized_value.ksy +326 -0
  817. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/python_pickle.ksy +620 -0
  818. polyfile_weave-0.5.5/kaitai_struct_formats/serialization/ruby_marshal.ksy +210 -0
  819. polyfile_weave-0.5.5/kaitai_struct_formats/windows/regf.ksy +290 -0
  820. polyfile_weave-0.5.5/kaitai_struct_formats/windows/windows_lnk_file.ksy +274 -0
  821. polyfile_weave-0.5.5/kaitai_struct_formats/windows/windows_minidump.ksy +358 -0
  822. polyfile_weave-0.5.5/kaitai_struct_formats/windows/windows_resource_file.ksy +157 -0
  823. polyfile_weave-0.5.5/kaitai_struct_formats/windows/windows_shell_items.ksy +81 -0
  824. polyfile_weave-0.5.5/kaitai_struct_formats/windows/windows_systemtime.ksy +42 -0
  825. polyfile_weave-0.5.5/logo/polyfile.eps +0 -0
  826. polyfile_weave-0.5.5/logo/polyfile.png +0 -0
  827. polyfile_weave-0.5.5/logo/polyfile.svg +96 -0
  828. polyfile_weave-0.5.5/logo/polyfile_bw.eps +0 -0
  829. polyfile_weave-0.5.5/logo/polyfile_bw.png +0 -0
  830. polyfile_weave-0.5.5/logo/polyfile_bw.svg +123 -0
  831. polyfile_weave-0.5.5/logo/polyfile_name.eps +0 -0
  832. polyfile_weave-0.5.5/logo/polyfile_name.png +0 -0
  833. polyfile_weave-0.5.5/logo/polyfile_name.svg +119 -0
  834. polyfile_weave-0.5.5/logo/polyfile_name_bw.eps +0 -0
  835. polyfile_weave-0.5.5/logo/polyfile_name_bw.png +0 -0
  836. polyfile_weave-0.5.5/logo/polyfile_name_bw.svg +147 -0
  837. polyfile_weave-0.5.5/polyfile/__init__.py +15 -0
  838. polyfile_weave-0.5.5/polyfile/__main__.py +394 -0
  839. polyfile_weave-0.5.5/polyfile/arithmetic.py +27 -0
  840. polyfile_weave-0.5.5/polyfile/ast.py +114 -0
  841. polyfile_weave-0.5.5/polyfile/debugger.py +1039 -0
  842. polyfile_weave-0.5.5/polyfile/expressions.py +346 -0
  843. polyfile_weave-0.5.5/polyfile/fileutils.py +343 -0
  844. polyfile_weave-0.5.5/polyfile/html.py +135 -0
  845. polyfile_weave-0.5.5/polyfile/http/__init__.py +1 -0
  846. polyfile_weave-0.5.5/polyfile/http/defacto.py +37 -0
  847. polyfile_weave-0.5.5/polyfile/http/deprecated.py +51 -0
  848. polyfile_weave-0.5.5/polyfile/http/experimental.py +67 -0
  849. polyfile_weave-0.5.5/polyfile/http/http_11.py +548 -0
  850. polyfile_weave-0.5.5/polyfile/http/matcher.py +37 -0
  851. polyfile_weave-0.5.5/polyfile/http/structured_headers.py +48 -0
  852. polyfile_weave-0.5.5/polyfile/iterators.py +72 -0
  853. polyfile_weave-0.5.5/polyfile/jpeg.py +24 -0
  854. polyfile_weave-0.5.5/polyfile/kaitai/__init__.py +0 -0
  855. polyfile_weave-0.5.5/polyfile/kaitai/compiler.py +156 -0
  856. polyfile_weave-0.5.5/polyfile/kaitai/parser.py +312 -0
  857. polyfile_weave-0.5.5/polyfile/kaitai/parsers/__init__.py +0 -0
  858. polyfile_weave-0.5.5/polyfile/kaitai/parsers/aix_utmp.py +116 -0
  859. polyfile_weave-0.5.5/polyfile/kaitai/parsers/allegro_dat.py +367 -0
  860. polyfile_weave-0.5.5/polyfile/kaitai/parsers/andes_firmware.py +64 -0
  861. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_bootldr_asus.py +105 -0
  862. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_bootldr_huawei.py +181 -0
  863. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_bootldr_qcom.py +217 -0
  864. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_dto.py +138 -0
  865. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_img.py +319 -0
  866. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_nanoapp_header.py +83 -0
  867. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_opengl_shaders_cache.py +151 -0
  868. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_sparse.py +237 -0
  869. polyfile_weave-0.5.5/polyfile/kaitai/parsers/android_super.py +401 -0
  870. polyfile_weave-0.5.5/polyfile/kaitai/parsers/apm_partition_table.py +196 -0
  871. polyfile_weave-0.5.5/polyfile/kaitai/parsers/apple_single_double.py +180 -0
  872. polyfile_weave-0.5.5/polyfile/kaitai/parsers/asn1_der.py +235 -0
  873. polyfile_weave-0.5.5/polyfile/kaitai/parsers/au.py +138 -0
  874. polyfile_weave-0.5.5/polyfile/kaitai/parsers/avantes_roh60.py +112 -0
  875. polyfile_weave-0.5.5/polyfile/kaitai/parsers/avi.py +296 -0
  876. polyfile_weave-0.5.5/polyfile/kaitai/parsers/bcd.py +111 -0
  877. polyfile_weave-0.5.5/polyfile/kaitai/parsers/bitcoin_transaction.py +210 -0
  878. polyfile_weave-0.5.5/polyfile/kaitai/parsers/blender_blend.py +334 -0
  879. polyfile_weave-0.5.5/polyfile/kaitai/parsers/bmp.py +780 -0
  880. polyfile_weave-0.5.5/polyfile/kaitai/parsers/bson.py +411 -0
  881. polyfile_weave-0.5.5/polyfile/kaitai/parsers/btrfs_stream.py +318 -0
  882. polyfile_weave-0.5.5/polyfile/kaitai/parsers/bytes_with_io.py +27 -0
  883. polyfile_weave-0.5.5/polyfile/kaitai/parsers/chrome_pak.py +194 -0
  884. polyfile_weave-0.5.5/polyfile/kaitai/parsers/code_6502.py +456 -0
  885. polyfile_weave-0.5.5/polyfile/kaitai/parsers/compressed_resource.py +217 -0
  886. polyfile_weave-0.5.5/polyfile/kaitai/parsers/cpio_old_le.py +154 -0
  887. polyfile_weave-0.5.5/polyfile/kaitai/parsers/cramfs.py +344 -0
  888. polyfile_weave-0.5.5/polyfile/kaitai/parsers/creative_voice_file.py +342 -0
  889. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dbf.py +274 -0
  890. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dcmp_0.py +664 -0
  891. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dcmp_1.py +422 -0
  892. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dcmp_2.py +312 -0
  893. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dcmp_variable_length_integer.py +66 -0
  894. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dex.py +1086 -0
  895. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dicom.py +4370 -0
  896. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dime_message.py +201 -0
  897. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dns_packet.py +569 -0
  898. polyfile_weave-0.5.5/polyfile/kaitai/parsers/doom_wad.py +654 -0
  899. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dos_datetime.py +191 -0
  900. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dos_mz.py +172 -0
  901. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ds_store.py +513 -0
  902. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dtb.py +310 -0
  903. polyfile_weave-0.5.5/polyfile/kaitai/parsers/dune_2_pak.py +126 -0
  904. polyfile_weave-0.5.5/polyfile/kaitai/parsers/edid.py +472 -0
  905. polyfile_weave-0.5.5/polyfile/kaitai/parsers/efivar_signature_list.py +331 -0
  906. polyfile_weave-0.5.5/polyfile/kaitai/parsers/elf.py +2482 -0
  907. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ethernet_frame.py +114 -0
  908. polyfile_weave-0.5.5/polyfile/kaitai/parsers/exif.py +723 -0
  909. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ext2.py +537 -0
  910. polyfile_weave-0.5.5/polyfile/kaitai/parsers/fallout2_dat.py +187 -0
  911. polyfile_weave-0.5.5/polyfile/kaitai/parsers/fallout_dat.py +156 -0
  912. polyfile_weave-0.5.5/polyfile/kaitai/parsers/fasttracker_xm_module.py +558 -0
  913. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ftl_dat.py +90 -0
  914. polyfile_weave-0.5.5/polyfile/kaitai/parsers/genmidi_op2.py +161 -0
  915. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gettext_mo.py +541 -0
  916. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gif.py +492 -0
  917. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gimp_brush.py +244 -0
  918. polyfile_weave-0.5.5/polyfile/kaitai/parsers/glibc_utmp.py +114 -0
  919. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gltf_binary.py +132 -0
  920. polyfile_weave-0.5.5/polyfile/kaitai/parsers/google_protobuf.py +151 -0
  921. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gpt_partition_table.py +175 -0
  922. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gran_turismo_vol.py +140 -0
  923. polyfile_weave-0.5.5/polyfile/kaitai/parsers/grub2_font.py +337 -0
  924. polyfile_weave-0.5.5/polyfile/kaitai/parsers/gzip.py +232 -0
  925. polyfile_weave-0.5.5/polyfile/kaitai/parsers/hashcat_restore.py +60 -0
  926. polyfile_weave-0.5.5/polyfile/kaitai/parsers/hccap.py +111 -0
  927. polyfile_weave-0.5.5/polyfile/kaitai/parsers/hccapx.py +103 -0
  928. polyfile_weave-0.5.5/polyfile/kaitai/parsers/heaps_pak.py +177 -0
  929. polyfile_weave-0.5.5/polyfile/kaitai/parsers/heroes_of_might_and_magic_agg.py +116 -0
  930. polyfile_weave-0.5.5/polyfile/kaitai/parsers/heroes_of_might_and_magic_bmp.py +34 -0
  931. polyfile_weave-0.5.5/polyfile/kaitai/parsers/icmp_packet.py +136 -0
  932. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ico.py +129 -0
  933. polyfile_weave-0.5.5/polyfile/kaitai/parsers/id3v1_1.py +220 -0
  934. polyfile_weave-0.5.5/polyfile/kaitai/parsers/id3v2_3.py +324 -0
  935. polyfile_weave-0.5.5/polyfile/kaitai/parsers/id3v2_4.py +423 -0
  936. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ines.py +282 -0
  937. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ipv4_packet.py +158 -0
  938. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ipv6_packet.py +55 -0
  939. polyfile_weave-0.5.5/polyfile/kaitai/parsers/iso9660.py +544 -0
  940. polyfile_weave-0.5.5/polyfile/kaitai/parsers/java_class.py +1113 -0
  941. polyfile_weave-0.5.5/polyfile/kaitai/parsers/jpeg.py +361 -0
  942. polyfile_weave-0.5.5/polyfile/kaitai/parsers/luks.py +149 -0
  943. polyfile_weave-0.5.5/polyfile/kaitai/parsers/lzh.py +165 -0
  944. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mac_os_resource_snd.py +493 -0
  945. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mach_o.py +3033 -0
  946. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mach_o_fat.py +92 -0
  947. polyfile_weave-0.5.5/polyfile/kaitai/parsers/magicavoxel_vox.py +391 -0
  948. polyfile_weave-0.5.5/polyfile/kaitai/parsers/manifest.json +1 -0
  949. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mbr_partition_table.py +119 -0
  950. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mcap.py +1015 -0
  951. polyfile_weave-0.5.5/polyfile/kaitai/parsers/microsoft_cfb.py +293 -0
  952. polyfile_weave-0.5.5/polyfile/kaitai/parsers/microsoft_network_monitor_v2.py +309 -0
  953. polyfile_weave-0.5.5/polyfile/kaitai/parsers/microsoft_pe.py +765 -0
  954. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mifare_classic.py +706 -0
  955. polyfile_weave-0.5.5/polyfile/kaitai/parsers/minecraft_nbt.py +449 -0
  956. polyfile_weave-0.5.5/polyfile/kaitai/parsers/monomakh_sapr_chg.py +69 -0
  957. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mozilla_mar.py +239 -0
  958. polyfile_weave-0.5.5/polyfile/kaitai/parsers/mp4.py +333 -0
  959. polyfile_weave-0.5.5/polyfile/kaitai/parsers/msgpack.py +467 -0
  960. polyfile_weave-0.5.5/polyfile/kaitai/parsers/nitf.py +1189 -0
  961. polyfile_weave-0.5.5/polyfile/kaitai/parsers/nt_mdt_pal.py +155 -0
  962. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ogg.py +118 -0
  963. polyfile_weave-0.5.5/polyfile/kaitai/parsers/openpgp_message.py +993 -0
  964. polyfile_weave-0.5.5/polyfile/kaitai/parsers/packet_ppi.py +515 -0
  965. polyfile_weave-0.5.5/polyfile/kaitai/parsers/pcap.py +344 -0
  966. polyfile_weave-0.5.5/polyfile/kaitai/parsers/pcf_font.py +506 -0
  967. polyfile_weave-0.5.5/polyfile/kaitai/parsers/pcx.py +195 -0
  968. polyfile_weave-0.5.5/polyfile/kaitai/parsers/pcx_dcx.py +79 -0
  969. polyfile_weave-0.5.5/polyfile/kaitai/parsers/phar_without_stub.py +399 -0
  970. polyfile_weave-0.5.5/polyfile/kaitai/parsers/php_serialized_value.py +505 -0
  971. polyfile_weave-0.5.5/polyfile/kaitai/parsers/png.py +721 -0
  972. polyfile_weave-0.5.5/polyfile/kaitai/parsers/protocol_body.py +260 -0
  973. polyfile_weave-0.5.5/polyfile/kaitai/parsers/psx_tim.py +104 -0
  974. polyfile_weave-0.5.5/polyfile/kaitai/parsers/python_pickle.py +718 -0
  975. polyfile_weave-0.5.5/polyfile/kaitai/parsers/python_pyc_27.py +510 -0
  976. polyfile_weave-0.5.5/polyfile/kaitai/parsers/quake_mdl.py +441 -0
  977. polyfile_weave-0.5.5/polyfile/kaitai/parsers/quake_pak.py +112 -0
  978. polyfile_weave-0.5.5/polyfile/kaitai/parsers/quicktime_mov.py +634 -0
  979. polyfile_weave-0.5.5/polyfile/kaitai/parsers/rar.py +265 -0
  980. polyfile_weave-0.5.5/polyfile/kaitai/parsers/regf.py +569 -0
  981. polyfile_weave-0.5.5/polyfile/kaitai/parsers/renderware_binary_stream.py +877 -0
  982. polyfile_weave-0.5.5/polyfile/kaitai/parsers/resource_fork.py +611 -0
  983. polyfile_weave-0.5.5/polyfile/kaitai/parsers/respack.py +57 -0
  984. polyfile_weave-0.5.5/polyfile/kaitai/parsers/riff.py +409 -0
  985. polyfile_weave-0.5.5/polyfile/kaitai/parsers/rpm.py +964 -0
  986. polyfile_weave-0.5.5/polyfile/kaitai/parsers/rtcp_payload.py +579 -0
  987. polyfile_weave-0.5.5/polyfile/kaitai/parsers/rtp_packet.py +150 -0
  988. polyfile_weave-0.5.5/polyfile/kaitai/parsers/rtpdump.py +115 -0
  989. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ruby_marshal.py +423 -0
  990. polyfile_weave-0.5.5/polyfile/kaitai/parsers/s3m.py +493 -0
  991. polyfile_weave-0.5.5/polyfile/kaitai/parsers/saints_row_2_vpp_pc.py +254 -0
  992. polyfile_weave-0.5.5/polyfile/kaitai/parsers/shapefile_index.py +174 -0
  993. polyfile_weave-0.5.5/polyfile/kaitai/parsers/shapefile_main.py +893 -0
  994. polyfile_weave-0.5.5/polyfile/kaitai/parsers/some_ip.py +209 -0
  995. polyfile_weave-0.5.5/polyfile/kaitai/parsers/some_ip_container.py +37 -0
  996. polyfile_weave-0.5.5/polyfile/kaitai/parsers/some_ip_sd.py +86 -0
  997. polyfile_weave-0.5.5/polyfile/kaitai/parsers/some_ip_sd_entries.py +160 -0
  998. polyfile_weave-0.5.5/polyfile/kaitai/parsers/some_ip_sd_options.py +374 -0
  999. polyfile_weave-0.5.5/polyfile/kaitai/parsers/specpr.py +404 -0
  1000. polyfile_weave-0.5.5/polyfile/kaitai/parsers/sqlite3.py +472 -0
  1001. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ssh_public_key.py +252 -0
  1002. polyfile_weave-0.5.5/polyfile/kaitai/parsers/standard_midi_file.py +390 -0
  1003. polyfile_weave-0.5.5/polyfile/kaitai/parsers/stl.py +111 -0
  1004. polyfile_weave-0.5.5/polyfile/kaitai/parsers/sudoers_ts.py +201 -0
  1005. polyfile_weave-0.5.5/polyfile/kaitai/parsers/swf.py +406 -0
  1006. polyfile_weave-0.5.5/polyfile/kaitai/parsers/systemd_journal.py +361 -0
  1007. polyfile_weave-0.5.5/polyfile/kaitai/parsers/tcp_segment.py +57 -0
  1008. polyfile_weave-0.5.5/polyfile/kaitai/parsers/tga.py +213 -0
  1009. polyfile_weave-0.5.5/polyfile/kaitai/parsers/tls_client_hello.py +293 -0
  1010. polyfile_weave-0.5.5/polyfile/kaitai/parsers/tr_dos_image.py +322 -0
  1011. polyfile_weave-0.5.5/polyfile/kaitai/parsers/tsm.py +198 -0
  1012. polyfile_weave-0.5.5/polyfile/kaitai/parsers/ttf.py +1847 -0
  1013. polyfile_weave-0.5.5/polyfile/kaitai/parsers/udp_datagram.py +42 -0
  1014. polyfile_weave-0.5.5/polyfile/kaitai/parsers/uefi_te.py +236 -0
  1015. polyfile_weave-0.5.5/polyfile/kaitai/parsers/uimage.py +198 -0
  1016. polyfile_weave-0.5.5/polyfile/kaitai/parsers/utf8_string.py +137 -0
  1017. polyfile_weave-0.5.5/polyfile/kaitai/parsers/vfat.py +410 -0
  1018. polyfile_weave-0.5.5/polyfile/kaitai/parsers/vlq_base128_be.py +104 -0
  1019. polyfile_weave-0.5.5/polyfile/kaitai/parsers/vlq_base128_le.py +129 -0
  1020. polyfile_weave-0.5.5/polyfile/kaitai/parsers/vmware_vmdk.py +167 -0
  1021. polyfile_weave-0.5.5/polyfile/kaitai/parsers/vp8_ivf.py +112 -0
  1022. polyfile_weave-0.5.5/polyfile/kaitai/parsers/warcraft_2_pud.py +423 -0
  1023. polyfile_weave-0.5.5/polyfile/kaitai/parsers/wav.py +1014 -0
  1024. polyfile_weave-0.5.5/polyfile/kaitai/parsers/websocket.py +167 -0
  1025. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_evt_log.py +304 -0
  1026. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_lnk_file.py +467 -0
  1027. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_minidump.py +575 -0
  1028. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_resource_file.py +243 -0
  1029. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_shell_items.py +190 -0
  1030. polyfile_weave-0.5.5/polyfile/kaitai/parsers/windows_systemtime.py +52 -0
  1031. polyfile_weave-0.5.5/polyfile/kaitai/parsers/wmf.py +502 -0
  1032. polyfile_weave-0.5.5/polyfile/kaitai/parsers/xar.py +181 -0
  1033. polyfile_weave-0.5.5/polyfile/kaitai/parsers/xwd.py +189 -0
  1034. polyfile_weave-0.5.5/polyfile/kaitai/parsers/zip.py +685 -0
  1035. polyfile_weave-0.5.5/polyfile/kaitai/parsers/zisofs.py +158 -0
  1036. polyfile_weave-0.5.5/polyfile/kaitai/parsers/zx_spectrum_tap.py +184 -0
  1037. polyfile_weave-0.5.5/polyfile/kaitaimatcher.py +113 -0
  1038. polyfile_weave-0.5.5/polyfile/languagematcher.py +217 -0
  1039. polyfile_weave-0.5.5/polyfile/logger.py +135 -0
  1040. polyfile_weave-0.5.5/polyfile/magic.py +2983 -0
  1041. polyfile_weave-0.5.5/polyfile/magic_defs/COPYING +29 -0
  1042. polyfile_weave-0.5.5/polyfile/magic_defs/__init__.py +0 -0
  1043. polyfile_weave-0.5.5/polyfile/magic_defs/acorn +102 -0
  1044. polyfile_weave-0.5.5/polyfile/magic_defs/adi +13 -0
  1045. polyfile_weave-0.5.5/polyfile/magic_defs/adventure +122 -0
  1046. polyfile_weave-0.5.5/polyfile/magic_defs/aes +29 -0
  1047. polyfile_weave-0.5.5/polyfile/magic_defs/algol68 +35 -0
  1048. polyfile_weave-0.5.5/polyfile/magic_defs/allegro +9 -0
  1049. polyfile_weave-0.5.5/polyfile/magic_defs/alliant +18 -0
  1050. polyfile_weave-0.5.5/polyfile/magic_defs/alpha +32 -0
  1051. polyfile_weave-0.5.5/polyfile/magic_defs/amanda +12 -0
  1052. polyfile_weave-0.5.5/polyfile/magic_defs/amigaos +218 -0
  1053. polyfile_weave-0.5.5/polyfile/magic_defs/android +259 -0
  1054. polyfile_weave-0.5.5/polyfile/magic_defs/animation +1197 -0
  1055. polyfile_weave-0.5.5/polyfile/magic_defs/aout +46 -0
  1056. polyfile_weave-0.5.5/polyfile/magic_defs/apache +28 -0
  1057. polyfile_weave-0.5.5/polyfile/magic_defs/apl +7 -0
  1058. polyfile_weave-0.5.5/polyfile/magic_defs/apple +773 -0
  1059. polyfile_weave-0.5.5/polyfile/magic_defs/application +7 -0
  1060. polyfile_weave-0.5.5/polyfile/magic_defs/applix +13 -0
  1061. polyfile_weave-0.5.5/polyfile/magic_defs/apt +52 -0
  1062. polyfile_weave-0.5.5/polyfile/magic_defs/archive +2586 -0
  1063. polyfile_weave-0.5.5/polyfile/magic_defs/aria +38 -0
  1064. polyfile_weave-0.5.5/polyfile/magic_defs/arm +50 -0
  1065. polyfile_weave-0.5.5/polyfile/magic_defs/asf +132 -0
  1066. polyfile_weave-0.5.5/polyfile/magic_defs/assembler +18 -0
  1067. polyfile_weave-0.5.5/polyfile/magic_defs/asterix +18 -0
  1068. polyfile_weave-0.5.5/polyfile/magic_defs/att3b +41 -0
  1069. polyfile_weave-0.5.5/polyfile/magic_defs/audio +1291 -0
  1070. polyfile_weave-0.5.5/polyfile/magic_defs/avm +33 -0
  1071. polyfile_weave-0.5.5/polyfile/magic_defs/basis +18 -0
  1072. polyfile_weave-0.5.5/polyfile/magic_defs/beetle +7 -0
  1073. polyfile_weave-0.5.5/polyfile/magic_defs/ber +65 -0
  1074. polyfile_weave-0.5.5/polyfile/magic_defs/bflt +14 -0
  1075. polyfile_weave-0.5.5/polyfile/magic_defs/bhl +10 -0
  1076. polyfile_weave-0.5.5/polyfile/magic_defs/bioinformatics +178 -0
  1077. polyfile_weave-0.5.5/polyfile/magic_defs/biosig +154 -0
  1078. polyfile_weave-0.5.5/polyfile/magic_defs/blackberry +8 -0
  1079. polyfile_weave-0.5.5/polyfile/magic_defs/blcr +25 -0
  1080. polyfile_weave-0.5.5/polyfile/magic_defs/blender +50 -0
  1081. polyfile_weave-0.5.5/polyfile/magic_defs/blit +24 -0
  1082. polyfile_weave-0.5.5/polyfile/magic_defs/bm +10 -0
  1083. polyfile_weave-0.5.5/polyfile/magic_defs/bout +11 -0
  1084. polyfile_weave-0.5.5/polyfile/magic_defs/bsdi +33 -0
  1085. polyfile_weave-0.5.5/polyfile/magic_defs/bsi +10 -0
  1086. polyfile_weave-0.5.5/polyfile/magic_defs/btsnoop +13 -0
  1087. polyfile_weave-0.5.5/polyfile/magic_defs/burp +7 -0
  1088. polyfile_weave-0.5.5/polyfile/magic_defs/bytecode +41 -0
  1089. polyfile_weave-0.5.5/polyfile/magic_defs/c-lang +110 -0
  1090. polyfile_weave-0.5.5/polyfile/magic_defs/c64 +531 -0
  1091. polyfile_weave-0.5.5/polyfile/magic_defs/cad +437 -0
  1092. polyfile_weave-0.5.5/polyfile/magic_defs/cafebabe +107 -0
  1093. polyfile_weave-0.5.5/polyfile/magic_defs/cbor +21 -0
  1094. polyfile_weave-0.5.5/polyfile/magic_defs/ccf +14 -0
  1095. polyfile_weave-0.5.5/polyfile/magic_defs/cddb +12 -0
  1096. polyfile_weave-0.5.5/polyfile/magic_defs/chord +15 -0
  1097. polyfile_weave-0.5.5/polyfile/magic_defs/cisco +12 -0
  1098. polyfile_weave-0.5.5/polyfile/magic_defs/citrus +12 -0
  1099. polyfile_weave-0.5.5/polyfile/magic_defs/clarion +27 -0
  1100. polyfile_weave-0.5.5/polyfile/magic_defs/claris +48 -0
  1101. polyfile_weave-0.5.5/polyfile/magic_defs/clipper +65 -0
  1102. polyfile_weave-0.5.5/polyfile/magic_defs/clojure +30 -0
  1103. polyfile_weave-0.5.5/polyfile/magic_defs/coff +98 -0
  1104. polyfile_weave-0.5.5/polyfile/magic_defs/commands +201 -0
  1105. polyfile_weave-0.5.5/polyfile/magic_defs/communications +22 -0
  1106. polyfile_weave-0.5.5/polyfile/magic_defs/compress +461 -0
  1107. polyfile_weave-0.5.5/polyfile/magic_defs/console +1213 -0
  1108. polyfile_weave-0.5.5/polyfile/magic_defs/convex +69 -0
  1109. polyfile_weave-0.5.5/polyfile/magic_defs/coverage +91 -0
  1110. polyfile_weave-0.5.5/polyfile/magic_defs/cracklib +14 -0
  1111. polyfile_weave-0.5.5/polyfile/magic_defs/crypto +31 -0
  1112. polyfile_weave-0.5.5/polyfile/magic_defs/csv +8 -0
  1113. polyfile_weave-0.5.5/polyfile/magic_defs/ctags +6 -0
  1114. polyfile_weave-0.5.5/polyfile/magic_defs/ctf +23 -0
  1115. polyfile_weave-0.5.5/polyfile/magic_defs/cubemap +8 -0
  1116. polyfile_weave-0.5.5/polyfile/magic_defs/cups +56 -0
  1117. polyfile_weave-0.5.5/polyfile/magic_defs/dact +11 -0
  1118. polyfile_weave-0.5.5/polyfile/magic_defs/database +886 -0
  1119. polyfile_weave-0.5.5/polyfile/magic_defs/dataone +47 -0
  1120. polyfile_weave-0.5.5/polyfile/magic_defs/dbpf +15 -0
  1121. polyfile_weave-0.5.5/polyfile/magic_defs/der +146 -0
  1122. polyfile_weave-0.5.5/polyfile/magic_defs/diamond +12 -0
  1123. polyfile_weave-0.5.5/polyfile/magic_defs/dif +33 -0
  1124. polyfile_weave-0.5.5/polyfile/magic_defs/diff +41 -0
  1125. polyfile_weave-0.5.5/polyfile/magic_defs/digital +59 -0
  1126. polyfile_weave-0.5.5/polyfile/magic_defs/dolby +69 -0
  1127. polyfile_weave-0.5.5/polyfile/magic_defs/dsf +25 -0
  1128. polyfile_weave-0.5.5/polyfile/magic_defs/dump +96 -0
  1129. polyfile_weave-0.5.5/polyfile/magic_defs/dwarfs +45 -0
  1130. polyfile_weave-0.5.5/polyfile/magic_defs/dyadic +61 -0
  1131. polyfile_weave-0.5.5/polyfile/magic_defs/ebml +8 -0
  1132. polyfile_weave-0.5.5/polyfile/magic_defs/edid +11 -0
  1133. polyfile_weave-0.5.5/polyfile/magic_defs/editors +43 -0
  1134. polyfile_weave-0.5.5/polyfile/magic_defs/efi +15 -0
  1135. polyfile_weave-0.5.5/polyfile/magic_defs/elf +379 -0
  1136. polyfile_weave-0.5.5/polyfile/magic_defs/encore +22 -0
  1137. polyfile_weave-0.5.5/polyfile/magic_defs/epoc +62 -0
  1138. polyfile_weave-0.5.5/polyfile/magic_defs/erlang +21 -0
  1139. polyfile_weave-0.5.5/polyfile/magic_defs/espressif +57 -0
  1140. polyfile_weave-0.5.5/polyfile/magic_defs/esri +28 -0
  1141. polyfile_weave-0.5.5/polyfile/magic_defs/etf +33 -0
  1142. polyfile_weave-0.5.5/polyfile/magic_defs/fcs +9 -0
  1143. polyfile_weave-0.5.5/polyfile/magic_defs/filesystems +2694 -0
  1144. polyfile_weave-0.5.5/polyfile/magic_defs/finger +16 -0
  1145. polyfile_weave-0.5.5/polyfile/magic_defs/firmware +133 -0
  1146. polyfile_weave-0.5.5/polyfile/magic_defs/flash +62 -0
  1147. polyfile_weave-0.5.5/polyfile/magic_defs/flif +36 -0
  1148. polyfile_weave-0.5.5/polyfile/magic_defs/fonts +449 -0
  1149. polyfile_weave-0.5.5/polyfile/magic_defs/forth +82 -0
  1150. polyfile_weave-0.5.5/polyfile/magic_defs/fortran +9 -0
  1151. polyfile_weave-0.5.5/polyfile/magic_defs/frame +62 -0
  1152. polyfile_weave-0.5.5/polyfile/magic_defs/freebsd +164 -0
  1153. polyfile_weave-0.5.5/polyfile/magic_defs/fsav +128 -0
  1154. polyfile_weave-0.5.5/polyfile/magic_defs/fusecompress +12 -0
  1155. polyfile_weave-0.5.5/polyfile/magic_defs/games +696 -0
  1156. polyfile_weave-0.5.5/polyfile/magic_defs/gcc +17 -0
  1157. polyfile_weave-0.5.5/polyfile/magic_defs/gconv +10 -0
  1158. polyfile_weave-0.5.5/polyfile/magic_defs/gentoo +85 -0
  1159. polyfile_weave-0.5.5/polyfile/magic_defs/geo +166 -0
  1160. polyfile_weave-0.5.5/polyfile/magic_defs/geos +20 -0
  1161. polyfile_weave-0.5.5/polyfile/magic_defs/gimp +77 -0
  1162. polyfile_weave-0.5.5/polyfile/magic_defs/git +13 -0
  1163. polyfile_weave-0.5.5/polyfile/magic_defs/glibc +21 -0
  1164. polyfile_weave-0.5.5/polyfile/magic_defs/gnome +59 -0
  1165. polyfile_weave-0.5.5/polyfile/magic_defs/gnu +173 -0
  1166. polyfile_weave-0.5.5/polyfile/magic_defs/gnumeric +8 -0
  1167. polyfile_weave-0.5.5/polyfile/magic_defs/gpt +240 -0
  1168. polyfile_weave-0.5.5/polyfile/magic_defs/gpu +28 -0
  1169. polyfile_weave-0.5.5/polyfile/magic_defs/grace +21 -0
  1170. polyfile_weave-0.5.5/polyfile/magic_defs/graphviz +12 -0
  1171. polyfile_weave-0.5.5/polyfile/magic_defs/gringotts +48 -0
  1172. polyfile_weave-0.5.5/polyfile/magic_defs/guile +13 -0
  1173. polyfile_weave-0.5.5/polyfile/magic_defs/hardware +12 -0
  1174. polyfile_weave-0.5.5/polyfile/magic_defs/hitachi-sh +30 -0
  1175. polyfile_weave-0.5.5/polyfile/magic_defs/hp +433 -0
  1176. polyfile_weave-0.5.5/polyfile/magic_defs/human68k +26 -0
  1177. polyfile_weave-0.5.5/polyfile/magic_defs/ibm370 +52 -0
  1178. polyfile_weave-0.5.5/polyfile/magic_defs/ibm6000 +35 -0
  1179. polyfile_weave-0.5.5/polyfile/magic_defs/icc +214 -0
  1180. polyfile_weave-0.5.5/polyfile/magic_defs/iff +80 -0
  1181. polyfile_weave-0.5.5/polyfile/magic_defs/images +4210 -0
  1182. polyfile_weave-0.5.5/polyfile/magic_defs/inform +9 -0
  1183. polyfile_weave-0.5.5/polyfile/magic_defs/intel +310 -0
  1184. polyfile_weave-0.5.5/polyfile/magic_defs/interleaf +9 -0
  1185. polyfile_weave-0.5.5/polyfile/magic_defs/island +10 -0
  1186. polyfile_weave-0.5.5/polyfile/magic_defs/ispell +63 -0
  1187. polyfile_weave-0.5.5/polyfile/magic_defs/isz +15 -0
  1188. polyfile_weave-0.5.5/polyfile/magic_defs/java +52 -0
  1189. polyfile_weave-0.5.5/polyfile/magic_defs/javascript +171 -0
  1190. polyfile_weave-0.5.5/polyfile/magic_defs/jpeg +252 -0
  1191. polyfile_weave-0.5.5/polyfile/magic_defs/json +8 -0
  1192. polyfile_weave-0.5.5/polyfile/magic_defs/karma +9 -0
  1193. polyfile_weave-0.5.5/polyfile/magic_defs/kde +11 -0
  1194. polyfile_weave-0.5.5/polyfile/magic_defs/keepass +20 -0
  1195. polyfile_weave-0.5.5/polyfile/magic_defs/kerberos +45 -0
  1196. polyfile_weave-0.5.5/polyfile/magic_defs/kicad +85 -0
  1197. polyfile_weave-0.5.5/polyfile/magic_defs/kml +34 -0
  1198. polyfile_weave-0.5.5/polyfile/magic_defs/lammps +64 -0
  1199. polyfile_weave-0.5.5/polyfile/magic_defs/lecter +6 -0
  1200. polyfile_weave-0.5.5/polyfile/magic_defs/lex +12 -0
  1201. polyfile_weave-0.5.5/polyfile/magic_defs/lif +50 -0
  1202. polyfile_weave-0.5.5/polyfile/magic_defs/linux +557 -0
  1203. polyfile_weave-0.5.5/polyfile/magic_defs/lisp +78 -0
  1204. polyfile_weave-0.5.5/polyfile/magic_defs/llvm +22 -0
  1205. polyfile_weave-0.5.5/polyfile/magic_defs/locoscript +12 -0
  1206. polyfile_weave-0.5.5/polyfile/magic_defs/lua +31 -0
  1207. polyfile_weave-0.5.5/polyfile/magic_defs/luks +126 -0
  1208. polyfile_weave-0.5.5/polyfile/magic_defs/m4 +11 -0
  1209. polyfile_weave-0.5.5/polyfile/magic_defs/mach +303 -0
  1210. polyfile_weave-0.5.5/polyfile/magic_defs/macintosh +505 -0
  1211. polyfile_weave-0.5.5/polyfile/magic_defs/macos +7 -0
  1212. polyfile_weave-0.5.5/polyfile/magic_defs/magic +10 -0
  1213. polyfile_weave-0.5.5/polyfile/magic_defs/magic.mgc +0 -0
  1214. polyfile_weave-0.5.5/polyfile/magic_defs/mail.news +132 -0
  1215. polyfile_weave-0.5.5/polyfile/magic_defs/make +21 -0
  1216. polyfile_weave-0.5.5/polyfile/magic_defs/map +413 -0
  1217. polyfile_weave-0.5.5/polyfile/magic_defs/maple +109 -0
  1218. polyfile_weave-0.5.5/polyfile/magic_defs/marc21 +30 -0
  1219. polyfile_weave-0.5.5/polyfile/magic_defs/mathcad +8 -0
  1220. polyfile_weave-0.5.5/polyfile/magic_defs/mathematica +188 -0
  1221. polyfile_weave-0.5.5/polyfile/magic_defs/matroska +17 -0
  1222. polyfile_weave-0.5.5/polyfile/magic_defs/mcrypt +52 -0
  1223. polyfile_weave-0.5.5/polyfile/magic_defs/measure +44 -0
  1224. polyfile_weave-0.5.5/polyfile/magic_defs/mercurial +13 -0
  1225. polyfile_weave-0.5.5/polyfile/magic_defs/metastore +8 -0
  1226. polyfile_weave-0.5.5/polyfile/magic_defs/meteorological +53 -0
  1227. polyfile_weave-0.5.5/polyfile/magic_defs/microfocus +21 -0
  1228. polyfile_weave-0.5.5/polyfile/magic_defs/mime +9 -0
  1229. polyfile_weave-0.5.5/polyfile/magic_defs/mips +120 -0
  1230. polyfile_weave-0.5.5/polyfile/magic_defs/mirage +8 -0
  1231. polyfile_weave-0.5.5/polyfile/magic_defs/misctools +140 -0
  1232. polyfile_weave-0.5.5/polyfile/magic_defs/mkid +11 -0
  1233. polyfile_weave-0.5.5/polyfile/magic_defs/mlssa +8 -0
  1234. polyfile_weave-0.5.5/polyfile/magic_defs/mmdf +6 -0
  1235. polyfile_weave-0.5.5/polyfile/magic_defs/modem +92 -0
  1236. polyfile_weave-0.5.5/polyfile/magic_defs/modulefile +9 -0
  1237. polyfile_weave-0.5.5/polyfile/magic_defs/motorola +71 -0
  1238. polyfile_weave-0.5.5/polyfile/magic_defs/mozilla +37 -0
  1239. polyfile_weave-0.5.5/polyfile/magic_defs/msdos +2304 -0
  1240. polyfile_weave-0.5.5/polyfile/magic_defs/msooxml +68 -0
  1241. polyfile_weave-0.5.5/polyfile/magic_defs/msvc +222 -0
  1242. polyfile_weave-0.5.5/polyfile/magic_defs/msx +309 -0
  1243. polyfile_weave-0.5.5/polyfile/magic_defs/mup +24 -0
  1244. polyfile_weave-0.5.5/polyfile/magic_defs/music +17 -0
  1245. polyfile_weave-0.5.5/polyfile/magic_defs/nasa +7 -0
  1246. polyfile_weave-0.5.5/polyfile/magic_defs/natinst +24 -0
  1247. polyfile_weave-0.5.5/polyfile/magic_defs/ncr +49 -0
  1248. polyfile_weave-0.5.5/polyfile/magic_defs/neko +12 -0
  1249. polyfile_weave-0.5.5/polyfile/magic_defs/netbsd +251 -0
  1250. polyfile_weave-0.5.5/polyfile/magic_defs/netscape +26 -0
  1251. polyfile_weave-0.5.5/polyfile/magic_defs/netware +11 -0
  1252. polyfile_weave-0.5.5/polyfile/magic_defs/news +13 -0
  1253. polyfile_weave-0.5.5/polyfile/magic_defs/nifty +202 -0
  1254. polyfile_weave-0.5.5/polyfile/magic_defs/nim-lang +29 -0
  1255. polyfile_weave-0.5.5/polyfile/magic_defs/nitpicker +14 -0
  1256. polyfile_weave-0.5.5/polyfile/magic_defs/numpy +9 -0
  1257. polyfile_weave-0.5.5/polyfile/magic_defs/oasis +12 -0
  1258. polyfile_weave-0.5.5/polyfile/magic_defs/ocaml +14 -0
  1259. polyfile_weave-0.5.5/polyfile/magic_defs/octave +6 -0
  1260. polyfile_weave-0.5.5/polyfile/magic_defs/ole2compounddocs +760 -0
  1261. polyfile_weave-0.5.5/polyfile/magic_defs/olf +98 -0
  1262. polyfile_weave-0.5.5/polyfile/magic_defs/openfst +17 -0
  1263. polyfile_weave-0.5.5/polyfile/magic_defs/opentimestamps +16 -0
  1264. polyfile_weave-0.5.5/polyfile/magic_defs/oric +16 -0
  1265. polyfile_weave-0.5.5/polyfile/magic_defs/os2 +186 -0
  1266. polyfile_weave-0.5.5/polyfile/magic_defs/os400 +39 -0
  1267. polyfile_weave-0.5.5/polyfile/magic_defs/os9 +80 -0
  1268. polyfile_weave-0.5.5/polyfile/magic_defs/osf1 +10 -0
  1269. polyfile_weave-0.5.5/polyfile/magic_defs/palm +156 -0
  1270. polyfile_weave-0.5.5/polyfile/magic_defs/parix +13 -0
  1271. polyfile_weave-0.5.5/polyfile/magic_defs/parrot +22 -0
  1272. polyfile_weave-0.5.5/polyfile/magic_defs/pascal +39 -0
  1273. polyfile_weave-0.5.5/polyfile/magic_defs/pbf +11 -0
  1274. polyfile_weave-0.5.5/polyfile/magic_defs/pbm +8 -0
  1275. polyfile_weave-0.5.5/polyfile/magic_defs/pc88 +24 -0
  1276. polyfile_weave-0.5.5/polyfile/magic_defs/pc98 +77 -0
  1277. polyfile_weave-0.5.5/polyfile/magic_defs/pci_ids +116 -0
  1278. polyfile_weave-0.5.5/polyfile/magic_defs/pcjr +8 -0
  1279. polyfile_weave-0.5.5/polyfile/magic_defs/pdf +51 -0
  1280. polyfile_weave-0.5.5/polyfile/magic_defs/pdp +42 -0
  1281. polyfile_weave-0.5.5/polyfile/magic_defs/perl +100 -0
  1282. polyfile_weave-0.5.5/polyfile/magic_defs/pgf +52 -0
  1283. polyfile_weave-0.5.5/polyfile/magic_defs/pgp +581 -0
  1284. polyfile_weave-0.5.5/polyfile/magic_defs/pgp-binary-keys +388 -0
  1285. polyfile_weave-0.5.5/polyfile/magic_defs/pkgadd +7 -0
  1286. polyfile_weave-0.5.5/polyfile/magic_defs/plan9 +25 -0
  1287. polyfile_weave-0.5.5/polyfile/magic_defs/playdate +57 -0
  1288. polyfile_weave-0.5.5/polyfile/magic_defs/plus5 +18 -0
  1289. polyfile_weave-0.5.5/polyfile/magic_defs/pmem +46 -0
  1290. polyfile_weave-0.5.5/polyfile/magic_defs/polyfile_zip +5 -0
  1291. polyfile_weave-0.5.5/polyfile/magic_defs/polyml +23 -0
  1292. polyfile_weave-0.5.5/polyfile/magic_defs/printer +269 -0
  1293. polyfile_weave-0.5.5/polyfile/magic_defs/project +10 -0
  1294. polyfile_weave-0.5.5/polyfile/magic_defs/psdbms +14 -0
  1295. polyfile_weave-0.5.5/polyfile/magic_defs/psl +14 -0
  1296. polyfile_weave-0.5.5/polyfile/magic_defs/pulsar +13 -0
  1297. polyfile_weave-0.5.5/polyfile/magic_defs/puzzle +17 -0
  1298. polyfile_weave-0.5.5/polyfile/magic_defs/pwsafe +14 -0
  1299. polyfile_weave-0.5.5/polyfile/magic_defs/pyramid +12 -0
  1300. polyfile_weave-0.5.5/polyfile/magic_defs/python +305 -0
  1301. polyfile_weave-0.5.5/polyfile/magic_defs/qt +30 -0
  1302. polyfile_weave-0.5.5/polyfile/magic_defs/revision +66 -0
  1303. polyfile_weave-0.5.5/polyfile/magic_defs/riff +840 -0
  1304. polyfile_weave-0.5.5/polyfile/magic_defs/rinex +44 -0
  1305. polyfile_weave-0.5.5/polyfile/magic_defs/ringdove +45 -0
  1306. polyfile_weave-0.5.5/polyfile/magic_defs/rpi +52 -0
  1307. polyfile_weave-0.5.5/polyfile/magic_defs/rpm +45 -0
  1308. polyfile_weave-0.5.5/polyfile/magic_defs/rpmsg +7 -0
  1309. polyfile_weave-0.5.5/polyfile/magic_defs/rst +11 -0
  1310. polyfile_weave-0.5.5/polyfile/magic_defs/rtf +94 -0
  1311. polyfile_weave-0.5.5/polyfile/magic_defs/ruby +55 -0
  1312. polyfile_weave-0.5.5/polyfile/magic_defs/rust +21 -0
  1313. polyfile_weave-0.5.5/polyfile/magic_defs/sc +7 -0
  1314. polyfile_weave-0.5.5/polyfile/magic_defs/sccs +24 -0
  1315. polyfile_weave-0.5.5/polyfile/magic_defs/scientific +144 -0
  1316. polyfile_weave-0.5.5/polyfile/magic_defs/securitycerts +6 -0
  1317. polyfile_weave-0.5.5/polyfile/magic_defs/selinux +24 -0
  1318. polyfile_weave-0.5.5/polyfile/magic_defs/sendmail +37 -0
  1319. polyfile_weave-0.5.5/polyfile/magic_defs/sequent +42 -0
  1320. polyfile_weave-0.5.5/polyfile/magic_defs/sereal +35 -0
  1321. polyfile_weave-0.5.5/polyfile/magic_defs/sgi +144 -0
  1322. polyfile_weave-0.5.5/polyfile/magic_defs/sgml +161 -0
  1323. polyfile_weave-0.5.5/polyfile/magic_defs/sharc +23 -0
  1324. polyfile_weave-0.5.5/polyfile/magic_defs/sinclair +40 -0
  1325. polyfile_weave-0.5.5/polyfile/magic_defs/sisu +18 -0
  1326. polyfile_weave-0.5.5/polyfile/magic_defs/sketch +6 -0
  1327. polyfile_weave-0.5.5/polyfile/magic_defs/smalltalk +25 -0
  1328. polyfile_weave-0.5.5/polyfile/magic_defs/smile +34 -0
  1329. polyfile_weave-0.5.5/polyfile/magic_defs/sniffer +482 -0
  1330. polyfile_weave-0.5.5/polyfile/magic_defs/softquad +40 -0
  1331. polyfile_weave-0.5.5/polyfile/magic_defs/sosi +40 -0
  1332. polyfile_weave-0.5.5/polyfile/magic_defs/spec +21 -0
  1333. polyfile_weave-0.5.5/polyfile/magic_defs/spectrum +184 -0
  1334. polyfile_weave-0.5.5/polyfile/magic_defs/sql +288 -0
  1335. polyfile_weave-0.5.5/polyfile/magic_defs/ssh +39 -0
  1336. polyfile_weave-0.5.5/polyfile/magic_defs/ssl +20 -0
  1337. polyfile_weave-0.5.5/polyfile/magic_defs/statistics +45 -0
  1338. polyfile_weave-0.5.5/polyfile/magic_defs/subtitle +38 -0
  1339. polyfile_weave-0.5.5/polyfile/magic_defs/sun +141 -0
  1340. polyfile_weave-0.5.5/polyfile/magic_defs/svf +5 -0
  1341. polyfile_weave-0.5.5/polyfile/magic_defs/sylk +36 -0
  1342. polyfile_weave-0.5.5/polyfile/magic_defs/symbos +42 -0
  1343. polyfile_weave-0.5.5/polyfile/magic_defs/sysex +429 -0
  1344. polyfile_weave-0.5.5/polyfile/magic_defs/tcl +29 -0
  1345. polyfile_weave-0.5.5/polyfile/magic_defs/teapot +6 -0
  1346. polyfile_weave-0.5.5/polyfile/magic_defs/terminfo +63 -0
  1347. polyfile_weave-0.5.5/polyfile/magic_defs/tex +141 -0
  1348. polyfile_weave-0.5.5/polyfile/magic_defs/tgif +7 -0
  1349. polyfile_weave-0.5.5/polyfile/magic_defs/ti-8x +239 -0
  1350. polyfile_weave-0.5.5/polyfile/magic_defs/timezone +42 -0
  1351. polyfile_weave-0.5.5/polyfile/magic_defs/tplink +95 -0
  1352. polyfile_weave-0.5.5/polyfile/magic_defs/troff +38 -0
  1353. polyfile_weave-0.5.5/polyfile/magic_defs/tuxedo +8 -0
  1354. polyfile_weave-0.5.5/polyfile/magic_defs/typeset +8 -0
  1355. polyfile_weave-0.5.5/polyfile/magic_defs/uf2 +72 -0
  1356. polyfile_weave-0.5.5/polyfile/magic_defs/unicode +15 -0
  1357. polyfile_weave-0.5.5/polyfile/magic_defs/unisig +12 -0
  1358. polyfile_weave-0.5.5/polyfile/magic_defs/unknown +34 -0
  1359. polyfile_weave-0.5.5/polyfile/magic_defs/usd +21 -0
  1360. polyfile_weave-0.5.5/polyfile/magic_defs/uterus +16 -0
  1361. polyfile_weave-0.5.5/polyfile/magic_defs/uuencode +28 -0
  1362. polyfile_weave-0.5.5/polyfile/magic_defs/vacuum-cleaner +54 -0
  1363. polyfile_weave-0.5.5/polyfile/magic_defs/varied.out +46 -0
  1364. polyfile_weave-0.5.5/polyfile/magic_defs/varied.script +21 -0
  1365. polyfile_weave-0.5.5/polyfile/magic_defs/vax +32 -0
  1366. polyfile_weave-0.5.5/polyfile/magic_defs/vicar +17 -0
  1367. polyfile_weave-0.5.5/polyfile/magic_defs/virtual +307 -0
  1368. polyfile_weave-0.5.5/polyfile/magic_defs/virtutech +12 -0
  1369. polyfile_weave-0.5.5/polyfile/magic_defs/visx +32 -0
  1370. polyfile_weave-0.5.5/polyfile/magic_defs/vms +30 -0
  1371. polyfile_weave-0.5.5/polyfile/magic_defs/vmware +6 -0
  1372. polyfile_weave-0.5.5/polyfile/magic_defs/vorbis +155 -0
  1373. polyfile_weave-0.5.5/polyfile/magic_defs/vxl +14 -0
  1374. polyfile_weave-0.5.5/polyfile/magic_defs/warc +16 -0
  1375. polyfile_weave-0.5.5/polyfile/magic_defs/weak +16 -0
  1376. polyfile_weave-0.5.5/polyfile/magic_defs/web +18 -0
  1377. polyfile_weave-0.5.5/polyfile/magic_defs/webassembly +17 -0
  1378. polyfile_weave-0.5.5/polyfile/magic_defs/windows +1811 -0
  1379. polyfile_weave-0.5.5/polyfile/magic_defs/wireless +7 -0
  1380. polyfile_weave-0.5.5/polyfile/magic_defs/wordprocessors +630 -0
  1381. polyfile_weave-0.5.5/polyfile/magic_defs/wsdl +23 -0
  1382. polyfile_weave-0.5.5/polyfile/magic_defs/x68000 +25 -0
  1383. polyfile_weave-0.5.5/polyfile/magic_defs/xdelta +13 -0
  1384. polyfile_weave-0.5.5/polyfile/magic_defs/xenix +106 -0
  1385. polyfile_weave-0.5.5/polyfile/magic_defs/xilinx +58 -0
  1386. polyfile_weave-0.5.5/polyfile/magic_defs/xo65 +37 -0
  1387. polyfile_weave-0.5.5/polyfile/magic_defs/xwindows +43 -0
  1388. polyfile_weave-0.5.5/polyfile/magic_defs/yara +17 -0
  1389. polyfile_weave-0.5.5/polyfile/magic_defs/zfs +96 -0
  1390. polyfile_weave-0.5.5/polyfile/magic_defs/zilog +12 -0
  1391. polyfile_weave-0.5.5/polyfile/magic_defs/zip +126 -0
  1392. polyfile_weave-0.5.5/polyfile/magic_defs/zyxel +17 -0
  1393. polyfile_weave-0.5.5/polyfile/nes.py +144 -0
  1394. polyfile_weave-0.5.5/polyfile/nitf.py +15 -0
  1395. polyfile_weave-0.5.5/polyfile/pdf.py +1264 -0
  1396. polyfile_weave-0.5.5/polyfile/pickles.py +45 -0
  1397. polyfile_weave-0.5.5/polyfile/polyfile.py +409 -0
  1398. polyfile_weave-0.5.5/polyfile/profiling.py +115 -0
  1399. polyfile_weave-0.5.5/polyfile/repl.py +624 -0
  1400. polyfile_weave-0.5.5/polyfile/search.py +310 -0
  1401. polyfile_weave-0.5.5/polyfile/serialization.py +323 -0
  1402. polyfile_weave-0.5.5/polyfile/structmatcher.py +46 -0
  1403. polyfile_weave-0.5.5/polyfile/structs.py +281 -0
  1404. polyfile_weave-0.5.5/polyfile/templates/download.js +162 -0
  1405. polyfile_weave-0.5.5/polyfile/templates/hexdump.css +268 -0
  1406. polyfile_weave-0.5.5/polyfile/templates/hexdump.js +756 -0
  1407. polyfile_weave-0.5.5/polyfile/templates/jquery-3.4.1.min.js +2 -0
  1408. polyfile_weave-0.5.5/polyfile/templates/template.html +119 -0
  1409. polyfile_weave-0.5.5/polyfile/wildcards.py +62 -0
  1410. polyfile_weave-0.5.5/polyfile/zipmatcher.py +183 -0
  1411. polyfile_weave-0.5.5/polyfile_weave.egg-info/PKG-INFO +173 -0
  1412. polyfile_weave-0.5.5/polyfile_weave.egg-info/SOURCES.txt +1426 -0
  1413. polyfile_weave-0.5.5/polyfile_weave.egg-info/dependency_links.txt +1 -0
  1414. polyfile_weave-0.5.5/polyfile_weave.egg-info/entry_points.txt +2 -0
  1415. polyfile_weave-0.5.5/polyfile_weave.egg-info/requires.txt +24 -0
  1416. polyfile_weave-0.5.5/polyfile_weave.egg-info/top_level.txt +2 -0
  1417. polyfile_weave-0.5.5/polymerge/__init__.py +1 -0
  1418. polyfile_weave-0.5.5/polymerge/__main__.py +296 -0
  1419. polyfile_weave-0.5.5/polymerge/cfg.py +127 -0
  1420. polyfile_weave-0.5.5/polymerge/polymerge.py +227 -0
  1421. polyfile_weave-0.5.5/polymerge/polytracker.py +190 -0
  1422. polyfile_weave-0.5.5/pyproject.toml +3 -0
  1423. polyfile_weave-0.5.5/setup.cfg +4 -0
  1424. polyfile_weave-0.5.5/setup.py +71 -0
  1425. polyfile_weave-0.5.5/tests/test_corkami.py +182 -0
  1426. polyfile_weave-0.5.5/tests/test_iterators.py +32 -0
  1427. polyfile_weave-0.5.5/tests/test_kaitai.py +45 -0
  1428. polyfile_weave-0.5.5/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,7 @@
1
+ include compile_kaitai_parsers.py
2
+ include CODEOWNERS
3
+ graft kaitai_struct_formats
4
+ graft file
5
+ graft docs
6
+ graft logo
7
+ graft hooks
@@ -0,0 +1,173 @@
1
+ Metadata-Version: 2.4
2
+ Name: polyfile-weave
3
+ Version: 0.5.5
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: pdfminer.six<=20240706,>=20220524
28
+ Requires-Dist: Pillow>=5.0.0
29
+ Requires-Dist: pyreadline3; platform_system == "Windows"
30
+ Requires-Dist: pyyaml>=3.13
31
+ Requires-Dist: setuptools>=80.9.0
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
+ [![PyPI version](https://badge.fury.io/py/polyfile.svg)](https://badge.fury.io/py/polyfile)
56
+ [![Tests](https://github.com/trailofbits/polyfile/workflows/Tests/badge.svg)](https://github.com/trailofbits/polyfile/actions)
57
+ [![Slack Status](https://slack.empirehacking.nyc/badge.svg)](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.
@@ -0,0 +1,125 @@
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
+ [![PyPI version](https://badge.fury.io/py/polyfile.svg)](https://badge.fury.io/py/polyfile)
8
+ [![Tests](https://github.com/trailofbits/polyfile/workflows/Tests/badge.svg)](https://github.com/trailofbits/polyfile/actions)
9
+ [![Slack Status](https://slack.empirehacking.nyc/badge.svg)](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.
@@ -0,0 +1,161 @@
1
+ import concurrent.futures
2
+ from datetime import datetime, timezone
3
+ import json
4
+ from multiprocessing import cpu_count
5
+ from pathlib import Path
6
+ import subprocess
7
+ import sys
8
+ from typing import Any, Dict, List, Optional, Tuple
9
+
10
+ POLYFILE_DIR: Path = Path(__file__).absolute().parent
11
+ COMPILE_SCRIPT: Path = POLYFILE_DIR / "polyfile" / "kaitai" / "compiler.py"
12
+ KAITAI_FORMAT_LIBRARY: Path = POLYFILE_DIR / "kaitai_struct_formats"
13
+ KAITAI_PARSERS_DIR: Path = POLYFILE_DIR / "polyfile" / "kaitai" / "parsers"
14
+ MANIFEST_PATH: Path = KAITAI_PARSERS_DIR / "manifest.json"
15
+ EXCLUDE = [
16
+ './kaitai_struct_formats/firmware/broadcom_trx.ksy',
17
+ './kaitai_struct_formats/filesystem/vdi.ksy',
18
+ './kaitai_struct_formats/filesystem/lvm2.ksy',
19
+ './kaitai_struct_formats/image/pif.ksy',
20
+ './kaitai_struct_formats/scientific/nt_mdt/nt_mdt.ksy'
21
+ ]
22
+
23
+
24
+
25
+ # Make sure the ktaitai_struct_formats submodlue is cloned:
26
+ if not (KAITAI_FORMAT_LIBRARY / "README.md").exists():
27
+ subprocess.check_call(["git", "submodule", "init"], cwd=str(POLYFILE_DIR))
28
+ subprocess.check_call(["git", "submodule", "update"], cwd=str(POLYFILE_DIR))
29
+
30
+
31
+ def compile_ksy(path: Path) -> List[Tuple[str, str]]:
32
+ output = subprocess.check_output(
33
+ [sys.executable, str(COMPILE_SCRIPT), str(path), str(KAITAI_PARSERS_DIR)],
34
+ cwd=str(KAITAI_FORMAT_LIBRARY)
35
+ ).decode("utf-8")
36
+ return [ # type: ignore
37
+ tuple(line.split("\t")[:2]) # (class_name, python_path)
38
+ for line in output.split("\n") if line.strip()
39
+ ]
40
+
41
+
42
+ def mtime(path: Path) -> datetime:
43
+ # has the file been modified?
44
+ was_modified = subprocess.call(
45
+ ["git", "diff", "--exit-code", str(path)], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
46
+ cwd=str(KAITAI_FORMAT_LIBRARY)
47
+ ) != 0
48
+ if was_modified:
49
+ # the file was modified since the last commit, so use its filesystem mtime
50
+ return datetime.fromtimestamp(path.stat().st_mtime, tz=timezone.utc)
51
+
52
+ # the file has not been modified since the last commit, so use the last commit time
53
+ last_commit_date = subprocess.check_output(["git", "log", "-1", "--format=\"%cd\"", str(path)],
54
+ cwd=str(KAITAI_FORMAT_LIBRARY)).decode("utf-8").strip()
55
+ return datetime.strptime(last_commit_date, "\"%a %b %d %H:%M:%S %Y %z\"")
56
+
57
+
58
+ def rebuild(force: bool = False):
59
+ # Get the list of copyleft-licensed files to exclude
60
+ excluded_paths = {Path(f).absolute() for f in EXCLUDE}
61
+
62
+ # Remove the manifest file to force a rebuild:
63
+ if force or not MANIFEST_PATH.exists():
64
+ if MANIFEST_PATH.exists():
65
+ MANIFEST_PATH.unlink()
66
+ needs_rebuild = True
67
+ else:
68
+ # see if any of the files are out of date and need to be recompiled
69
+ newest_definition: Optional[datetime] = None
70
+ for definition in KAITAI_FORMAT_LIBRARY.glob("**/*.ksy"):
71
+ # Skip excluded files
72
+ if definition.absolute() in excluded_paths:
73
+ continue
74
+ modtime = mtime(definition)
75
+ if newest_definition is None or newest_definition < modtime:
76
+ newest_definition = modtime
77
+ needs_rebuild = newest_definition > mtime(MANIFEST_PATH)
78
+
79
+ if needs_rebuild:
80
+ # the definitions have been updated, so we need to recompile everything
81
+
82
+ if subprocess.call(
83
+ [sys.executable, str(COMPILE_SCRIPT), "--install"]
84
+ ) != 0:
85
+ sys.stderr.write("Error: You must have kaitai-struct-compiler installed\nSee https://kaitai.io/#download\n")
86
+ sys.exit(1)
87
+
88
+ # Count non-excluded files
89
+ all_ksy_files = list(KAITAI_FORMAT_LIBRARY.glob("**/*.ksy"))
90
+ ksy_files_to_compile = [f for f in all_ksy_files if f.absolute() not in excluded_paths]
91
+ num_excluded = len(all_ksy_files) - len(ksy_files_to_compile)
92
+
93
+ if num_excluded > 0:
94
+ print(f"Excluding {num_excluded} copyleft-licensed KSY files from compilation")
95
+
96
+ num_files = len(ksy_files_to_compile)
97
+
98
+ try:
99
+ from tqdm import tqdm
100
+ except ModuleNotFoundError:
101
+ def tqdm(*args, **kwargs):
102
+ class TQDM:
103
+ def __enter__(self):
104
+ return self
105
+
106
+ def __exit__(self, exc_type, exc_val, exc_tb):
107
+ pass
108
+
109
+ def write(self, message, *_, **__):
110
+ sys.stderr.write(message)
111
+ sys.stderr.write("\n")
112
+ sys.stderr.flush()
113
+
114
+ def update(self, n: int):
115
+ pass
116
+ return TQDM()
117
+
118
+ ksy_manifest: Dict[str, Dict[str, Any]] = {}
119
+
120
+ with tqdm(leave=False, desc="Compiling the Kaitai Struct Format Library", total=num_files) as t:
121
+ with concurrent.futures.ThreadPoolExecutor(max_workers=cpu_count()) as executor:
122
+ futures_to_path: Dict[concurrent.futures.Future, Path] = {
123
+ executor.submit(compile_ksy, file): file
124
+ for file in ksy_files_to_compile
125
+ }
126
+ for future in concurrent.futures.as_completed(futures_to_path):
127
+ t.update(1)
128
+ path = futures_to_path[future]
129
+ relative_path = str(path.relative_to(KAITAI_FORMAT_LIBRARY))
130
+ if relative_path in ksy_manifest:
131
+ raise ValueError(f"{relative_path} appears twice in the Kaitai format library!")
132
+ try:
133
+ (first_spec_class_name, first_spec_python_path), *dependencies = future.result()
134
+ ksy_manifest[relative_path] = {
135
+ "class_name": first_spec_class_name,
136
+ "python_path": str(Path(first_spec_python_path).relative_to(KAITAI_PARSERS_DIR)),
137
+ "dependencies": [
138
+ {
139
+ "class_name": class_name,
140
+ "python_path": str(Path(python_path).relative_to(KAITAI_PARSERS_DIR))
141
+ }
142
+ for class_name, python_path in dependencies
143
+ ]
144
+ }
145
+ t.write(f"Compiled {path.name}")
146
+ except Exception as e:
147
+ t.write(f"Warning: Failed to compile {path}: {e}\n")
148
+
149
+ with open(MANIFEST_PATH, "w") as f:
150
+ json.dump(ksy_manifest, f)
151
+
152
+
153
+ if __name__ == "__main__":
154
+ import argparse
155
+
156
+ parser = argparse.ArgumentParser()
157
+ parser.add_argument("--rebuild-all", "-a", action="store_true", help="rebuilds all parsers from scratch")
158
+
159
+ args = parser.parse_args()
160
+
161
+ rebuild(force=args.rebuild_all)