pytsk3 20260418__tar.gz → 20260520__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.
Files changed (485) hide show
  1. {pytsk3-20260418 → pytsk3-20260520}/MANIFEST.in +19 -10
  2. pytsk3-20260520/PKG-INFO +57 -0
  3. {pytsk3-20260418 → pytsk3-20260520}/README +8 -7
  4. pytsk3-20260520/_build.py +254 -0
  5. {pytsk3-20260418 → pytsk3-20260520}/aff4_errors.h +1 -0
  6. pytsk3-20260520/class_parser.py +5002 -0
  7. pytsk3-20260520/dpkg/changelog +5 -0
  8. pytsk3-20260520/dpkg/rules +8 -0
  9. pytsk3-20260520/error.cpp +72 -0
  10. pytsk3-20260520/lexer.py +243 -0
  11. {pytsk3-20260418 → pytsk3-20260520}/misc.h +1 -13
  12. pytsk3-20260520/patches/sleuthkit-4.15.0-Makefile.am +13 -0
  13. pytsk3-20260520/pyproject.toml +47 -0
  14. {pytsk3-20260418 → pytsk3-20260520}/pytsk3.cpp +5984 -4771
  15. pytsk3-20260520/pytsk3.egg-info/PKG-INFO +57 -0
  16. {pytsk3-20260418 → pytsk3-20260520}/pytsk3.egg-info/SOURCES.txt +28 -103
  17. {pytsk3-20260418 → pytsk3-20260520}/pytsk3.egg-info/top_level.txt +1 -0
  18. {pytsk3-20260418 → pytsk3-20260520}/run_tests.py +5 -6
  19. pytsk3-20260520/setup.cfg +4 -0
  20. pytsk3-20260520/sleuthkit/Makefile +1004 -0
  21. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/Makefile.in +17 -36
  22. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/aclocal.m4 +373 -645
  23. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/compile +13 -29
  24. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/config.guess +26 -87
  25. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/config.sub +240 -704
  26. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/depcomp +9 -10
  27. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/install-sh +9 -9
  28. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/ltmain.sh +358 -439
  29. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/config/missing +29 -50
  30. pytsk3-20260520/sleuthkit/config.log +2474 -0
  31. pytsk3-20260520/sleuthkit/config.status +2328 -0
  32. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/configure +2148 -3840
  33. pytsk3-20260520/sleuthkit/libtool +12102 -0
  34. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/libtool.m4 +193 -257
  35. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ltoptions.m4 +38 -68
  36. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ltsugar.m4 +1 -1
  37. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ltversion.m4 +6 -6
  38. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/lt~obsolete.m4 +1 -1
  39. pytsk3-20260520/sleuthkit/tsk/Makefile +858 -0
  40. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/Makefile.in +19 -28
  41. pytsk3-20260520/sleuthkit/tsk/auto/Makefile +738 -0
  42. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/Makefile.in +12 -22
  43. pytsk3-20260520/sleuthkit/tsk/base/Makefile +749 -0
  44. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/Makefile.in +12 -22
  45. pytsk3-20260520/sleuthkit/tsk/fs/Makefile +927 -0
  46. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/Makefile.in +12 -22
  47. pytsk3-20260520/sleuthkit/tsk/hashdb/Makefile +726 -0
  48. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/Makefile.in +12 -22
  49. pytsk3-20260520/sleuthkit/tsk/img/Makefile +735 -0
  50. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/Makefile.in +12 -22
  51. pytsk3-20260520/sleuthkit/tsk/pool/Makefile +723 -0
  52. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/Makefile.in +12 -22
  53. pytsk3-20260520/sleuthkit/tsk/stamp-h1 +1 -0
  54. pytsk3-20260520/sleuthkit/tsk/tsk_config.h +279 -0
  55. pytsk3-20260520/sleuthkit/tsk/tsk_incs.h +13 -0
  56. pytsk3-20260520/sleuthkit/tsk/util/Bitlocker/Makefile +695 -0
  57. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/Makefile.in +12 -22
  58. pytsk3-20260520/sleuthkit/tsk/util/Makefile +701 -0
  59. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Makefile.in +12 -22
  60. pytsk3-20260520/sleuthkit/tsk/vs/Makefile +684 -0
  61. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/Makefile.in +12 -22
  62. {pytsk3-20260418 → pytsk3-20260520}/talloc/LICENSE +3 -4
  63. pytsk3-20260520/talloc/README +15 -0
  64. {pytsk3-20260418 → pytsk3-20260520}/talloc/replace.h +7 -0
  65. {pytsk3-20260418 → pytsk3-20260520}/talloc/talloc.c +560 -252
  66. {pytsk3-20260418 → pytsk3-20260520}/talloc/talloc.h +195 -109
  67. pytsk3-20260520/tests/__init__.py +15 -0
  68. pytsk3-20260520/tests/cycle_collection.py +73 -0
  69. pytsk3-20260520/tests/fs_info.py +266 -0
  70. pytsk3-20260520/tests/img_info.py +197 -0
  71. pytsk3-20260520/tests/security.py +224 -0
  72. pytsk3-20260520/tests/test_lib.py +75 -0
  73. pytsk3-20260520/tests/thread_safety.py +1029 -0
  74. pytsk3-20260520/tests/volume_info.py +245 -0
  75. {pytsk3-20260418 → pytsk3-20260520}/tsk3.cpp +436 -62
  76. {pytsk3-20260418 → pytsk3-20260520}/tsk3.h +77 -8
  77. pytsk3-20260520/utils/update_source.py +295 -0
  78. pytsk3-20260418/PKG-INFO +0 -15
  79. pytsk3-20260418/class_parser.py +0 -4429
  80. pytsk3-20260418/dpkg/changelog +0 -5
  81. pytsk3-20260418/dpkg/rules +0 -81
  82. pytsk3-20260418/error.cpp +0 -125
  83. pytsk3-20260418/generate_bindings.py +0 -69
  84. pytsk3-20260418/lexer.py +0 -209
  85. pytsk3-20260418/pyproject.toml +0 -4
  86. pytsk3-20260418/pytsk3.egg-info/PKG-INFO +0 -15
  87. pytsk3-20260418/setup.cfg +0 -23
  88. pytsk3-20260418/setup.py +0 -428
  89. pytsk3-20260418/sleuthkit/.coderabbit.yaml +0 -21
  90. pytsk3-20260418/sleuthkit/.git +0 -1
  91. pytsk3-20260418/sleuthkit/.gitattributes +0 -31
  92. pytsk3-20260418/sleuthkit/.github/workflows/build-unix.yml +0 -364
  93. pytsk3-20260418/sleuthkit/.github/workflows/code-coverage.yml +0 -80
  94. pytsk3-20260418/sleuthkit/.github/workflows/compile-windows.yml +0 -106
  95. pytsk3-20260418/sleuthkit/.gitignore +0 -208
  96. pytsk3-20260418/sleuthkit/.travis.yml +0 -78
  97. pytsk3-20260418/sleuthkit/appveyor.yml +0 -96
  98. pytsk3-20260418/sleuthkit/case-uco/java/Makefile.am +0 -30
  99. pytsk3-20260418/sleuthkit/case-uco/java/README.md +0 -16
  100. pytsk3-20260418/sleuthkit/case-uco/java/build.xml +0 -43
  101. pytsk3-20260418/sleuthkit/case-uco/java/ivy.xml +0 -8
  102. pytsk3-20260418/sleuthkit/case-uco/java/ivysettings.xml +0 -8
  103. pytsk3-20260418/sleuthkit/case-uco/java/manifest.mf +0 -1
  104. pytsk3-20260418/sleuthkit/case-uco/java/nbproject/build-impl.xml +0 -1770
  105. pytsk3-20260418/sleuthkit/case-uco/java/nbproject/project.properties +0 -119
  106. pytsk3-20260418/sleuthkit/case-uco/java/nbproject/project.xml +0 -15
  107. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Account.java +0 -63
  108. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/AccountAuthentication.java +0 -43
  109. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Action.java +0 -47
  110. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ActionArgument.java +0 -41
  111. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Annotation.java +0 -59
  112. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Application.java +0 -74
  113. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ApplicationAccount.java +0 -41
  114. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Assertion.java +0 -41
  115. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Attachment.java +0 -41
  116. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankAssertionNode.java +0 -32
  117. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankIdentityNode.java +0 -31
  118. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankLocationNode.java +0 -32
  119. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankOrganizationNode.java +0 -31
  120. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankPersonNode.java +0 -31
  121. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankRelationshipNode.java +0 -32
  122. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankTraceNode.java +0 -31
  123. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserBookmark.java +0 -52
  124. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserCookie.java +0 -103
  125. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CalendarEntry.java +0 -81
  126. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java +0 -1519
  127. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDService.java +0 -47
  128. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDServiceImpl.java +0 -52
  129. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ComputerSpecification.java +0 -55
  130. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Contact.java +0 -41
  131. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentData.java +0 -106
  132. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentNotExportableException.java +0 -30
  133. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CyberItem.java +0 -31
  134. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Device.java +0 -69
  135. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DigitalAccount.java +0 -57
  136. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Domain.java +0 -41
  137. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DomainName.java +0 -41
  138. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailAddress.java +0 -41
  139. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailMessage.java +0 -169
  140. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EnvironmentVariable.java +0 -41
  141. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ExtractedString.java +0 -41
  142. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Facet.java +0 -30
  143. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FacetDeserializer.java +0 -58
  144. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/File.java +0 -101
  145. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FileSystem.java +0 -94
  146. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/HTTPConnection.java +0 -41
  147. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Hash.java +0 -59
  148. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Identity.java +0 -31
  149. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/IdentityFacet.java +0 -31
  150. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/LatLongCoordinates.java +0 -63
  151. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Location.java +0 -31
  152. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MACAddress.java +0 -41
  153. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Message.java +0 -85
  154. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MobileDevice.java +0 -52
  155. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Note.java +0 -41
  156. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/OperatingSystem.java +0 -57
  157. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Organization.java +0 -30
  158. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PathRelation.java +0 -41
  159. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Person.java +0 -31
  160. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneAccount.java +0 -41
  161. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneCall.java +0 -92
  162. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Relationship.java +0 -74
  163. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SIMCard.java +0 -52
  164. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SMSMessage.java +0 -43
  165. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SimpleAddress.java +0 -31
  166. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Software.java +0 -30
  167. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/StandardAttributeTypes.java +0 -114
  168. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Trace.java +0 -44
  169. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/URL.java +0 -52
  170. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/UcoObject.java +0 -112
  171. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Volume.java +0 -47
  172. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsAccount.java +0 -41
  173. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsComputerSpecification.java +0 -63
  174. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsRegistryValue.java +0 -41
  175. pytsk3-20260418/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WirelessNetworkConnection.java +0 -41
  176. pytsk3-20260418/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/FacetDeserializerTests.java +0 -192
  177. pytsk3-20260418/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/TestSuite.java +0 -33
  178. pytsk3-20260418/sleuthkit/db_diff/tskdbdiff.py +0 -1225
  179. pytsk3-20260418/sleuthkit/licenses/Apache-LICENSE-2.0.txt +0 -202
  180. pytsk3-20260418/sleuthkit/licenses/GNUv2-COPYING +0 -343
  181. pytsk3-20260418/sleuthkit/licenses/GNUv3-COPYING +0 -674
  182. pytsk3-20260418/sleuthkit/licenses/README.md +0 -274
  183. pytsk3-20260418/sleuthkit/licenses/bsd.txt +0 -16
  184. pytsk3-20260418/sleuthkit/licenses/mit.txt +0 -24
  185. pytsk3-20260418/sleuthkit/ruleset.xml +0 -299
  186. pytsk3-20260418/sleuthkit/test/tools/autotools/test_loaddb.sh +0 -16
  187. pytsk3-20260418/sleuthkit/travis_install_libs.sh +0 -18
  188. pytsk3-20260418/talloc/README +0 -11
  189. pytsk3-20260418/tests/test_lib.py +0 -57
  190. {pytsk3-20260418 → pytsk3-20260520}/AUTHORS +0 -0
  191. {pytsk3-20260418 → pytsk3-20260520}/LICENSE +0 -0
  192. {pytsk3-20260418 → pytsk3-20260520}/class.cpp +0 -0
  193. {pytsk3-20260418 → pytsk3-20260520}/class.h +0 -0
  194. {pytsk3-20260418 → pytsk3-20260520}/dpkg/compat +0 -0
  195. {pytsk3-20260418 → pytsk3-20260520}/dpkg/control +0 -0
  196. {pytsk3-20260418 → pytsk3-20260520}/dpkg/copyright +0 -0
  197. {pytsk3-20260418 → pytsk3-20260520}/dpkg/python3-pytsk3.docs +0 -0
  198. {pytsk3-20260418 → pytsk3-20260520}/dpkg/source/format +0 -0
  199. {pytsk3-20260418 → pytsk3-20260520}/dpkg/source/options +0 -0
  200. {pytsk3-20260418 → pytsk3-20260520}/patches/sleuthkit-4.15.0-configure.ac +0 -0
  201. {pytsk3-20260418 → pytsk3-20260520}/pytsk3.egg-info/dependency_links.txt +0 -0
  202. {pytsk3-20260418 → pytsk3-20260520}/pytsk3.h +0 -0
  203. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/API-CHANGES.txt +0 -0
  204. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/ChangeLog.txt +0 -0
  205. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/INSTALL.txt +0 -0
  206. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/Makefile.am +0 -0
  207. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/NEWS.txt +0 -0
  208. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/README.md +0 -0
  209. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/README_win32.txt +0 -0
  210. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/SECURITY.md +0 -0
  211. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/bootstrap +0 -0
  212. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/configure.ac +0 -0
  213. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/licenses/IBM-LICENSE +0 -0
  214. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/licenses/cpl1.0.txt +0 -0
  215. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ac_prog_java.m4 +0 -0
  216. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ac_prog_java_works.m4 +0 -0
  217. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ac_prog_javac.m4 +0 -0
  218. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ac_prog_javac_works.m4 +0 -0
  219. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ax_check_openssl.m4 +0 -0
  220. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ax_cxx_compile_stdcxx.m4 +0 -0
  221. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ax_jni_include_dir.m4 +0 -0
  222. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ax_pkg_check_modules.m4 +0 -0
  223. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/ax_pthread.m4 +0 -0
  224. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/cppunit.m4 +0 -0
  225. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/m4/tsk_opt_dep_check.m4 +0 -0
  226. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/Makefile.am +0 -0
  227. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/.indent.pro +0 -0
  228. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/Makefile.am +0 -0
  229. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/auto.cpp +0 -0
  230. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/auto_db.cpp +0 -0
  231. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/case_db.cpp +0 -0
  232. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/db_sqlite.cpp +0 -0
  233. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/guid.cpp +0 -0
  234. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/guid.h +0 -0
  235. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/is_image_supported.cpp +0 -0
  236. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/sqlite3.c +0 -0
  237. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/sqlite3.h +0 -0
  238. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_auto.h +0 -0
  239. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_auto_i.h +0 -0
  240. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_case_db.h +0 -0
  241. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db.cpp +0 -0
  242. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db.h +0 -0
  243. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db_sqlite.h +0 -0
  244. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_is_image_supported.h +0 -0
  245. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/.indent.pro +0 -0
  246. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/Makefile.am +0 -0
  247. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/XGetopt.c +0 -0
  248. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/crc.c +0 -0
  249. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/crc.h +0 -0
  250. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/md5c.c +0 -0
  251. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/mymalloc.c +0 -0
  252. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/sha1c.c +0 -0
  253. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_base.h +0 -0
  254. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_base_i.h +0 -0
  255. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_endian.c +0 -0
  256. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_error.c +0 -0
  257. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_error_win32.cpp +0 -0
  258. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_list.c +0 -0
  259. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_lock.c +0 -0
  260. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_os.h +0 -0
  261. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_parse.c +0 -0
  262. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_printf.c +0 -0
  263. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_stack.c +0 -0
  264. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_unicode.c +0 -0
  265. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_unicode.h +0 -0
  266. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_version.c +0 -0
  267. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/Doxyfile +0 -0
  268. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/auto.dox +0 -0
  269. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/base.dox +0 -0
  270. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/basics.dox +0 -0
  271. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/cpp.dox +0 -0
  272. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/footer.html +0 -0
  273. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/fs.dox +0 -0
  274. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/hashdb.dox +0 -0
  275. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/img.dox +0 -0
  276. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/main.dox +0 -0
  277. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/pool.dox +0 -0
  278. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/docs/vs.dox +0 -0
  279. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/.indent.pro +0 -0
  280. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/Makefile.am +0 -0
  281. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs.cpp +0 -0
  282. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_compat.cpp +0 -0
  283. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_compat.hpp +0 -0
  284. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.cpp +0 -0
  285. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.h +0 -0
  286. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.hpp +0 -0
  287. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_open.cpp +0 -0
  288. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/dcalc_lib.c +0 -0
  289. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/dcat_lib.c +0 -0
  290. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/decmpfs.c +0 -0
  291. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/decmpfs.h +0 -0
  292. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/dls_lib.c +0 -0
  293. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/dstat_lib.c +0 -0
  294. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/encryptionHelper.cpp +0 -0
  295. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/encryptionHelper.h +0 -0
  296. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs.c +0 -0
  297. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs_dent.c +0 -0
  298. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs_meta.c +0 -0
  299. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs.c +0 -0
  300. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs_dent.c +0 -0
  301. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs_journal.c +0 -0
  302. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs.c +0 -0
  303. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_dent.cpp +0 -0
  304. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_meta.c +0 -0
  305. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_utils.c +0 -0
  306. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs.c +0 -0
  307. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs_dent.c +0 -0
  308. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs_meta.c +0 -0
  309. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ffind_lib.c +0 -0
  310. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ffs.c +0 -0
  311. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ffs_dent.c +0 -0
  312. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fls_lib.c +0 -0
  313. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_attr.c +0 -0
  314. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_attrlist.c +0 -0
  315. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_block.c +0 -0
  316. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_dir.c +0 -0
  317. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_file.c +0 -0
  318. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_inode.c +0 -0
  319. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_io.c +0 -0
  320. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_load.c +0 -0
  321. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_name.c +0 -0
  322. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_open.c +0 -0
  323. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_parse.c +0 -0
  324. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_types.c +0 -0
  325. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs.c +0 -0
  326. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_dent.c +0 -0
  327. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_journal.c +0 -0
  328. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_unicompare.c +0 -0
  329. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/icat_lib.c +0 -0
  330. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ifind_lib.c +0 -0
  331. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ils_lib.c +0 -0
  332. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/iso9660.c +0 -0
  333. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/iso9660_dent.c +0 -0
  334. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/logical_fs.cpp +0 -0
  335. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/lzvn.c +0 -0
  336. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/lzvn.h +0 -0
  337. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/nofs_misc.c +0 -0
  338. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ntfs.c +0 -0
  339. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/ntfs_dent.cpp +0 -0
  340. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/rawfs.c +0 -0
  341. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/swapfs.c +0 -0
  342. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_apfs.h +0 -0
  343. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_apfs.hpp +0 -0
  344. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_exfatfs.h +0 -0
  345. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ext2fs.h +0 -0
  346. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fatfs.h +0 -0
  347. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fatxxfs.h +0 -0
  348. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ffs.h +0 -0
  349. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fs.h +0 -0
  350. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fs_i.h +0 -0
  351. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_hfs.h +0 -0
  352. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_iso9660.h +0 -0
  353. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_logical_fs.h +0 -0
  354. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ntfs.h +0 -0
  355. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_yaffs.h +0 -0
  356. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/unix_misc.c +0 -0
  357. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/usn_journal.c +0 -0
  358. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/usnjls_lib.c +0 -0
  359. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/walk_cpp.cpp +0 -0
  360. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/fs/yaffs.cpp +0 -0
  361. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/.indent.pro +0 -0
  362. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/Makefile.am +0 -0
  363. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/binsrch_index.cpp +0 -0
  364. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/encase.c +0 -0
  365. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/hashkeeper.c +0 -0
  366. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/hdb_base.c +0 -0
  367. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/idxonly.c +0 -0
  368. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/md5sum.c +0 -0
  369. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/nsrl.c +0 -0
  370. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/sqlite_hdb.cpp +0 -0
  371. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hash_info.h +0 -0
  372. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb.c +0 -0
  373. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb.h +0 -0
  374. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb_i.h +0 -0
  375. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/.indent.pro +0 -0
  376. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/Makefile.am +0 -0
  377. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/aff.c +0 -0
  378. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/aff.h +0 -0
  379. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/ewf.cpp +0 -0
  380. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/ewf.h +0 -0
  381. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/img_io.c +0 -0
  382. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/img_open.cpp +0 -0
  383. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/img_types.c +0 -0
  384. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/img_writer.cpp +0 -0
  385. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/img_writer.h +0 -0
  386. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/logical_img.c +0 -0
  387. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/logical_img.h +0 -0
  388. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/mult_files.c +0 -0
  389. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/pool.hpp +0 -0
  390. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/raw.c +0 -0
  391. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/raw.h +0 -0
  392. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/tsk_img.h +0 -0
  393. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/tsk_img_i.h +0 -0
  394. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/unsupported_types.c +0 -0
  395. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/unsupported_types.h +0 -0
  396. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/vhd.c +0 -0
  397. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/vhd.h +0 -0
  398. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/vmdk.c +0 -0
  399. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/img/vmdk.h +0 -0
  400. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/libtsk.h +0 -0
  401. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/.indent.pro +0 -0
  402. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/Makefile.am +0 -0
  403. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool.cpp +0 -0
  404. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool_compat.cpp +0 -0
  405. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool_compat.hpp +0 -0
  406. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/img_bfio_handle.c +0 -0
  407. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/img_bfio_handle.h +0 -0
  408. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool.cpp +0 -0
  409. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool_compat.cpp +0 -0
  410. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool_compat.hpp +0 -0
  411. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_compat.hpp +0 -0
  412. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_open.cpp +0 -0
  413. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_read.cpp +0 -0
  414. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_types.cpp +0 -0
  415. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_apfs.h +0 -0
  416. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_apfs.hpp +0 -0
  417. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_lvm.hpp +0 -0
  418. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_pool.h +0 -0
  419. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_pool.hpp +0 -0
  420. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/default.sort +0 -0
  421. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/freebsd.sort +0 -0
  422. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/images.sort +0 -0
  423. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/linux.sort +0 -0
  424. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/openbsd.sort +0 -0
  425. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/solaris.sort +0 -0
  426. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/sorter/windows.sort +0 -0
  427. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/tsk.pc.in +0 -0
  428. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/tsk_config.h.in +0 -0
  429. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/tsk_tools_i.h +0 -0
  430. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/.indent.pro +0 -0
  431. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/.indent.pro +0 -0
  432. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerParser.cpp +0 -0
  433. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerParser.h +0 -0
  434. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.cpp +0 -0
  435. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.h +0 -0
  436. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/DataTypes.cpp +0 -0
  437. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/DataTypes.h +0 -0
  438. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/Makefile.am +0 -0
  439. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataEntry.cpp +0 -0
  440. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataEntry.h +0 -0
  441. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataUtils.cpp +0 -0
  442. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataUtils.h +0 -0
  443. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValue.h +0 -0
  444. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.cpp +0 -0
  445. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.h +0 -0
  446. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.cpp +0 -0
  447. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.h +0 -0
  448. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.cpp +0 -0
  449. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.h +0 -0
  450. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.cpp +0 -0
  451. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.h +0 -0
  452. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.cpp +0 -0
  453. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.h +0 -0
  454. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.cpp +0 -0
  455. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.h +0 -0
  456. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/Makefile.am +0 -0
  457. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/crypto.cpp +0 -0
  458. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/crypto.hpp +0 -0
  459. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/detect_encryption.c +0 -0
  460. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/detect_encryption.h +0 -0
  461. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/file_system_utils.c +0 -0
  462. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/file_system_utils.h +0 -0
  463. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/lw_shared_ptr.hpp +0 -0
  464. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/util/span.hpp +0 -0
  465. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/.indent.pro +0 -0
  466. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/Makefile.am +0 -0
  467. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/bsd.c +0 -0
  468. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/dos.c +0 -0
  469. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/gpt.c +0 -0
  470. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/mac.c +0 -0
  471. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_io.c +0 -0
  472. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_open.c +0 -0
  473. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_part.c +0 -0
  474. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_types.c +0 -0
  475. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/sun.c +0 -0
  476. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_bsd.h +0 -0
  477. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_dos.h +0 -0
  478. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_gpt.h +0 -0
  479. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_mac.h +0 -0
  480. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_sun.h +0 -0
  481. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_vs.h +0 -0
  482. {pytsk3-20260418 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_vs_i.h +0 -0
  483. {pytsk3-20260418 → pytsk3-20260520}/test_data/bogus.raw +0 -0
  484. {pytsk3-20260418 → pytsk3-20260520}/test_data/image.raw +0 -0
  485. {pytsk3-20260418 → pytsk3-20260520}/test_data/tsk_volume_system.raw +0 -0
@@ -1,29 +1,38 @@
1
- include AUTHORS LICENSE version.txt
2
- include *.c
1
+ include AUTHORS
3
2
  include *.h
4
3
  include *.py
5
- exclude *.pyc
6
- exclude .git .gitignore .gitmodules
7
- exclude .travis.yml
8
- exclude API-CHANGES.txt config.log ruleset.xml setupDevRepos.py travis_build.sh
4
+ include utils/update_source.py
9
5
  recursive-include dpkg *
10
6
  recursive-include patches *
11
7
  recursive-include sleuthkit *
8
+ recursive-include talloc *
9
+ recursive-include test_data *
10
+ recursive-include tests *.py
11
+ exclude sleuthkit/.coderabbit.yaml
12
+ exclude sleuthkit/.git
13
+ exclude sleuthkit/.gitattributes
14
+ exclude sleuthkit/.gitignore
15
+ exclude sleuthkit/.travis.yml
16
+ exclude sleuthkit/appveyor.yml
17
+ exclude sleuthkit/ruleset.xml
18
+ exclude sleuthkit/travis_install_libs.sh
19
+ recursive-exclude sleuthkit *.Plo
20
+ recursive-exclude sleuthkit/.github *
12
21
  recursive-exclude sleuthkit/autom4te.cache *
13
22
  recursive-exclude sleuthkit/bindings *
23
+ recursive-exclude sleuthkit/case-uco *
24
+ recursive-exclude sleuthkit/db_diff *
14
25
  recursive-exclude sleuthkit/debian *
15
26
  recursive-exclude sleuthkit/docs *
16
- recursive-exclude sleuthkit/framework *
27
+ recursive-exclude sleuthkit/licenses *
17
28
  recursive-exclude sleuthkit/man *
18
29
  recursive-exclude sleuthkit/packages *
19
30
  recursive-exclude sleuthkit/rejistry++ *
20
31
  recursive-exclude sleuthkit/release *
21
32
  recursive-exclude sleuthkit/samples *
33
+ recursive-exclude sleuthkit/test *
22
34
  recursive-exclude sleuthkit/tests *
23
35
  recursive-exclude sleuthkit/tools *
24
36
  recursive-exclude sleuthkit/unit_tests *
25
37
  recursive-exclude sleuthkit/win32 *
26
38
  recursive-exclude sleuthkit/xcode *
27
- recursive-include talloc *
28
- recursive-include test_data *
29
- recursive-include travis *
@@ -0,0 +1,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytsk3
3
+ Version: 20260520
4
+ Summary: Python bindings for the SleuthKit
5
+ Author-email: Michael Cohen <scudette@gmail.com>
6
+ Maintainer-email: Joachim Metz <joachim.metz@gmail.com>
7
+ License-Expression: Apache-2.0
8
+ Project-URL: Documentation, https://raw.githubusercontent.com/py4n6/pytsk/refs/heads/main/README
9
+ Project-URL: Homepage, https://github.com/py4n6/pytsk
10
+ Project-URL: Repository, https://github.com/py4n6/pytsk
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Programming Language :: Python
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ License-File: sleuthkit/licenses/cpl1.0.txt
17
+ License-File: sleuthkit/licenses/IBM-LICENSE
18
+ License-File: talloc/LICENSE
19
+ Dynamic: license-file
20
+
21
+ pytsk is a Python binding for the SleuthKit.
22
+
23
+ This is a Python binding against the libtsk (SleuthKit library). The aim is
24
+ to make the binding reflect the TSK API as much as possible in capabilities,
25
+ while at the same time having a nice Pythonic OO interface:
26
+
27
+ 4.15.0: https://www.sleuthkit.org/sleuthkit/docs/api-docs/4.15.0-develop/
28
+
29
+ NOTE: Currently the 4.15.0 API docs are not available, 4.15.0-develop is the
30
+ closest.
31
+
32
+ WARNING: use pytsk at your own risk. libtsk is known to have many defects. For
33
+ processing data from untrusted sources it is highly recommended to add
34
+ additional security measures, such as a security sandbox.
35
+
36
+ If downloaded pytsk using git you'll have to first run:
37
+
38
+ python utils/update_source.py
39
+
40
+ If you want to use the latest version of Sleuthkit that is checked into git
41
+ (also known as HEAD), instead of the currently supported version, you can run:
42
+
43
+ python utils/update_source.py --use-head
44
+
45
+ To build the bindings just use the standard Python build module:
46
+
47
+ python -m build --wheel
48
+ python -m pip install --no-index --find-links=dist pytsk3
49
+
50
+ At the top level of the source tree.
51
+
52
+ The Python binding is autogenerated from the libtsk header files using a small
53
+ OO C shim. This means that most of the fields in many of the structs are already
54
+ available. We aim to provide most of the functionality using this shim (e.g.
55
+ traversing and iterating over lists etc). The authoritative source of
56
+ documentation is the library API linked above.
57
+
@@ -4,9 +4,10 @@ This is a Python binding against the libtsk (SleuthKit library). The aim is
4
4
  to make the binding reflect the TSK API as much as possible in capabilities,
5
5
  while at the same time having a nice Pythonic OO interface:
6
6
 
7
- 4.12.1: https://www.sleuthkit.org/sleuthkit/docs/api-docs/4.12.1/
7
+ 4.15.0: https://www.sleuthkit.org/sleuthkit/docs/api-docs/4.15.0-develop/
8
8
 
9
- NOTE: Currently the 4.14.0 API docs are not available, 4.12.1 is the closest.
9
+ NOTE: Currently the 4.15.0 API docs are not available, 4.15.0-develop is the
10
+ closest.
10
11
 
11
12
  WARNING: use pytsk at your own risk. libtsk is known to have many defects. For
12
13
  processing data from untrusted sources it is highly recommended to add
@@ -14,17 +15,17 @@ additional security measures, such as a security sandbox.
14
15
 
15
16
  If downloaded pytsk using git you'll have to first run:
16
17
 
17
- python setup.py update
18
+ python utils/update_source.py
18
19
 
19
20
  If you want to use the latest version of Sleuthkit that is checked into git
20
21
  (also known as HEAD), instead of the currently supported version, you can run:
21
22
 
22
- python setup.py update --use-head
23
+ python utils/update_source.py --use-head
23
24
 
24
- To build the bindings just use the standard Python setuptools:
25
+ To build the bindings just use the standard Python build module:
25
26
 
26
- python setup.py build
27
- python setup.py install
27
+ python -m build --wheel
28
+ python -m pip install --no-index --find-links=dist pytsk3
28
29
 
29
30
  At the top level of the source tree.
30
31
 
@@ -0,0 +1,254 @@
1
+ #!/usr/bin/env python3
2
+ #
3
+ # Copyright 2010, Michael Cohen <scudette@gmail.com>.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ """Build back-end for pytsk."""
17
+
18
+ import glob
19
+ import os
20
+ import shlex
21
+ import subprocess
22
+
23
+ from setuptools import Extension
24
+ from setuptools import errors
25
+ from setuptools._distutils import log
26
+ from setuptools._distutils._modified import newer_group
27
+ from setuptools._distutils.ccompiler import new_compiler
28
+ from setuptools.command.build_ext import build_ext
29
+
30
+ # This file does not follow the naming convention specified in .pylintrc.
31
+ # pylint: disable=invalid-name
32
+
33
+
34
+ class custom_build_ext(build_ext):
35
+ """Custom build_ext command."""
36
+
37
+ def _get_define_macros(self, compiler_type):
38
+ """Determine the define macros.
39
+
40
+ Args:
41
+ compiler_type (str): compiler type.
42
+ """
43
+ if compiler_type == "msvc":
44
+ return [
45
+ ("WIN32", "1"),
46
+ ("UNICODE", "1"),
47
+ ("NOMINMAX", "1"),
48
+ ("_CRT_SECURE_NO_WARNINGS", "1"),
49
+ ]
50
+
51
+ return [
52
+ ("HAVE_CONFIG_H", "1"),
53
+ ("LOCALEDIR", '"/usr/share/locale"'),
54
+ # Make libtsk's lock_t and per-thread error storage active in
55
+ # pytsk3's own translation units so they match libtsk's. On
56
+ # MSVC this is set automatically by tsk_os.h via _MSC_VER.
57
+ ("TSK_MULTITHREAD_LIB", None),
58
+ ]
59
+
60
+ def _get_include_directories(self):
61
+ """Determine the include directories."""
62
+ return [
63
+ ".",
64
+ "talloc",
65
+ os.path.join("sleuthkit"),
66
+ ]
67
+
68
+ def _get_libraries(self, compiler_type):
69
+ """Determine the libraries."""
70
+ if compiler_type == "msvc":
71
+ return []
72
+
73
+ # pthread is needed because TSK_MULTITHREAD_LIB pulls in pthread_key_*
74
+ # and pthread_mutex_* from tsk_error.c and tsk_lock.c. Harmless on
75
+ # glibc 2.34+ (folded into libc) and macOS (libSystem stub).
76
+ return ["stdc++", "pthread"]
77
+
78
+ def _get_sources(self):
79
+ """Determine the sources."""
80
+ sources = [
81
+ "class.cpp",
82
+ "error.cpp",
83
+ "tsk3.cpp",
84
+ "pytsk3.cpp",
85
+ os.path.join("talloc", "talloc.c"),
86
+ os.path.join("sleuthkit", "tsk", "auto", "guid.cpp"),
87
+ ]
88
+ for path in ("base", "docs", "fs", "img", "pool", "util", "vs"):
89
+ for extension in ("*.c", "*.cpp"):
90
+ sources.extend(
91
+ glob.glob(os.path.join("sleuthkit", "tsk", path, extension))
92
+ )
93
+
94
+ return sources
95
+
96
+ def _print_configure_summary(self, output):
97
+ """Prints the configure summary."""
98
+ print_line = False
99
+ for line in output.split("\n"):
100
+ line = line.rstrip()
101
+ if line == "configure:":
102
+ print_line = True
103
+
104
+ if print_line:
105
+ print(line)
106
+
107
+ def _run_shell_command(self, command):
108
+ """Runs a command."""
109
+ arguments = shlex.split(f"sh {command:s}")
110
+
111
+ # pylint: disable=consider-using-with
112
+ process = subprocess.Popen(
113
+ arguments,
114
+ cwd="sleuthkit",
115
+ stderr=subprocess.PIPE,
116
+ stdout=subprocess.PIPE,
117
+ universal_newlines=True,
118
+ )
119
+ if not process:
120
+ raise RuntimeError(f"Running: {command:s} failed.")
121
+
122
+ output, error = process.communicate()
123
+ if process.returncode != 0:
124
+ error = "\n".join(error.split("\n")[-5:])
125
+ raise RuntimeError(f"Running: {command:s} failed with error:\n{error:s}.")
126
+
127
+ return output
128
+
129
+ def initialize_options(self):
130
+ """Initialize build options."""
131
+ super().initialize_options()
132
+
133
+ compiler = new_compiler(compiler=self.compiler)
134
+
135
+ # ext_module can be defined multiple times. It is currently assumed that
136
+ # this is due to the experimental nature of tool.setuptools.ext-modules
137
+ # at this time. Hence ext_modules is redefined as a single extension.
138
+ self.distribution.ext_modules = [
139
+ Extension(
140
+ "pytsk3",
141
+ define_macros=self._get_define_macros(compiler.compiler_type),
142
+ include_dirs=self._get_include_directories(),
143
+ libraries=self._get_libraries(compiler.compiler_type),
144
+ sources=self._get_sources(),
145
+ )
146
+ ]
147
+
148
+ # Override build_extension to not have clang on Mac OS fail with:
149
+ # invalid argument '-std=c++14' not allowed with 'C'
150
+ def build_extension(self, ext):
151
+ """Builds the extension."""
152
+ sources = ext.sources
153
+ if sources is None or not isinstance(sources, (list, tuple)):
154
+ raise errors.SetupError(
155
+ f"in 'ext_modules' option (extension '{ext.name:s}'), 'sources' "
156
+ f"must be present and must be a list of source filenames"
157
+ )
158
+ sources = sorted(sources)
159
+
160
+ extension_path = self.get_ext_fullpath(ext.name)
161
+ depends = ext.sources + ext.depends
162
+ if not (self.force or newer_group(depends, extension_path, "newer")):
163
+ log.debug("skipping '%s' extension (up-to-date)", ext.name)
164
+ return
165
+
166
+ log.info("building '%s' extension", ext.name)
167
+
168
+ c_sources = []
169
+ cxx_sources = []
170
+ for source in ext.sources:
171
+ if source.endswith(".c"):
172
+ c_sources.append(source)
173
+ else:
174
+ cxx_sources.append(source)
175
+
176
+ objects = []
177
+ for lang, sources in (("c", c_sources), ("c++", cxx_sources)):
178
+ extra_args = ext.extra_compile_args or []
179
+ if lang == "c++":
180
+ if self.compiler.compiler_type == "msvc":
181
+ extra_args.append("/EHsc")
182
+ else:
183
+ extra_args.append("-std=c++14")
184
+
185
+ macros = ext.define_macros[:]
186
+ for undef in ext.undef_macros:
187
+ macros.append((undef,))
188
+
189
+ compiled_objects = self.compiler.compile(
190
+ sources,
191
+ output_dir=self.build_temp,
192
+ macros=macros,
193
+ include_dirs=ext.include_dirs,
194
+ debug=self.debug,
195
+ extra_postargs=extra_args,
196
+ depends=ext.depends,
197
+ )
198
+ objects.extend(compiled_objects)
199
+
200
+ # pylint: disable=attribute-defined-outside-init
201
+ self._built_objects = objects[:]
202
+ if ext.extra_objects:
203
+ objects.extend(ext.extra_objects)
204
+
205
+ extra_args = ext.extra_link_args or []
206
+ # When MinGW32 is used statically link libgcc and libstdc++.
207
+ if self.compiler.compiler_type == "mingw32":
208
+ extra_args.extend(["-static-libgcc", "-static-libstdc++"])
209
+
210
+ if ext.extra_objects:
211
+ objects.extend(ext.extra_objects)
212
+ extra_args = ext.extra_link_args or []
213
+
214
+ language = ext.language or self.compiler.detect_language(sources)
215
+
216
+ self.compiler.link_shared_object(
217
+ objects,
218
+ extension_path,
219
+ libraries=self.get_libraries(ext),
220
+ library_dirs=ext.library_dirs,
221
+ runtime_library_dirs=ext.runtime_library_dirs,
222
+ extra_postargs=extra_args,
223
+ export_symbols=self.get_export_symbols(ext),
224
+ debug=self.debug,
225
+ build_temp=self.build_temp,
226
+ target_lang=language,
227
+ )
228
+
229
+ def run(self):
230
+ if not os.access("pytsk3.cpp", os.R_OK):
231
+ raise OSError("Missing pytsk3.cpp")
232
+
233
+ compiler = new_compiler(compiler=self.compiler)
234
+ if compiler.compiler_type != "msvc":
235
+ # We want to build as much as possible self contained Python binding.
236
+ output = self._run_shell_command(
237
+ " ".join(
238
+ [
239
+ "configure",
240
+ "--disable-java",
241
+ "--disable-multithreading",
242
+ "--without-afflib",
243
+ "--without-libbfio",
244
+ "--without-libewf",
245
+ "--without-libvhdi",
246
+ "--without-libvmdk",
247
+ "--without-libvslvm",
248
+ "--without-zlib",
249
+ ]
250
+ )
251
+ )
252
+ self._print_configure_summary(output)
253
+
254
+ super().run()
@@ -14,6 +14,7 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
+
17
18
  #ifndef AFF4_ERRORS_H_
18
19
  #define AFF4_ERRORS_H_
19
20