pytsk3 20260416__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.
- {pytsk3-20260416 → pytsk3-20260520}/MANIFEST.in +19 -10
- pytsk3-20260520/PKG-INFO +57 -0
- {pytsk3-20260416 → pytsk3-20260520}/README +8 -7
- pytsk3-20260520/_build.py +254 -0
- {pytsk3-20260416 → pytsk3-20260520}/aff4_errors.h +1 -0
- pytsk3-20260520/class_parser.py +5002 -0
- pytsk3-20260520/dpkg/changelog +5 -0
- pytsk3-20260520/dpkg/rules +8 -0
- pytsk3-20260520/error.cpp +72 -0
- pytsk3-20260520/lexer.py +243 -0
- {pytsk3-20260416 → pytsk3-20260520}/misc.h +1 -13
- pytsk3-20260520/patches/sleuthkit-4.15.0-Makefile.am +13 -0
- pytsk3-20260520/pyproject.toml +47 -0
- {pytsk3-20260416 → pytsk3-20260520}/pytsk3.cpp +5984 -4771
- pytsk3-20260520/pytsk3.egg-info/PKG-INFO +57 -0
- pytsk3-20260520/pytsk3.egg-info/SOURCES.txt +371 -0
- {pytsk3-20260416 → pytsk3-20260520}/pytsk3.egg-info/top_level.txt +1 -0
- {pytsk3-20260416 → pytsk3-20260520}/run_tests.py +5 -6
- pytsk3-20260520/setup.cfg +4 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/Makefile +34 -53
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/Makefile.in +17 -36
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/aclocal.m4 +373 -645
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/compile +13 -29
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/config.guess +26 -87
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/config.sub +240 -704
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/depcomp +9 -10
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/install-sh +9 -9
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/ltmain.sh +358 -439
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config/missing +29 -50
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config.log +765 -1008
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/config.status +79 -82
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/configure +2148 -3840
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/libtool +378 -459
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/libtool.m4 +193 -257
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ltoptions.m4 +38 -68
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ltsugar.m4 +1 -1
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ltversion.m4 +6 -6
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/lt~obsolete.m4 +1 -1
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/Makefile +36 -45
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/Makefile.in +19 -28
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/Makefile +32 -42
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/tsk_config.h +2 -2
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/Makefile +29 -39
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/Makefile.in +12 -22
- {pytsk3-20260416 → pytsk3-20260520}/talloc/LICENSE +3 -4
- pytsk3-20260520/talloc/README +15 -0
- {pytsk3-20260416 → pytsk3-20260520}/talloc/replace.h +7 -0
- {pytsk3-20260416 → pytsk3-20260520}/talloc/talloc.c +560 -252
- {pytsk3-20260416 → pytsk3-20260520}/talloc/talloc.h +195 -109
- pytsk3-20260520/tests/__init__.py +15 -0
- pytsk3-20260520/tests/cycle_collection.py +73 -0
- pytsk3-20260520/tests/fs_info.py +266 -0
- pytsk3-20260520/tests/img_info.py +197 -0
- pytsk3-20260520/tests/security.py +224 -0
- pytsk3-20260520/tests/test_lib.py +75 -0
- pytsk3-20260520/tests/thread_safety.py +1029 -0
- pytsk3-20260520/tests/volume_info.py +245 -0
- {pytsk3-20260416 → pytsk3-20260520}/tsk3.cpp +436 -62
- {pytsk3-20260416 → pytsk3-20260520}/tsk3.h +77 -8
- pytsk3-20260520/utils/update_source.py +295 -0
- pytsk3-20260416/PKG-INFO +0 -15
- pytsk3-20260416/class_parser.py +0 -4429
- pytsk3-20260416/dpkg/changelog +0 -5
- pytsk3-20260416/dpkg/rules +0 -81
- pytsk3-20260416/error.cpp +0 -125
- pytsk3-20260416/generate_bindings.py +0 -69
- pytsk3-20260416/lexer.py +0 -209
- pytsk3-20260416/patches/sleuthkit-4.15.0-crc.h +0 -24
- pytsk3-20260416/pyproject.toml +0 -4
- pytsk3-20260416/pytsk3.egg-info/PKG-INFO +0 -15
- pytsk3-20260416/pytsk3.egg-info/SOURCES.txt +0 -599
- pytsk3-20260416/setup.cfg +0 -23
- pytsk3-20260416/setup.py +0 -416
- pytsk3-20260416/sleuthkit/.coderabbit.yaml +0 -21
- pytsk3-20260416/sleuthkit/.git +0 -1
- pytsk3-20260416/sleuthkit/.gitattributes +0 -31
- pytsk3-20260416/sleuthkit/.github/workflows/build-unix.yml +0 -364
- pytsk3-20260416/sleuthkit/.github/workflows/code-coverage.yml +0 -80
- pytsk3-20260416/sleuthkit/.github/workflows/compile-windows.yml +0 -106
- pytsk3-20260416/sleuthkit/.gitignore +0 -208
- pytsk3-20260416/sleuthkit/.travis.yml +0 -78
- pytsk3-20260416/sleuthkit/appveyor.yml +0 -96
- pytsk3-20260416/sleuthkit/case-uco/java/Makefile.am +0 -30
- pytsk3-20260416/sleuthkit/case-uco/java/README.md +0 -16
- pytsk3-20260416/sleuthkit/case-uco/java/build.xml +0 -43
- pytsk3-20260416/sleuthkit/case-uco/java/ivy.xml +0 -8
- pytsk3-20260416/sleuthkit/case-uco/java/ivysettings.xml +0 -8
- pytsk3-20260416/sleuthkit/case-uco/java/manifest.mf +0 -1
- pytsk3-20260416/sleuthkit/case-uco/java/nbproject/build-impl.xml +0 -1770
- pytsk3-20260416/sleuthkit/case-uco/java/nbproject/project.properties +0 -119
- pytsk3-20260416/sleuthkit/case-uco/java/nbproject/project.xml +0 -15
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Account.java +0 -63
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/AccountAuthentication.java +0 -43
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Action.java +0 -47
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ActionArgument.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Annotation.java +0 -59
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Application.java +0 -74
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ApplicationAccount.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Assertion.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Attachment.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankAssertionNode.java +0 -32
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankIdentityNode.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankLocationNode.java +0 -32
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankOrganizationNode.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankPersonNode.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankRelationshipNode.java +0 -32
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankTraceNode.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserBookmark.java +0 -52
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserCookie.java +0 -103
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CalendarEntry.java +0 -81
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java +0 -1519
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDService.java +0 -47
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDServiceImpl.java +0 -52
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ComputerSpecification.java +0 -55
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Contact.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentData.java +0 -106
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentNotExportableException.java +0 -30
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CyberItem.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Device.java +0 -69
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DigitalAccount.java +0 -57
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Domain.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DomainName.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailAddress.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailMessage.java +0 -169
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EnvironmentVariable.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ExtractedString.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Facet.java +0 -30
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FacetDeserializer.java +0 -58
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/File.java +0 -101
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FileSystem.java +0 -94
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/HTTPConnection.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Hash.java +0 -59
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Identity.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/IdentityFacet.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/LatLongCoordinates.java +0 -63
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Location.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MACAddress.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Message.java +0 -85
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MobileDevice.java +0 -52
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Note.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/OperatingSystem.java +0 -57
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Organization.java +0 -30
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PathRelation.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Person.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneAccount.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneCall.java +0 -92
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Relationship.java +0 -74
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SIMCard.java +0 -52
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SMSMessage.java +0 -43
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SimpleAddress.java +0 -31
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Software.java +0 -30
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/StandardAttributeTypes.java +0 -114
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Trace.java +0 -44
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/URL.java +0 -52
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/UcoObject.java +0 -112
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Volume.java +0 -47
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsAccount.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsComputerSpecification.java +0 -63
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsRegistryValue.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WirelessNetworkConnection.java +0 -41
- pytsk3-20260416/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/FacetDeserializerTests.java +0 -192
- pytsk3-20260416/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/TestSuite.java +0 -33
- pytsk3-20260416/sleuthkit/db_diff/tskdbdiff.py +0 -1225
- pytsk3-20260416/sleuthkit/licenses/Apache-LICENSE-2.0.txt +0 -202
- pytsk3-20260416/sleuthkit/licenses/GNUv2-COPYING +0 -343
- pytsk3-20260416/sleuthkit/licenses/GNUv3-COPYING +0 -674
- pytsk3-20260416/sleuthkit/licenses/README.md +0 -274
- pytsk3-20260416/sleuthkit/licenses/bsd.txt +0 -16
- pytsk3-20260416/sleuthkit/licenses/mit.txt +0 -24
- pytsk3-20260416/sleuthkit/ruleset.xml +0 -299
- pytsk3-20260416/sleuthkit/test/tools/autotools/test_loaddb.sh +0 -16
- pytsk3-20260416/sleuthkit/travis_install_libs.sh +0 -18
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/auto.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/auto_db.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/case_db.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/db_sqlite.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/guid.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/is_image_supported.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/sqlite3.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/auto/.deps/tsk_db.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/XGetopt.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/crc.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/md5c.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/mymalloc.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/sha1c.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_endian.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_error.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_error_win32.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_list.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_lock.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_parse.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_printf.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_stack.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_unicode.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/base/.deps/tsk_version.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/apfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/apfs_compat.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/apfs_fs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/apfs_open.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/dcalc_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/dcat_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/decmpfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/dls_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/dstat_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/encryptionHelper.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/exfatfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/exfatfs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/exfatfs_meta.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ext2fs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ext2fs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ext2fs_journal.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatfs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatfs_meta.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatfs_utils.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatxxfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatxxfs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fatxxfs_meta.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ffind_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ffs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ffs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fls_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_attr.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_attrlist.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_block.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_dir.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_file.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_inode.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_io.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_load.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_name.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_open.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_parse.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/fs_types.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/hfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/hfs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/hfs_journal.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/hfs_unicompare.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/icat_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ifind_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ils_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/iso9660.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/iso9660_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/logical_fs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/lzvn.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/nofs_misc.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ntfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/ntfs_dent.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/rawfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/swapfs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/unix_misc.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/usn_journal.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/usnjls_lib.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/walk_cpp.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/fs/.deps/yaffs.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/binsrch_index.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/encase.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/hashkeeper.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/hdb_base.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/idxonly.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/md5sum.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/nsrl.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/sqlite_hdb.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/hashdb/.deps/tsk_hashdb.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/aff.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/ewf.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/img_io.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/img_open.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/img_types.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/img_writer.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/logical_img.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/mult_files.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/raw.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/unsupported_types.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/vhd.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/img/.deps/vmdk.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/apfs_pool.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/apfs_pool_compat.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/img_bfio_handle.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/lvm_pool.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/lvm_pool_compat.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/pool_open.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/pool_read.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/pool/.deps/pool_types.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/.deps/crypto.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/.deps/detect_encryption.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/.deps/file_system_utils.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/BitlockerParser.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/BitlockerUtils.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/DataTypes.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataEntry.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataUtils.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueAesCcmEncryptedKey.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueKey.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueOffsetAndSize.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueStretchKey.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueUnicode.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueVolumeMasterKey.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/bsd.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/dos.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/gpt.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/mac.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/mm_io.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/mm_open.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/mm_part.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/mm_types.Plo +0 -0
- pytsk3-20260416/sleuthkit/tsk/vs/.deps/sun.Plo +0 -0
- pytsk3-20260416/talloc/README +0 -11
- pytsk3-20260416/tests/test_lib.py +0 -57
- {pytsk3-20260416 → pytsk3-20260520}/AUTHORS +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/LICENSE +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/class.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/class.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/compat +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/control +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/copyright +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/python3-pytsk3.docs +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/source/format +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/dpkg/source/options +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/patches/sleuthkit-4.15.0-configure.ac +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/pytsk3.egg-info/dependency_links.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/pytsk3.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/API-CHANGES.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/ChangeLog.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/INSTALL.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/NEWS.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/README.md +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/README_win32.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/SECURITY.md +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/bootstrap +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/configure.ac +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/licenses/IBM-LICENSE +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/licenses/cpl1.0.txt +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ac_prog_java.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ac_prog_java_works.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ac_prog_javac.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ac_prog_javac_works.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ax_check_openssl.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ax_cxx_compile_stdcxx.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ax_jni_include_dir.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ax_pkg_check_modules.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/ax_pthread.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/cppunit.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/m4/tsk_opt_dep_check.m4 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/auto.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/auto_db.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/case_db.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/db_sqlite.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/guid.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/guid.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/is_image_supported.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/sqlite3.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/sqlite3.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_auto.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_auto_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_case_db.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_db_sqlite.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/auto/tsk_is_image_supported.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/XGetopt.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/crc.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/crc.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/md5c.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/mymalloc.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/sha1c.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_base.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_base_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_endian.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_error.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_error_win32.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_list.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_lock.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_os.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_parse.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_printf.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_stack.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_unicode.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_unicode.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/base/tsk_version.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/Doxyfile +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/auto.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/base.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/basics.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/cpp.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/footer.html +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/fs.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/hashdb.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/img.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/main.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/pool.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/docs/vs.dox +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_compat.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_compat.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_fs.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/apfs_open.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/dcalc_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/dcat_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/decmpfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/decmpfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/dls_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/dstat_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/encryptionHelper.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/encryptionHelper.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/exfatfs_meta.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ext2fs_journal.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_dent.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_meta.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatfs_utils.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fatxxfs_meta.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ffind_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ffs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ffs_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fls_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_attr.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_attrlist.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_block.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_dir.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_file.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_inode.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_io.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_load.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_name.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_open.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_parse.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/fs_types.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_journal.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/hfs_unicompare.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/icat_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ifind_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ils_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/iso9660.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/iso9660_dent.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/logical_fs.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/lzvn.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/lzvn.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/nofs_misc.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ntfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/ntfs_dent.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/rawfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/swapfs.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_apfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_apfs.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_exfatfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ext2fs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fatfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fatxxfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ffs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_fs_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_hfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_iso9660.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_logical_fs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_ntfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/tsk_yaffs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/unix_misc.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/usn_journal.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/usnjls_lib.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/walk_cpp.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/fs/yaffs.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/binsrch_index.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/encase.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/hashkeeper.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/hdb_base.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/idxonly.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/md5sum.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/nsrl.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/sqlite_hdb.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hash_info.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/hashdb/tsk_hashdb_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/aff.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/aff.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/ewf.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/ewf.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/img_io.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/img_open.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/img_types.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/img_writer.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/img_writer.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/logical_img.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/logical_img.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/mult_files.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/pool.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/raw.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/raw.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/tsk_img.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/tsk_img_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/unsupported_types.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/unsupported_types.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/vhd.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/vhd.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/vmdk.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/img/vmdk.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/libtsk.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool_compat.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/apfs_pool_compat.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/img_bfio_handle.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/img_bfio_handle.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool_compat.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/lvm_pool_compat.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_compat.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_open.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_read.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/pool_types.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_apfs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_apfs.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_lvm.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_pool.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/pool/tsk_pool.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/default.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/freebsd.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/images.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/linux.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/openbsd.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/solaris.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/sorter/windows.sort +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/stamp-h1 +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/tsk.pc.in +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/tsk_config.h.in +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/tsk_incs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/tsk_tools_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerParser.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerParser.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/DataTypes.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/DataTypes.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataEntry.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataEntry.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataUtils.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataUtils.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValue.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/crypto.cpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/crypto.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/detect_encryption.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/detect_encryption.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/file_system_utils.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/file_system_utils.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/lw_shared_ptr.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/util/span.hpp +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/.indent.pro +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/Makefile.am +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/bsd.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/dos.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/gpt.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/mac.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_io.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_open.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_part.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/mm_types.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/sun.c +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_bsd.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_dos.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_gpt.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_mac.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_sun.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_vs.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/sleuthkit/tsk/vs/tsk_vs_i.h +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/test_data/bogus.raw +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/test_data/image.raw +0 -0
- {pytsk3-20260416 → pytsk3-20260520}/test_data/tsk_volume_system.raw +0 -0
|
@@ -1,29 +1,38 @@
|
|
|
1
|
-
include AUTHORS
|
|
2
|
-
include *.c
|
|
1
|
+
include AUTHORS
|
|
3
2
|
include *.h
|
|
4
3
|
include *.py
|
|
5
|
-
|
|
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/
|
|
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 *
|
pytsk3-20260520/PKG-INFO
ADDED
|
@@ -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.
|
|
7
|
+
4.15.0: https://www.sleuthkit.org/sleuthkit/docs/api-docs/4.15.0-develop/
|
|
8
8
|
|
|
9
|
-
NOTE: Currently the 4.
|
|
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
|
|
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
|
|
23
|
+
python utils/update_source.py --use-head
|
|
23
24
|
|
|
24
|
-
To build the bindings just use the standard Python
|
|
25
|
+
To build the bindings just use the standard Python build module:
|
|
25
26
|
|
|
26
|
-
python
|
|
27
|
-
python
|
|
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()
|