debian/0000755000000000000000000000000012250025771007167 5ustar debian/watch0000644000000000000000000000010112250025624010205 0ustar version=3 http://sf.net/sleuthkit/sleuthkit-(.*)\.tar\.gz debian debian/source/0000755000000000000000000000000012250025624010464 5ustar debian/source/format0000644000000000000000000000001412250025624011672 0ustar 3.0 (quilt) debian/sleuthkit.prerm0000644000000000000000000000057112250025624012252 0ustar #!/bin/sh set -e case "${1}" in remove|upgrade|deconfigure) update-alternatives --remove icat /usr/bin/icat-sleuthkit update-alternatives --remove ils /usr/bin/ils-sleuthkit update-alternatives --remove mactime /usr/bin/mactime-sleuthkit ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`${1}'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/sleuthkit.postinst0000644000000000000000000000145012250025624013005 0ustar #!/bin/sh set -e case "${1}" in configure) update-alternatives --quiet \ --install /usr/bin/icat icat \ /usr/bin/icat-sleuthkit 120 \ --slave /usr/share/man/man1/icat.1.gz icat.1.gz \ /usr/share/man/man1/icat-sleuthkit.1.gz update-alternatives --quiet \ --install /usr/bin/ils ils \ /usr/bin/ils-sleuthkit 120 \ --slave /usr/share/man/man1/ils.1.gz ils.1.gz \ /usr/share/man/man1/ils-sleuthkit.1.gz update-alternatives --quiet \ --install /usr/bin/mactime mactime \ /usr/bin/mactime-sleuthkit 120 \ --slave /usr/share/man/man1/mactime.1.gz mactime.1.gz \ /usr/share/man/man1/mactime-sleuthkit.1.gz ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`${1}'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/sleuthkit.manpages0000644000000000000000000000002212250025624012707 0ustar debian/manpages/* debian/sleuthkit.install0000644000000000000000000000002412250025624012564 0ustar /usr/bin /usr/share debian/sleuthkit.docs0000644000000000000000000000002412250025624012046 0ustar NEWS.txt README.txt debian/rules0000755000000000000000000000077012250025624010250 0ustar #!/usr/bin/make -f DPKG_EXPORT_BUILDFLAGS = 1 -include /usr/share/dpkg/buildflags.mk SHELL := sh -e LDFLAGS+=-lsqlite3 -lsupc++ -Wl,--as-needed %: dh $@ --with autoreconf override_dh_auto_install: dh_auto_install for FILE in icat ils mactime; \ do \ mv debian/tmp/usr/bin/$$FILE debian/tmp/usr/bin/$$FILE-sleuthkit; \ mv debian/tmp/usr/share/man/man1/$$FILE.1 debian/tmp/usr/share/man/man1/$$FILE-sleuthkit.1; \ done override_dh_strip: dh_strip -a -plibtsk3-3 --dbg-package=libtsk3-3-dbg debian/patches/0000755000000000000000000000000012250025624010613 5ustar debian/patches/series0000644000000000000000000000024512250025624012031 0ustar 10_link-to-sqlite.diff 30_fix-manpages.diff 40_fix-typo.diff 90_fix_ldflags.diff 95_fix-libewf2-detection.patch 96_fix_build_libewf2.patch 99_no_static_ldflags.diff debian/patches/99_no_static_ldflags.diff0000644000000000000000000000324612250025624015452 0ustar Author: Cristian Greco Description: Drop `-static` from LDFLAGS from tools/*/Makefile.am in order to avoid sleuthkit tools to be statically linked against libtsk. --- a/tools/fstools/Makefile.am +++ b/tools/fstools/Makefile.am @@ -1,6 +1,5 @@ AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall LDADD = ../../tsk3/libtsk3.la -LDFLAGS += -static EXTRA_DIST = .indent.pro fscheck.cpp bin_PROGRAMS = blkcalc blkcat blkls blkstat ffind fls fsstat icat ifind ils \ --- a/tools/hashtools/Makefile.am +++ b/tools/hashtools/Makefile.am @@ -1,6 +1,5 @@ AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall LDADD = ../../tsk3/libtsk3.la -LDFLAGS += -static EXTRA_DIST = .indent.pro md5.c sha1.c bin_PROGRAMS = hfind --- a/tools/imgtools/Makefile.am +++ b/tools/imgtools/Makefile.am @@ -1,6 +1,5 @@ AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall LDADD = ../../tsk3/libtsk3.la -LDFLAGS += -static EXTRA_DIST = .indent.pro bin_PROGRAMS = img_cat img_stat --- a/tools/srchtools/Makefile.am +++ b/tools/srchtools/Makefile.am @@ -6,7 +6,6 @@ sigfind_SOURCES = sigfind.cpp sigfind_LDADD = ../../tsk3/libtsk3.la -sigfind_LDFLAGS = -static indent: indent *.c *.cpp --- a/tools/vstools/Makefile.am +++ b/tools/vstools/Makefile.am @@ -1,6 +1,5 @@ AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall LDADD = ../../tsk3/libtsk3.la -LDFLAGS += -static EXTRA_DIST = .indent.pro bin_PROGRAMS = mmls mmstat mmcat --- a/tools/autotools/Makefile.am +++ b/tools/autotools/Makefile.am @@ -1,6 +1,5 @@ AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall LDADD = ../../tsk3/libtsk3.la -LDFLAGS += -static EXTRA_DIST = .indent.pro bin_PROGRAMS = tsk_recover tsk_loaddb tsk_comparedir tsk_gettimes debian/patches/96_fix_build_libewf2.patch0000644000000000000000000005004112250025624015531 0ustar Description: Fix build with libewf2 Author: Omar Choudary Origin: upstream, https://github.com/sleuthkit/sleuthkit/commit/7dcf7863b449f6058952489b0367cf0c1fbd0964 Bug: http://sourceforge.net/p/sleuthkit/feature-requests/73/ Last-Update: <2013-08-30> Index: sleuthkit-3.2.3/tsk3/img/ewf.c =================================================================== --- sleuthkit-3.2.3.orig/tsk3/img/ewf.c 2013-08-31 10:13:21.397922919 +0000 +++ sleuthkit-3.2.3/tsk3/img/ewf.c 2013-08-31 11:05:10.793936030 +0000 @@ -14,67 +14,160 @@ #include "tsk_img_i.h" #if HAVE_LIBEWF + #include "ewf.h" -static ssize_t -ewf_image_read(TSK_IMG_INFO * img_info, TSK_OFF_T offset, char *buf, - size_t len) +#define TSK_EWF_ERROR_STRING_SIZE 512 + +static \ +ssize_t ewf_image_read( + TSK_IMG_INFO *img_info, + TSK_OFF_T offset, + char *buffer, + size_t size ) { - ssize_t cnt; - IMG_EWF_INFO *ewf_info = (IMG_EWF_INFO *) img_info; +#if defined( HAVE_LIBEWF_V2_API ) + char error_string[ TSK_EWF_ERROR_STRING_SIZE ]; - if (tsk_verbose) - tsk_fprintf(stderr, - "ewf_read: byte offset: %" PRIuOFF " len: %" PRIuSIZE "\n", - offset, len); - - if (offset > img_info->size) { - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_READ_OFF; - snprintf(tsk_errstr, TSK_ERRSTR_L, - "split_read - %" PRIuOFF, offset); - return -1; - } + libewf_error_t *ewf_error = NULL; +#endif - cnt = libewf_read_random(ewf_info->handle, buf, len, offset); - if (cnt < 0) { - tsk_error_reset(); - // @@@ Add more specific error message - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_READ; - snprintf(tsk_errstr, TSK_ERRSTR_L, - "ewf_read - offset: %" PRIuOFF " - len: %" PRIuSIZE " - %s", - offset, len, strerror(errno)); - return -1; - } + IMG_EWF_INFO *ewf_info = (IMG_EWF_INFO *) img_info; + ssize_t read_count = 0; + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "ewf_read: byte offset: %" PRIuOFF " len: %" PRIuSIZE "\n", + offset, + size ); + } + if( offset > img_info->size ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_READ_OFF; + + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "split_read - %" PRIuOFF, + offset ); + + return( -1 ); + } +#if defined( HAVE_LIBEWF_V2_API ) + read_count = libewf_handle_read_random( + ewf_info->handle, + buffer, + size, + offset, + &ewf_error ); + + if( read_count < 0 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_READ; + + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_read - offset: %" PRIuOFF " - len: %" PRIuSIZE " - %s", + offset, + size, + strerror( errno ) ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_read - offset: %" PRIuOFF " - len: %" PRIuSIZE "\n%s", + offset, + size, + error_string ); + } + libewf_error_free( + &ewf_error ); - return cnt; + return( -1 ); + } +#else + read_count = libewf_read_random( + ewf_info->handle, + buffer, + size, + offset ); + + if( read_count < 0 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_READ; + + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_read - offset: %" PRIuOFF " - len: %" PRIuSIZE " - %s", + offset, + size, + strerror( errno ) ); + + return( -1 ); + } +#endif + return( read_count ); } -static void -ewf_image_imgstat(TSK_IMG_INFO * img_info, FILE * hFile) +static \ +void ewf_image_imgstat( + TSK_IMG_INFO *img_info, + FILE * hFile ) { IMG_EWF_INFO *ewf_info = (IMG_EWF_INFO *) img_info; - tsk_fprintf(hFile, "IMAGE FILE INFORMATION\n"); - tsk_fprintf(hFile, "--------------------------------------------\n"); - tsk_fprintf(hFile, "Image Type:\t\tewf\n"); - tsk_fprintf(hFile, "\nSize of data in bytes:\t%" PRIuOFF "\n", - img_info->size); - - if (ewf_info->md5hash_isset == 1) { - tsk_fprintf(hFile, "MD5 hash of data:\t%s\n", ewf_info->md5hash); - } - return; + tsk_fprintf( + hFile, + "IMAGE FILE INFORMATION\n" + "--------------------------------------------\n" + "Image Type:\t\tewf\n" + "\nSize of data in bytes:\t%" PRIuOFF "\n", + img_info->size ); + + if( ewf_info->md5hash_isset == 1 ) + { + tsk_fprintf( + hFile, + "MD5 hash of data:\t%s\n", + ewf_info->md5hash ); + } + return; } -static void -ewf_image_close(TSK_IMG_INFO * img_info) +static \ +void ewf_image_close( + TSK_IMG_INFO *img_info ) { int i; IMG_EWF_INFO *ewf_info = (IMG_EWF_INFO *) img_info; - libewf_close(ewf_info->handle); +#if defined( HAVE_LIBEWF_V2_API ) + libewf_handle_close( + ewf_info->handle, + NULL ); + libewf_handle_free( + &( ewf_info->handle ), + NULL ); +#else + libewf_close( + ewf_info->handle ); +#endif for (i = 0; i < ewf_info->num_imgs; i++) { free(ewf_info->images[i]); } @@ -82,197 +175,413 @@ free(img_info); } -/* Tests if the image file header against the - * header (magic) signature specified. - * Returns a 0 on no match and a 1 on a match, and -1 on error. - */ -#if 0 -static int -img_file_header_signature_ncmp(const char *filename, - const char *file_header_signature, int size_of_signature) +TSK_IMG_INFO *ewf_open( + int num_img, + const TSK_TCHAR * const images[], + unsigned int a_ssize ) { - int match; - ssize_t read_count = 0; - char header[512]; - int fd; +#if defined( HAVE_LIBEWF_V2_API ) + char error_string[ TSK_EWF_ERROR_STRING_SIZE ]; - if ((filename == NULL) || (file_header_signature == NULL)) { - return (0); - } - if (size_of_signature <= 0) { - return (0); - } + libewf_error_t *ewf_error = NULL; + int result = 0; - if ((fd = open(filename, O_RDONLY | O_BINARY)) < 0) { - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_OPEN; - snprintf(tsk_errstr, TSK_ERRSTR_L, "ewf magic testing: %s", - filename); - return -1; - } - read_count = read(fd, header, 512); +#elif !defined( LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5 ) + uint8_t md5_hash[ 16 ]; +#endif - if (read_count != 512) { - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_READ; - snprintf(tsk_errstr, TSK_ERRSTR_L, "ewf magic testing: %s", - filename); - return -1; - } - close(fd); + IMG_EWF_INFO *ewf_info = NULL; + TSK_IMG_INFO *img_info = NULL; - match = strncmp(file_header_signature, header, size_of_signature) == 0; + ewf_info = (IMG_EWF_INFO *) tsk_malloc( + sizeof( IMG_EWF_INFO ) ); - return (match); -} + if( ewf_info == NULL ) + { + return NULL; + } + img_info = (TSK_IMG_INFO *) ewf_info; + + /* Check the file signature before we call the library open + */ +#if defined( HAVE_LIBEWF_V2_API ) +#if defined( TSK_WIN32 ) + if( libewf_check_file_signature_wide( + images[ 0 ], + &ewf_error ) != 1 ) +#else + if( libewf_check_file_signature( + images[ 0 ], + &ewf_error ) != 1 ) #endif + { + tsk_error_reset(); + tsk_errno = TSK_ERR_IMG_MAGIC; -TSK_IMG_INFO * -ewf_open(int a_num_img, const TSK_TCHAR * const a_images[], - unsigned int a_ssize) -{ - IMG_EWF_INFO *ewf_info; - TSK_IMG_INFO *img_info; -#if !defined( LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5 ) - uint8_t md5_hash[16]; + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open: Not an EWF file" ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open: Not an EWF file\n%s", + error_string ); + } + libewf_error_free( + &ewf_error ); + + free( + ewf_info ); + + if(tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Not an EWF file\n" ); + } + return( NULL ); + } + if( libewf_handle_initialize( + &( ewf_info->handle ), + &ewf_error ) != 1 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_OPEN; + + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error opening", + images[ 0 ] ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error opening\n%s", + images[ 0 ], + error_string ); + } + free( + ewf_info); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Unable to create EWF handle\n" ); + } + return( NULL ); + } +#if defined( TSK_WIN32 ) + if( libewf_handle_open_wide( + ewf_info->handle, + (wchar_t * const *) images, + num_img, + LIBEWF_OPEN_READ, + &ewf_error ) != 1 ) +#else + if( libewf_handle_open( + ewf_info->handle, + (char * const *) images, + num_img, + LIBEWF_OPEN_READ, + &ewf_error ) != 1 ) #endif + { + tsk_error_reset(); - if ((ewf_info = - (IMG_EWF_INFO *) tsk_malloc(sizeof(IMG_EWF_INFO))) == NULL) { - return NULL; - } - - img_info = (TSK_IMG_INFO *) ewf_info; + tsk_errno = TSK_ERR_IMG_OPEN; - - // See if they specified only the first of the set... - if (a_num_img == 1) { - if ((ewf_info->images = - tsk_img_findFiles(a_images[0], - &ewf_info->num_imgs)) == NULL) { - free(ewf_info); - return NULL; - } - } - else { - int i; - ewf_info->num_imgs = a_num_img; - if ((ewf_info->images = - (TSK_TCHAR **) tsk_malloc(a_num_img * - sizeof(TSK_TCHAR *))) == NULL) { - free(ewf_info); - return NULL; - } - for (i = 0; i < a_num_img; i++) { - if ((ewf_info->images[i] = - (TSK_TCHAR *) tsk_malloc((TSTRLEN(a_images[i]) + - 1) * sizeof(TSK_TCHAR))) == NULL) { - free(ewf_info); - return NULL; - } - TSTRNCPY(ewf_info->images[i], a_images[i], - TSTRLEN(a_images[i]) + 1); - } - } - - - - /* check the magic before we call the library open */ - //if (img_file_header_signature_ncmp(images[0], - // "\x45\x56\x46\x09\x0d\x0a\xff\x00", 8) != 1) { -#if defined (TSK_WIN32) - if (libewf_check_file_signature_wide(ewf_info->images[0]) == 0) { + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error opening", + images[ 0 ] ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error opening\n%s", + images[ 0 ], + error_string ); + } + libewf_error_free( + &ewf_error ); + + free( + ewf_info ); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Error opening EWF file\n" ); + } + return( NULL ); + } + if( libewf_handle_get_media_size( + ewf_info->handle, + (size64_t *) &( img_info->size ), + &ewf_error ) != 1 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_OPEN; + + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error getting size of image", + images[ 0 ] ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error getting size of image\n%s", + images[ 0 ], + error_string ); + } + libewf_error_free( + &ewf_error ); + + free( + ewf_info ); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Error getting size of EWF file\n" ); + } + return( NULL ); + } + result = libewf_handle_get_utf8_hash_value_md5( + ewf_info->handle, + (uint8_t *) ewf_info->md5hash, + 33, + &ewf_error ); + + if( result == -1 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_OPEN; + + if( libewf_error_backtrace_sprint( + ewf_error, + error_string, + TSK_EWF_ERROR_STRING_SIZE ) == -1 ) + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error getting MD5 of image", + images[ 0 ] ); + } + else + { + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error getting MD5 of image\n%s", + images[ 0 ], + error_string ); + } + libewf_error_free( + &ewf_error ); + + free( + ewf_info ); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Error getting size of EWF file\n" ); + } + return( NULL ); + } + ewf_info->md5hash_isset = result; #else - if (libewf_check_file_signature(ewf_info->images[0]) == 0) { +#if defined( TSK_WIN32 ) + if( libewf_check_file_signature_wide( + images[ 0 ] ) != 1 ) +#else + if( libewf_check_file_signature( + images[ 0 ] ) != 1 ) #endif - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_MAGIC; - snprintf(tsk_errstr, TSK_ERRSTR_L, "ewf_open: Not an EWF file"); - free(ewf_info); - if (tsk_verbose) - tsk_fprintf(stderr, "Not an EWF file\n"); - - return NULL; - } - -#if defined (TSK_WIN32) - ewf_info->handle = - libewf_open_wide((wchar_t * const *) ewf_info->images, - ewf_info->num_imgs, LIBEWF_OPEN_READ); + { + tsk_error_reset(); + tsk_errno = TSK_ERR_IMG_MAGIC; + + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open: Not an EWF file" ); + + free( + ewf_info ); + + if(tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Not an EWF file\n" ); + } + return( NULL ); + } +#if defined( TSK_WIN32 ) + ewf_info->handle = libewf_open_wide( + (wchar_t * const *) images, + num_img, + LIBEWF_OPEN_READ ); #else - ewf_info->handle = - libewf_open((char *const *) ewf_info->images, ewf_info->num_imgs, - LIBEWF_OPEN_READ); + ewf_info->handle = libewf_open( + (char * const *) images, + num_img, + LIBEWF_OPEN_READ ); #endif - if (ewf_info->handle == NULL) { - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_OPEN; - snprintf(tsk_errstr, TSK_ERRSTR_L, - "ewf_open file: %" PRIttocTSK ": Error opening", - ewf_info->images[0]); - free(ewf_info); - if (tsk_verbose) { - tsk_fprintf(stderr, "Error opening EWF file\n"); - } - return NULL; - } + if( ewf_info->handle == NULL ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_OPEN; + + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error opening", + images[ 0 ] ); + + free( + ewf_info ); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Error opening EWF file\n" ); + } + return( NULL ); + } - // 2007 version #if defined( LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5 ) - img_info->size = libewf_get_media_size(ewf_info->handle); - ewf_info->md5hash_isset = libewf_get_stored_md5_hash(ewf_info->handle, - ewf_info->md5hash, LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5); -// libewf-20080322 version + // 2007 version + img_info->size = libewf_get_media_size( + ewf_info->handle ); + + ewf_info->md5hash_isset = libewf_get_stored_md5_hash( + ewf_info->handle, + ewf_info->md5hash, + LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5 ); #else - if (libewf_get_media_size(ewf_info->handle, - (size64_t *) & (img_info->size)) - != 1) { - tsk_error_reset(); - tsk_errno = TSK_ERR_IMG_OPEN; - snprintf(tsk_errstr, TSK_ERRSTR_L, - "ewf_open file: %" PRIttocTSK ": Error getting size of image", - ewf_info->images[0]); - free(ewf_info); - if (tsk_verbose) { - tsk_fprintf(stderr, "Error getting size of EWF file\n"); - } - return NULL; - } - - if (libewf_get_md5_hash(ewf_info->handle, md5_hash, 16) == 1) { - int md5_string_iterator = 0; - int md5_hash_iterator; - for (md5_hash_iterator = 0; md5_hash_iterator < 16; - md5_hash_iterator++) { - int digit = md5_hash[md5_hash_iterator] / 16; - if (digit <= 9) - ewf_info->md5hash[md5_string_iterator++] = (char) - ('0' + digit); - else - ewf_info->md5hash[md5_string_iterator++] = (char) ('a' + - (digit - 10)); - digit = md5_hash[md5_hash_iterator] % 16; - if (digit <= 9) - ewf_info->md5hash[md5_string_iterator++] = - (char) ('0' + digit); - else - ewf_info->md5hash[md5_string_iterator++] = (char) ('a' + - (digit - 10)); - } - ewf_info->md5hash_isset = 1; - } -#endif - img_info->sector_size = 512; - if (a_ssize) - img_info->sector_size = a_ssize; - - - img_info->itype = TSK_IMG_TYPE_EWF_EWF; - img_info->read = ewf_image_read; - img_info->close = ewf_image_close; - img_info->imgstat = ewf_image_imgstat; - + // libewf-20080322 version + if( libewf_get_media_size( + ewf_info->handle, + (size64_t *) &( img_info->size ) ) != 1 ) + { + tsk_error_reset(); + + tsk_errno = TSK_ERR_IMG_OPEN; + + snprintf( + tsk_errstr, + TSK_ERRSTR_L, + "ewf_open file: %" PRIttocTSK ": Error getting size of image", + images[ 0 ] ); + + free( + ewf_info ); + + if( tsk_verbose != 0 ) + { + tsk_fprintf( + stderr, + "Error getting size of EWF file\n" ); + } + return( NULL ); + } + if( libewf_get_md5_hash( + ewf_info->handle, + md5_hash, + 16 ) == 1 ) + { + int md5_string_iterator = 0; + int md5_hash_iterator = 0; + + for( md5_hash_iterator = 0; + md5_hash_iterator < 16; + md5_hash_iterator++ ) + { + int digit = md5_hash[ md5_hash_iterator ] / 16; + + if( digit <= 9 ) + { + ewf_info->md5hash[ md5_string_iterator++ ] = '0' + (char) digit; + } + else + { + ewf_info->md5hash[ md5_string_iterator++ ] = 'a' + (char) ( digit - 10 ); + } + digit = md5_hash[md5_hash_iterator] % 16; + + if( digit <= 9 ) + { + ewf_info->md5hash[ md5_string_iterator++ ] = '0' + (char) digit; + } + else + { + ewf_info->md5hash[ md5_string_iterator++ ] = 'a' + (char) ( digit - 10 ); + } + } + ewf_info->md5hash_isset = 1; + } +#endif /* defined( LIBEWF_STRING_DIGEST_HASH_LENGTH_MD5 ) */ +#endif /* defined( HAVE_LIBEWF_V2_API ) */ + if( a_ssize != 0 ) + { + img_info->sector_size = a_ssize; + } + else + { + img_info->sector_size = 512; + } + img_info->itype = TSK_IMG_TYPE_EWF_EWF; + img_info->read = &ewf_image_read; + img_info->close = &ewf_image_close; + img_info->imgstat = &ewf_image_imgstat; return img_info; } #endif Index: sleuthkit-3.2.3/tsk3/img/ewf.h =================================================================== --- sleuthkit-3.2.3.orig/tsk3/img/ewf.h 2013-08-31 10:13:21.425922919 +0000 +++ sleuthkit-3.2.3/tsk3/img/ewf.h 2013-08-31 11:00:28.329934838 +0000 @@ -13,8 +13,8 @@ * Header files for EWF-specific data structures and functions. */ -#ifndef _EWF_H -#define _EWF_H +#if !defined( _TSK_IMG_EWF_H ) +#define _TSK_IMG_EWF_H #if HAVE_LIBEWF @@ -25,6 +25,14 @@ #include +#if !defined( LIBEWF_HANDLE ) + +/* libewf version 2 no longer defines LIBEWF_HANDLE + */ +#define HAVE_LIBEWF_V2_API +#endif + + #ifdef __cplusplus extern "C" { #endif @@ -34,7 +42,7 @@ typedef struct { TSK_IMG_INFO img_info; - LIBEWF_HANDLE *handle; + libewf_handle_t *handle; char md5hash[33]; int md5hash_isset; TSK_TCHAR **images; debian/patches/95_fix-libewf2-detection.patch0000644000000000000000000000133012250025624016240 0ustar Description: Fix detection of libewf v2 API. Author: Joachim Metz Origin: upstream, https://github.com/sleuthkit/sleuthkit/commit/ee5515215c1f618bf966d175ace1270fea7c5d4b Bug: http://sourceforge.net/p/sleuthkit/bugs/208/ Last-Update: <2013-08-29> --- sleuthkit-3.2.3.orig/configure.ac +++ sleuthkit-3.2.3/configure.ac @@ -121,7 +121,7 @@ AS_IF([test "x$with_libewf" != "xno"], )] # Check for the header file first to make sure they have the dev install [AC_CHECK_HEADERS([libewf.h], - [AC_CHECK_LIB([ewf], [libewf_open],[ + [AC_CHECK_LIB([ewf], [libewf_get_version],[ AC_SUBST([LIBEWF_LIBS],["-lewf"]) AC_DEFINE([HAVE_LIBEWF],[1],[Define to have libewf header included.]) ])] debian/patches/90_fix_ldflags.diff0000644000000000000000000000164512250025624014245 0ustar Author: Cristian Greco Description: Avoid linking against unused libraries (this holds both for library and tools) by enabling extra LDFLAGS at build time. --- a/configure.ac +++ b/configure.ac @@ -121,7 +121,10 @@ )] # Check for the header file first to make sure they have the dev install [AC_CHECK_HEADERS([libewf.h], - [AC_CHECK_LIB([ewf], [libewf_open])] + [AC_CHECK_LIB([ewf], [libewf_open],[ + AC_SUBST([LIBEWF_LIBS],["-lewf"]) + AC_DEFINE([HAVE_LIBEWF],[1],[Define to have libewf header included.]) + ])] )] ) --- a/tsk3/Makefile.am +++ b/tsk3/Makefile.am @@ -6,7 +6,7 @@ libtsk3_la_SOURCES = libtsk3_la_LIBADD = base/libtskbase.la img/libtskimg.la \ vs/libtskvs.la fs/libtskfs.la hashdb/libtskhashdb.la \ - auto/libtskauto.la + auto/libtskauto.la @LIBEWF_LIBS@ # current:revision:age libtsk3_la_LDFLAGS = -version-info 7:0:4 debian/patches/40_fix-typo.diff0000644000000000000000000000107412250025624013531 0ustar Description: fix typo in /usr/lib/libtsk3.so.3.4.0 Author: Julien Valroff Last-Updated: 2011-10-13 --- a/tsk3/img/mult_files.c +++ b/tsk3/img/mult_files.c @@ -40,7 +40,7 @@ if (TSTRLEN(a_baseExt) > 2) { tsk_error_reset(); tsk_errno = TSK_ERR_IMG_ARG; - snprintf(tsk_errstr, TSK_ERRSTR_L, "findFiles2: extention is too short: %"PRIttocTSK, a_baseExt); + snprintf(tsk_errstr, TSK_ERRSTR_L, "findFiles2: extension is too short: %"PRIttocTSK, a_baseExt); return 1; } TSTRNCPY(curExt, a_baseExt, 3); debian/patches/30_fix-manpages.diff0000644000000000000000000001320212250025624014324 0ustar Description: Fixes formatting errors in manpages Author: Julien Valroff Last-Update: 2011-06-01 --- a/man/tsk_comparedir.1 +++ b/man/tsk_comparedir.1 @@ -30,7 +30,7 @@ .IP -V Print version .IP "-i imgtype" -The format of the image file (use '-i list' for supported types) +The format of the image file (use '\-i list' for supported types) If not given, autodetection methods are used. .IP "-b dev_sector_size" The size (in bytes) of the device sectors --- a/man/tsk_gettimes.1 +++ b/man/tsk_gettimes.1 @@ -14,7 +14,7 @@ .I image .SH DESCRIPTION .B tsk_gettimes -examines each of the file systems in a disk image and returns the data about them in the MACtime body format (the same as running 'fls -m' on each file system). The output of this can be used as input to mactime to make a timeline of file activity. The data is printed to STDOUT, which can then be redirected to a file. +examines each of the file systems in a disk image and returns the data about them in the MACtime body format (the same as running 'fls \-m' on each file system). The output of this can be used as input to mactime to make a timeline of file activity. The data is printed to STDOUT, which can then be redirected to a file. The arguments are as follows: .IP -v @@ -22,7 +22,7 @@ .IP -V Print version .IP "-i imgtype" -The format of the image file (use '-i list' for supported types) +The format of the image file (use '\-i list' for supported types) If not given, autodetection methods are used. .IP "-b dev_sector_size" The size (in bytes) of the device sectors --- a/man/tsk_loaddb.1 +++ b/man/tsk_loaddb.1 @@ -32,10 +32,10 @@ Don't create block data table. This table maps each block to the file that allocated it. This option will make this program run faster. .IP "-i imgtype" -The format of the image file (use '-i list' for supported types) +The format of the image file (use '\-i list' for supported types) .IP "-b dev_sector_size" The size (in bytes) of the device sectors -If -i or -b are not given, autodetection methods are used. +If \-i or \-b are not given, autodetection methods are used. .SH EXAMPLES To load image data from image.dd to image.dd.db: --- a/man/tsk_recover.1 +++ b/man/tsk_recover.1 @@ -30,7 +30,7 @@ .IP -e Recover all files (allocated and unallocated) .IP "-i imgtype" -The format of the image file (use '-i list' for supported types) +The format of the image file (use '\-i list' for supported types) If not given, autodetection methods are used. .IP "-b dev_sector_size" The size (in bytes) of the device sectors @@ -40,7 +40,7 @@ If not given, will attempt to recover all volumes in image and save them to different folders. .IP "-d dir_inum" -Directory inum to recover from (must also specify a specific partition using -o or there must not be a volume system) +Directory inum to recover from (must also specify a specific partition using \-o or there must not be a volume system) .SH EXAMPLES To recover only unallocated files from image.dd to the recovered directory: --- a/man/hfind.1 +++ b/man/hfind.1 @@ -72,64 +72,64 @@ sorted by. The 'md5sum' value can also be used to sort and index "home made" databases. 'hfind' can take data in both common formats: - MD5 (test.txt) = 76b1f4de1522c20b67acc132937cf82e + MD5 (test.txt) = 76b1f4de1522c20b67acc132937cf82e and - 76b1f4de1522c20b67acc132937cf82e test.txt + 76b1f4de1522c20b67acc132937cf82e test.txt .SH EXAMPLES To create an MD5 index file for NIST NSRL: - # hfind \-i nsrl-md5 /usr/local/hash/nsrl/NSRLFile.txt + # hfind \-i nsrl-md5 /usr/local/hash/nsrl/NSRLFile.txt To lookup a value in the NSRL: - # hfind /usr/local/hash/nsrl/NSRLFile.txt 76b1f4de1522c20b67acc132937cf82e + # hfind /usr/local/hash/nsrl/NSRLFile.txt 76b1f4de1522c20b67acc132937cf82e - 76b1f4de1522c20b67acc132937cf82e Hash Not Found + 76b1f4de1522c20b67acc132937cf82e Hash Not Found You can even do both SHA-1 and MD5 if you want: - # hfind \-i nsrl-sha1 /usr/local/hash/nsrl/NSRLFile.txt + # hfind \-i nsrl-sha1 /usr/local/hash/nsrl/NSRLFile.txt - # hfind /usr/local/hash/nsrl/NSRLFile.txt - 76b1f4de1522c20b67acc132937cf82e - 80001A80B3F1B80076B297CEE8805AAA04E1B5BA + # hfind /usr/local/hash/nsrl/NSRLFile.txt + 76b1f4de1522c20b67acc132937cf82e + 80001A80B3F1B80076B297CEE8805AAA04E1B5BA - 76b1f4de1522c20b67acc132937cf82e Hash Not Found + 76b1f4de1522c20b67acc132937cf82e Hash Not Found - 80001A80B3F1B80076B297CEE8805AAA04E1B5BA thrdcore.cpp + 80001A80B3F1B80076B297CEE8805AAA04E1B5BA thrdcore.cpp To make a database of critical binaries of a trusted system, use 'md5sum': - # md5sum /bin/* /sbin/* /usr/bin/* /usr/bin/* /usr/local/bin/* /usr/local/sbin/* > system.md5 + # md5sum /bin/* /sbin/* /usr/bin/* /usr/bin/* /usr/local/bin/* /usr/local/sbin/* > system.md5 - # hfind \-i md5sum system.md5 + # hfind \-i md5sum system.md5 To look entries up, the following will work: - # hfind system.md5 76b1f4de1522c20b67acc132937cf82e + # hfind system.md5 76b1f4de1522c20b67acc132937cf82e - 76b1f4de1522c20b67acc132937cf82e Hash Not Found + 76b1f4de1522c20b67acc132937cf82e Hash Not Found or - # md5sum \-q /bin/* | hfind system.md5 + # md5sum \-q /bin/* | hfind system.md5 - 928682269cd3edb1acdf9a7f7e606ff2 /bin/bash + 928682269cd3edb1acdf9a7f7e606ff2 /bin/bash - <...> + <...> or - # md5sum \-q /bin/* > bin.md5 + # md5sum \-q /bin/* > bin.md5 - # hfind \-f bin.md5 system.md5 + # hfind \-f bin.md5 system.md5 - 928682269cd3edb1acdf9a7f7e606ff2 /bin/bash + 928682269cd3edb1acdf9a7f7e606ff2 /bin/bash - <...> + <...> .SH "SEE ALSO" debian/patches/10_link-to-sqlite.diff0000644000000000000000000000304712250025624014625 0ustar Description: link against libsqlite3 rather than statically linking against the embedded library Author: Julien Valroff Last-Updated: 2011-06-02 Forwarded: not-needed --- a/tsk3/auto/Makefile.am +++ b/tsk3/auto/Makefile.am @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = libtskauto.la # Note that the .h files are in the top-level Makefile -libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h +libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp indent: indent *.cpp *.h --- a/tsk3/auto/Makefile.in +++ b/tsk3/auto/Makefile.in @@ -43,7 +43,7 @@ CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libtskauto_la_LIBADD = -am_libtskauto_la_OBJECTS = auto.lo auto_db.lo sqlite3.lo +am_libtskauto_la_OBJECTS = auto.lo auto_db.lo libtskauto_la_OBJECTS = $(am_libtskauto_la_OBJECTS) DEFAULT_INCLUDES = -I. -I$(top_builddir)/tsk3@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/config/depcomp @@ -191,7 +191,7 @@ EXTRA_DIST = .indent.pro noinst_LTLIBRARIES = libtskauto.la # Note that the .h files are in the top-level Makefile -libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h +libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp all: all-am .SUFFIXES: @@ -245,7 +245,6 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auto.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auto_db.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqlite3.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< debian/manpages/0000755000000000000000000000000012250025624010757 5ustar debian/manpages/srch_strings.10000644000000000000000000000173312250025624013555 0ustar .TH SRCH_STRINGS 1 "Mar 2005" "The Debian Project" .SH NAME srch_strings \- Display printable strings in files .SH SYNOPSIS .B srch_strings .RI [ option(s) ]\ [ file(s) ] .SH OPTIONS .TP .BR \-a Scan the entire file, not just the data section. .TP .BR \-f Print the name of the file before each string. .TP .BI \-n\ number ,\ \- number Locate and print any NUL-terminated sequence of at least .I number characters (default 4). .TP .BR \-t\ { o , x , d } Print the location of the string in base 8, 10 or 16. .TP .BR \-o An alias for .BR \-\-radix=o . .TP .BR \-e\ { s , S , b , l , B , L } Select character size and endianness: .BR s\ =\ 7-bit, .BR S\ =\ 8-bit, .RB { b,l }\ =\ 16-bit, .RB { B,L }\ =\ 32-bit. .TP .BR \-h Display command line help. .TP .BR \-v Print the program's version number. .SH SEE ALSO .BR strings (1) .SH AUTHOR The SleuthKit is copyright (c) Brian Carrier. This manual page was written by Martin A. Godisch for Debian GNU/Linux, but may be used by others. debian/libtsk3-3.symbols.sparc0000644000000000000000000004072412250025624013427 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 #MISSING: 3.2.3# _ZN9__gnu_cxx13__scoped_lockD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.3 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.3 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.s3900000644000000000000000000004063012250025624013011 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.01 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.powerpc0000644000000000000000000004062712250025624014000 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.mipsel0000644000000000000000000000004012250025624013573 0ustar #include libtsk3-3.symbols.mips debian/libtsk3-3.symbols.mips0000644000000000000000000004110212250025624013256 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZN9__gnu_cxx30__throw_concurrence_lock_errorEv@Base 3.2.3-2.1~ _ZN9__gnu_cxx32__throw_concurrence_unlock_errorEv@Base 3.2.3-2.1~ _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_deleted_virtual@Base 3.2.3-2.1~ __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.kfreebsd-i3860000644000000000000000000000004012250025624014556 0ustar #include libtsk3-3.symbols.i386 debian/libtsk3-3.symbols.kfreebsd-amd640000644000000000000000000000004112250025624015001 0ustar #include libtsk3-3.symbols.amd64 debian/libtsk3-3.symbols.ia640000644000000000000000000004072312250025624013061 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEl16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEl16TSK_FS_TYPE_ENUMm@Base 3.2.1 _ZN7TskAuto13findFilesInFsEl@Base 3.2.1 _ZN7TskAuto13findFilesInFsElm@Base 3.2.1 _ZN7TskAuto13findFilesInVsEl16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEl@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOm@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEl16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 #MISSING: 3.2.3#_ZN9__gnu_cxx13__scoped_lockD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.3 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.3 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.i3860000644000000000000000000004110212250025624012777 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZN9__gnu_cxx30__throw_concurrence_lock_errorEv@Base 3.2.3-2.1~ _ZN9__gnu_cxx32__throw_concurrence_unlock_errorEv@Base 3.2.3-2.1~ _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_deleted_virtual@Base 3.2.3-2.1~ __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.armel0000644000000000000000000006122612250025624013417 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv117__pbase_type_infoD0Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv117__pbase_type_infoD1Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv117__pbase_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv119__pointer_type_infoD0Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv119__pointer_type_infoD1Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv119__pointer_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv123__fundamental_type_infoD0Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv123__fundamental_type_infoD1Ev@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZN10__cxxabiv123__fundamental_type_infoD2Ev@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx16TSK_FS_TYPE_ENUMy@Base 3.2.1 _ZN7TskAuto13findFilesInFsEx@Base 3.2.1 _ZN7TskAuto13findFilesInFsExy@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEx@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOy@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEx16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZN9__gnu_cxx30__throw_concurrence_lock_errorEv@Base 3.2.3-2.1~ _ZN9__gnu_cxx32__throw_concurrence_unlock_errorEv@Base 3.2.3-2.1~ _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNK10__cxxabiv117__pbase_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNK10__cxxabiv119__pointer_type_info14__is_pointer_pEv@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNK10__cxxabiv119__pointer_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNKSt10bad_typeid4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNKSt8bad_cast4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNKSt9type_infoeqERKS_@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt10bad_typeidD0Ev@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt10bad_typeidD1Ev@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt10bad_typeidD2Ev@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt8bad_castD0Ev@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt8bad_castD1Ev@Base 3.2.1 #MISSING: 3.2.3-2.1# _ZNSt8bad_castD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIDs@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIN10__cxxabiv117__pbase_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIN10__cxxabiv119__pointer_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIN10__cxxabiv123__fundamental_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPDs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKDs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPKy@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIPy@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTISt10bad_typeid@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTISt8bad_cast@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTId@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTIy@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSDs@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSN10__cxxabiv117__pbase_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSN10__cxxabiv119__pointer_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSN10__cxxabiv123__fundamental_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPDs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDn@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKDs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPKy@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSPy@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSSt10bad_typeid@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSSt8bad_cast@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSa@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSb@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSc@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSd@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSe@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSf@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSh@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSi@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSj@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSl@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSm@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSs@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSt@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSv@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSw@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSx@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTSy@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTVN10__cxxabiv117__pbase_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTVN10__cxxabiv119__pointer_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTVN10__cxxabiv123__fundamental_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTVSt10bad_typeid@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 #MISSING: 3.2.3-2.1~# _ZTVSt8bad_cast@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 #MISSING: 3.2.3-2.1~# __cxa_bad_cast@Base 3.2.1 #MISSING: 3.2.3-2.1~# __cxa_bad_typeid@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_begin_cleanup@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_deleted_virtual@Base 3.2.3-2.1~ __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_end_cleanup@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __cxa_type_match@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gnu_end_cleanup@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.symbols.amd640000644000000000000000000004110212250025624013221 0ustar libtsk3.so.3 libtsk3-3 #MINVER# aff_open@Base 3.2.1 ewf_open@Base 3.0.1-3~ ext2fs_block_getflags@Base 2.52 ext2fs_block_walk@Base 3.0.1 ext2fs_dir_open_meta@Base 2.52 ext2fs_inode_walk@Base 3.0.1 ext2fs_jblk_walk@Base 3.0.1 ext2fs_jentry_walk@Base 3.0.1 ext2fs_jopen@Base 3.0.1 ext2fs_open@Base 3.0.1 fatfs_block_getflags@Base 2.52 fatfs_block_walk@Base 3.0.1 fatfs_cleanup_ascii@Base 3.2.3 #MISSING: 3.2.2-1~# fatfs_dinode_copy@Base 3.0.1 fatfs_dir_buf_add@Base 3.2.1 fatfs_dir_open_meta@Base 2.52 fatfs_getFAT@Base 2.52 fatfs_inode_lookup@Base 2.52 fatfs_inode_walk@Base 3.0.1 fatfs_is_clustalloc@Base 2.52 fatfs_isdentry@Base 3.0.1 fatfs_is_sectalloc@Base 2.52 fatfs_jblk_walk@Base 3.0.1 fatfs_jentry_walk@Base 3.0.1 fatfs_jopen@Base 3.0.1 fatfs_make_data_run@Base 2.52 fatfs_make_fat@Base 2.52 fatfs_make_mbr@Base 2.52 fatfs_make_root@Base 3.0.1 fatfs_name_cmp@Base 3.1.0 fatfs_open@Base 3.0.1 ffs_block_getflags@Base 2.52 ffs_block_walk@Base 3.0.1 ffs_dir_open_meta@Base 2.52 ffs_inode_walk@Base 3.0.1 ffs_jblk_walk@Base 3.0.1 ffs_jentry_walk@Base 3.0.1 ffs_jopen@Base 3.0.1 ffs_open@Base 3.0.1 gLowerCaseTable@Base 2.52 hfs2unixtime@Base 3.0.1 hfs_block_getflags@Base 2.52 hfs_cat_compare_keys@Base 3.1.0 #MISSING: 3.1.0-1# hfs_cat_find_node_offset@Base 3.0.1 #MISSING: 3.1.0-1# hfs_cat_next_record@Base 2.52 hfs_cat_read_file_folder_record@Base 3.1.0 hfs_cat_read_thread_record@Base 3.1.0 hfs_cat_traverse@Base 3.1.0 #MISSING: 3.1.0-1# hfs_catalog_lookup@Base 2.52 hfs_checked_read_random@Base 2.52 #MISSING: 3.1.0-1# hfs_compare_catalog_keys@Base 2.52 #MISSING: 3.1.0-1# hfs_dinode_copy@Base 2.52 hfs_dir_open_meta@Base 2.52 #MISSING: 3.1.0-1# hfs_get_bt_rec_off@Base 2.52 hfs_get_idxkeylen@Base 3.1.0 hfs_inode_walk@Base 3.0.1 #MISSING: 3.1.0-1# hfs_istat@Base 3.0.1 hfs_jblk_walk@Base 3.0.1 hfs_jentry_walk@Base 3.0.1 hfs_jopen@Base 3.0.1 hfs_name_cmp@Base 3.1.0 hfs_open@Base 3.0.1 #MISSING: 3.1.0-1# hfs_read_file_folder_record@Base 2.52 #MISSING: 3.1.0-1# hfs_read_key@Base 2.52 #MISSING: 3.1.0-1# hfs_read_thread_record@Base 2.52 hfs_uni2ascii@Base 3.0.1 hfs_unicode_compare@Base 2.52 hk_getentry@Base 3.0.1 hk_makeindex@Base 3.0.1 hk_test@Base 3.0.1 idxonly_getentry@Base 3.0.1 idxonly_makeindex@Base 3.0.1 iso9660_block_getflags@Base 2.52 iso9660_block_walk@Base 3.0.1 iso9660_dinode_load@Base 3.0.1 iso9660_dir_open_meta@Base 2.52 #MISSING: 3.1.1-1# iso9660_inode_list_free@Base 3.0.1 iso9660_inode_walk@Base 3.0.1 iso9660_jblk_walk@Base 3.0.1 iso9660_jentry_walk@Base 2.52 iso9660_jopen@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_load_inodes_dir@Base 3.0.1 iso9660_name_cmp@Base 3.1.0 iso9660_open@Base 3.0.1 #MISSING: 3.1.1-1# iso9660_proc_dir@Base 2.52 make_unix_perm@Base 3.0.1 md5sum_getentry@Base 3.0.1 md5sum_makeindex@Base 3.0.1 md5sum_test@Base 3.0.1 nsrl_getentry@Base 3.0.1 nsrl_makeindex@Base 3.0.1 nsrl_test@Base 3.0.1 nt2nano@Base 3.1.0 nt2unixtime@Base 3.0.1 ntfs_attrname_lookup@Base 3.0.1 ntfs_attr_walk_special@Base 2.52 ntfs_block_getflags@Base 2.52 ntfs_block_walk@Base 3.0.1 ntfs_dir_open_meta@Base 2.52 ntfs_file_read_special@Base 2.52 ntfs_find_file@Base 3.0.1 ntfs_get_sds@Base 3.1.0 ntfs_inode_walk@Base 3.0.1 ntfs_jblk_walk@Base 3.0.1 ntfs_jentry_walk@Base 2.52 ntfs_jopen@Base 2.52 ntfs_name_cmp@Base 3.1.0 ntfs_open@Base 3.0.1 ntfs_orphan_map_free@Base 3.1.0 ntfs_proc_sii@Base 3.1.0 #MISSING: 3.1.1-1# parse_susp@Base 3.0.1 progname@Base 3.0.1 rawfs_open@Base 3.0.1 raw_open@Base 3.0.1 split_open@Base 3.0.1 swapfs_open@Base 3.0.1 tsk_errno@Base 3.0.1 tsk_error_get@Base 3.0.1 tsk_error_print@Base 3.0.1 tsk_error_reset@Base 2.52 tsk_errstr2@Base 2.52 tsk_errstr@Base 3.0.1 tsk_errstr_print@Base 3.0.1 tsk_fprintf@Base 3.0.1 tsk_fs_attr_add_run@Base 2.52 tsk_fs_attr_alloc@Base 2.52 tsk_fs_attr_append_run@Base 2.52 tsk_fs_attr_clear@Base 2.52 tsk_fs_attr_free@Base 2.52 tsk_fs_attrlist_add@Base 2.52 tsk_fs_attrlist_alloc@Base 2.52 tsk_fs_attrlist_free@Base 2.52 tsk_fs_attrlist_get@Base 2.52 tsk_fs_attrlist_get_id@Base 2.52 tsk_fs_attrlist_get_idx@Base 2.52 tsk_fs_attrlist_get_len@Base 2.52 tsk_fs_attrlist_get_name_type@Base 3.1.0 tsk_fs_attrlist_getnew@Base 2.52 tsk_fs_attrlist_markunused@Base 2.52 tsk_fs_attr_read@Base 2.52 tsk_fs_attr_run_alloc@Base 2.52 tsk_fs_attr_run_free@Base 2.52 tsk_fs_attr_set_run@Base 2.52 tsk_fs_attr_set_str@Base 2.52 tsk_fs_attr_walk@Base 2.52 tsk_fs_blkcalc@Base 2.52 tsk_fs_blkcat@Base 2.52 tsk_fs_blkls@Base 2.52 tsk_fs_blkstat@Base 2.52 tsk_fs_block_alloc@Base 2.52 tsk_fs_block_free@Base 2.52 tsk_fs_block_get@Base 2.52 tsk_fs_block_set@Base 2.52 tsk_fs_block_walk@Base 2.52 tsk_fs_close@Base 2.52 tsk_fs_dir_add@Base 2.52 tsk_fs_dir_alloc@Base 2.52 tsk_fs_dir_close@Base 2.52 tsk_fs_dir_find_orphans@Base 2.52 tsk_fs_dir_get@Base 2.52 tsk_fs_dir_getsize@Base 2.52 tsk_fs_dir_load_inum_named@Base 2.52 tsk_fs_dir_make_orphan_dir_meta@Base 2.52 tsk_fs_dir_make_orphan_dir_name@Base 2.52 tsk_fs_dir_open@Base 2.52 tsk_fs_dir_open_meta@Base 2.52 tsk_fs_dir_realloc@Base 2.52 tsk_fs_dir_reset@Base 2.52 tsk_fs_dir_walk@Base 2.52 tsk_fs_ffind@Base 3.0.1 tsk_fs_file_alloc@Base 2.52 tsk_fs_file_attr_get@Base 2.52 tsk_fs_file_attr_get_idx@Base 2.52 tsk_fs_file_attr_getsize@Base 2.52 tsk_fs_file_attr_get_type@Base 2.52 tsk_fs_file_close@Base 2.52 tsk_fs_file_get_owner_sid@Base 3.1.0 tsk_fs_file_open@Base 2.52 tsk_fs_file_open_meta@Base 2.52 tsk_fs_file_read@Base 2.52 tsk_fs_file_read_type@Base 2.52 tsk_fs_file_reset@Base 2.52 tsk_fs_file_walk@Base 2.52 tsk_fs_file_walk_type@Base 2.52 tsk_fs_fls@Base 3.0.1 tsk_fs_icat@Base 3.0.1 tsk_fs_ifind_data@Base 3.0.1 tsk_fs_ifind_par@Base 3.0.1 tsk_fs_ifind_path@Base 3.0.1 tsk_fs_ils@Base 3.0.1 tsk_fs_load_file_action@Base 3.0.1 #MISSING: 3.1.0-1# tsk_fs_make_ls@Base 3.0.1 tsk_fs_meta_alloc@Base 2.52 tsk_fs_meta_close@Base 2.52 tsk_fs_meta_make_ls@Base 3.1.0 tsk_fs_meta_realloc@Base 2.52 tsk_fs_meta_reset@Base 2.52 tsk_fs_meta_type_str@Base 2.52 tsk_fs_meta_walk@Base 2.52 tsk_fs_name_alloc@Base 2.52 tsk_fs_name_copy@Base 2.52 tsk_fs_name_free@Base 2.52 tsk_fs_name_print@Base 2.52 tsk_fs_name_print_long@Base 2.52 tsk_fs_name_print_mac@Base 2.52 tsk_fs_name_realloc@Base 2.52 tsk_fs_name_reset@Base 2.52 tsk_fs_name_type_str@Base 2.52 tsk_fs_nofs_block_getflags@Base 2.52 tsk_fs_nofs_block_walk@Base 2.52 tsk_fs_nofs_close@Base 2.52 tsk_fs_nofs_dir_open_meta@Base 2.52 tsk_fs_nofs_file_add_meta@Base 2.52 tsk_fs_nofs_fsstat@Base 2.52 tsk_fs_nofs_get_default_attr_type@Base 2.52 tsk_fs_nofs_inode_walk@Base 2.52 tsk_fs_nofs_istat@Base 2.52 tsk_fs_nofs_jblk_walk@Base 2.52 tsk_fs_nofs_jentry_walk@Base 2.52 tsk_fs_nofs_jopen@Base 2.52 tsk_fs_nofs_make_data_run@Base 2.52 tsk_fs_nofs_name_cmp@Base 3.1.0 tsk_fs_open_img@Base 2.52 tsk_fs_open_vol@Base 2.52 tsk_fs_parse_inum@Base 2.52 tsk_fs_path2inum@Base 2.52 tsk_fs_read@Base 2.52 tsk_fs_read_block@Base 3.0.1 tsk_fs_type_print@Base 2.52 tsk_fs_type_supported@Base 2.52 tsk_fs_type_toid@Base 2.52 tsk_fs_type_toname@Base 2.52 tsk_fs_unix_get_default_attr_type@Base 2.52 tsk_fs_unix_make_data_run@Base 2.52 tsk_fs_unix_name_cmp@Base 3.1.0 tsk_guess_end_u16@Base 3.0.1 tsk_guess_end_u32@Base 3.0.1 tsk_hdb_close@Base 3.0.1 tsk_hdb_hasindex@Base 2.52 tsk_hdb_idxaddentry@Base 3.0.1 tsk_hdb_idxfinalize@Base 3.0.1 tsk_hdb_idxinitialize@Base 3.0.1 tsk_hdb_lookup_raw@Base 3.0.1 tsk_hdb_lookup_str@Base 2.52 tsk_hdb_makeindex@Base 2.52 tsk_hdb_open@Base 3.0.1 tsk_img_close@Base 2.52 tsk_img_findFiles@Base 3.2.3 tsk_img_open@Base 3.0.1 tsk_img_open_sing@Base 2.52 tsk_img_open_utf8@Base 2.52 tsk_img_open_utf8_sing@Base 2.52 tsk_img_read@Base 2.52 tsk_img_type_print@Base 2.52 tsk_img_type_supported@Base 2.52 tsk_img_type_todesc@Base 2.52 tsk_img_type_toid@Base 2.52 tsk_img_type_toname@Base 2.52 tsk_isLegalUTF8Sequence@Base 3.0.1 tsk_list_add@Base 3.0.1 tsk_list_find@Base 3.0.1 tsk_list_free@Base 2.52 tsk_malloc@Base 2.52 TSK_MD5_Final@Base 3.0.1 TSK_MD5_Init@Base 3.0.1 TSK_MD5_Update@Base 3.0.1 tsk_parse_offset@Base 3.0.1 tsk_parse_pnum@Base 2.52 tsk_printf@Base 3.0.1 tsk_realloc@Base 3.0.1 TSK_SHA_Final@Base 3.0.1 TSK_SHA_Init@Base 3.0.1 TSK_SHA_Update@Base 3.0.1 _ZN10__cxxabiv111__terminateEPFvvE@Base 3.2.1 _ZN10__cxxabiv112__unexpectedEPFvvE@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD0Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD1Ev@Base 3.2.1 _ZN10__cxxabiv115__forced_unwindD2Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv117__class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD0Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD1Ev@Base 3.2.1 _ZN10__cxxabiv119__foreign_exceptionD2Ev@Base 3.2.1 _ZN10__cxxabiv119__terminate_handlerE@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD0Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD1Ev@Base 3.2.1 _ZN10__cxxabiv120__si_class_type_infoD2Ev@Base 3.2.1 _ZN10__cxxabiv120__unexpected_handlerE@Base 3.2.1 _ZN7TskAuto10closeImageEv@Base 3.2.1 _ZN7TskAuto13findFilesInFsEP11TSK_FS_INFO@Base 3.2.3 _ZN7TskAuto13findFilesInFsEl16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInFsEl16TSK_FS_TYPE_ENUMm@Base 3.2.1 _ZN7TskAuto13findFilesInFsEl@Base 3.2.1 _ZN7TskAuto13findFilesInFsElm@Base 3.2.1 _ZN7TskAuto13findFilesInVsEl16TSK_VS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto13findFilesInVsEl@Base 3.2.1 _ZN7TskAuto13isDefaultTypeEP11TSK_FS_FILEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto13isNonResidentEPK11TSK_FS_ATTR@Base 3.2.1 _ZN7TskAuto14findFilesInImgEv@Base 3.2.1 _ZN7TskAuto16findFilesInFsIntEP11TSK_FS_INFOm@Base 3.2.1 _ZN7TskAuto16findFilesInFsRetEl16TSK_FS_TYPE_ENUM@Base 3.2.1 _ZN7TskAuto16isFATSystemFilesEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN7TskAuto17isNtfsSystemFilesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17processAttributesEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto17setVolFilterFlagsE21TSK_VS_PART_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto18handleNotificationEPKc@Base 3.2.3 _ZN7TskAuto18setFileFilterFlagsE25TSK_FS_DIR_WALK_FLAG_ENUM@Base 3.2.1 _ZN7TskAuto5isDirEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto6isFileEP11TSK_FS_FILE@Base 3.2.1 _ZN7TskAuto8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN7TskAuto8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN7TskAuto8isDotDirEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN7TskAuto8vsWalkCbEP11TSK_VS_INFOPK16TSK_VS_PART_INFOPv@Base 3.2.1 _ZN7TskAuto9dirWalkCbEP11TSK_FS_FILEPKcPv@Base 3.2.1 _ZN7TskAuto9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN7TskAuto9openImageEP12TSK_IMG_INFO@Base 3.2.2 _ZN7TskAuto9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN7TskAutoC1Ev@Base 3.2.1 _ZN7TskAutoC2Ev@Base 3.2.1 _ZN7TskAutoD0Ev@Base 3.2.1 _ZN7TskAutoD1Ev@Base 3.2.1 _ZN7TskAutoD2Ev@Base 3.2.1 _ZN9TskAutoDb10closeImageEv@Base 3.2.1 _ZN9TskAutoDb11processFileEP11TSK_FS_FILEPKc@Base 3.2.1 _ZN9TskAutoDb14createBlockMapEb@Base 3.2.1 _ZN9TskAutoDb14insertFileDataEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb16processAttributeEP11TSK_FS_FILEPK11TSK_FS_ATTRPKc@Base 3.2.1 _ZN9TskAutoDb17addFilesInImgToDBEv@Base 3.2.1 _ZN9TskAutoDb20createParentDirIndexEv@Base 3.2.1 _ZN9TskAutoDb8filterFsEP11TSK_FS_INFO@Base 3.2.1 _ZN9TskAutoDb8filterVsEPK11TSK_VS_INFO@Base 3.2.1 _ZN9TskAutoDb9filterVolEPK16TSK_VS_PART_INFO@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMj@Base 3.2.1 _ZN9TskAutoDb9openImageEiPKPKc17TSK_IMG_TYPE_ENUMjPc@Base 3.2.1 _ZN9TskAutoDbC1Ev@Base 3.2.1 _ZN9TskAutoDbC2Ev@Base 3.2.1 _ZN9TskAutoDbD0Ev@Base 3.2.1 _ZN9TskAutoDbD1Ev@Base 3.2.1 _ZN9TskAutoDbD2Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev@Base 3.2.1 _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev@Base 3.2.1 _ZN9__gnu_cxx27__verbose_terminate_handlerEv@Base 3.2.1 _ZN9__gnu_cxx30__throw_concurrence_lock_errorEv@Base 3.2.3-2.1~ _ZN9__gnu_cxx32__throw_concurrence_unlock_errorEv@Base 3.2.3-2.1~ _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@Base 3.2.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_@Base 3.2.1 _ZNK7TskAuto12getImageSizeEv@Base 3.2.3 _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv@Base 3.2.1 _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv@Base 3.2.1 _ZNKSt13bad_exception4whatEv@Base 3.2.1 _ZNKSt9exception4whatEv@Base 3.2.1 _ZNKSt9type_info10__do_catchEPKS_PPvj@Base 3.2.1 _ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv@Base 3.2.1 _ZNKSt9type_info14__is_pointer_pEv@Base 3.2.1 _ZNKSt9type_info15__is_function_pEv@Base 3.2.1 _ZNSt13bad_exceptionD0Ev@Base 3.2.1 _ZNSt13bad_exceptionD1Ev@Base 3.2.1 _ZNSt13bad_exceptionD2Ev@Base 3.2.1 _ZNSt9exceptionD0Ev@Base 3.2.1 _ZNSt9exceptionD1Ev@Base 3.2.1 _ZNSt9exceptionD2Ev@Base 3.2.1 _ZNSt9type_infoD0Ev@Base 3.2.1 _ZNSt9type_infoD1Ev@Base 3.2.1 _ZNSt9type_infoD2Ev@Base 3.2.1 _ZSt10unexpectedv@Base 3.2.1 _ZSt13set_terminatePFvvE@Base 3.2.1 _ZSt14set_unexpectedPFvvE@Base 3.2.1 _ZSt18uncaught_exceptionv@Base 3.2.1 _ZSt9terminatev@Base 3.2.1 _ZTI7TskAuto@Base 3.2.1 _ZTI9TskAutoDb@Base 3.2.1 _ZTIN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTIN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTIN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTIN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTIN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTIN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTISt13bad_exception@Base 3.2.1 _ZTISt9exception@Base 3.2.1 _ZTISt9type_info@Base 3.2.1 _ZTS7TskAuto@Base 3.2.1 _ZTS9TskAutoDb@Base 3.2.1 _ZTSN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTSN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTSN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTSN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTSN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTSN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTSSt13bad_exception@Base 3.2.1 _ZTSSt9exception@Base 3.2.1 _ZTSSt9type_info@Base 3.2.1 _ZTV7TskAuto@Base 3.2.1 _ZTV9TskAutoDb@Base 3.2.1 _ZTVN10__cxxabiv115__forced_unwindE@Base 3.2.1 _ZTVN10__cxxabiv117__class_type_infoE@Base 3.2.1 _ZTVN10__cxxabiv119__foreign_exceptionE@Base 3.2.1 _ZTVN10__cxxabiv120__si_class_type_infoE@Base 3.2.1 _ZTVN9__gnu_cxx24__concurrence_lock_errorE@Base 3.2.1 _ZTVN9__gnu_cxx26__concurrence_unlock_errorE@Base 3.2.1 _ZTVSt13bad_exception@Base 3.2.1 _ZTVSt9exception@Base 3.2.1 _ZTVSt9type_info@Base 3.2.1 _ZdlPv@Base 3.2.1 __cxa_allocate_dependent_exception@Base 3.2.1 __cxa_allocate_exception@Base 3.2.1 __cxa_begin_catch@Base 3.2.1 __cxa_call_terminate@Base 3.2.1 __cxa_call_unexpected@Base 3.2.1 __cxa_current_exception_type@Base 3.2.1 __cxa_deleted_virtual@Base 3.2.3-2.1~ __cxa_demangle@Base 3.2.1 __cxa_end_catch@Base 3.2.1 __cxa_free_dependent_exception@Base 3.2.1 __cxa_free_exception@Base 3.2.1 __cxa_get_exception_ptr@Base 3.2.1 __cxa_get_globals@Base 3.2.1 __cxa_get_globals_fast@Base 3.2.1 __cxa_pure_virtual@Base 3.2.1 __cxa_rethrow@Base 3.2.1 __cxa_throw@Base 3.2.1 __gcclibcxx_demangle_callback@Base 3.2.1 __gxx_personality_v0@Base 3.2.1 tsk_stack_create@Base 2.52 tsk_stack_find@Base 2.52 tsk_stack_free@Base 2.52 tsk_stack_pop@Base 2.52 tsk_stack_push@Base 2.52 tsk_UTF16toUTF8@Base 3.0.1 tsk_UTF16toUTF8_lclorder@Base 3.1.0 tsk_UTF8toUTF16@Base 3.0.1 tsk_verbose@Base 3.0.1 tsk_version_get_str@Base 2.52 tsk_version_print@Base 2.52 tsk_vs_bsd_open@Base 2.52 tsk_vs_close@Base 2.52 tsk_vs_dos_open@Base 2.52 tsk_vs_gpt_open@Base 2.52 tsk_vs_mac_open@Base 2.52 tsk_vs_open@Base 2.52 tsk_vs_part_add@Base 2.52 tsk_vs_part_free@Base 2.52 tsk_vs_part_get@Base 2.52 tsk_vs_part_read@Base 2.52 tsk_vs_part_read_block@Base 2.52 tsk_vs_part_unused@Base 2.52 tsk_vs_part_walk@Base 2.52 tsk_vs_read_block@Base 2.52 tsk_vs_sun_open@Base 2.52 tsk_vs_type_print@Base 2.52 tsk_vs_type_supported@Base 2.52 tsk_vs_type_todesc@Base 2.52 tsk_vs_type_toid@Base 2.52 tsk_vs_type_toname@Base 2.52 vs_open_table@Base 2.52 debian/libtsk3-3.install0000644000000000000000000000002012250025624012257 0ustar /usr/lib/*.so.* debian/libtsk-dev.install0000644000000000000000000000005012250025624012613 0ustar /usr/include /usr/lib/*.a /usr/lib/*.so debian/gbp.conf0000644000000000000000000000011712250025624010602 0ustar # git-buildpackage config file for sleuthkit [DEFAULT] debian-branch = debian debian/copyright0000644000000000000000000006652212250025624011132 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174 Upstream-Name: The Sleuth Kit (TSK) Upstream-Contact: Brian Carrier Source: http://www.sleuthkit.org/sleuthkit/ Files: * Copyright: 2001-2009, Brian Carrier License: CPL-1.0 or IBM-PL-1.0 Files: debian/* Copyright: 2003-2004, Mattia Monga 2004-2009, Martin A. Godisch 2009-2010, Cristian Greco 2010-2011, Christophe Monniez 2011, Julien Valroff License: GPL-2+ Files: samples/callback-style.cpp samples/posix-style.cpp Copyright: 2008, Brian Carrier License: BSD-3-clause Files: tools/fstools/blkls.cpp tools/fstools/icat.cpp tools/fstools/ils.cpp tsk3/fs/dls_lib.c tsk3/fs/ext2fs.c tsk3/fs/ffs.c tsk3/fs/fs_inode.c tsk3/fs/fs_io.c tsk3/fs/fs_open.c tsk3/fs/hfs.c tsk/fs/hfs_dent.c tsk/fs/hfs_unicompare.c tsk/fs/icat_lib.c tsk/fs/iso9660.c tsk/fs/iso9660_dent.c tsk/fs/tsk_fs.h tsk/fs/tsk_fs_i.h tsk/fs/tsk_hfs.h tsk/fs/tsk_iso9660.h Copyright: 1997-1999, International Business Machine Corporation 2002-2009, Brian Carrier License: IBM-PL-1.0 Files: tools/srchtools/srch_strings.c Copyright: Richard Stallman David MacKenzie License: GPL-2+ Files: tsk3/base/XGetopt.c Copyright: 2002-2003, Hans Dietrich License: public-domain This software is released into the public domain. You are free to use it in any way you like. . This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause. License: CPL-1.0 Common Public License Version 1.0 . THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. . 1. DEFINITIONS . "Contribution" means: . a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and . b) in the case of each subsequent Contributor: . i) changes to the Program, and . ii) additions to the Program; . where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. . "Contributor" means any person or entity that distributes the Program. . "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. . "Program" means the Contributions distributed in accordance with this Agreement. . "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. . 2. GRANT OF RIGHTS . a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. . b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. . c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. . d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. . 3. REQUIREMENTS . A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: . a) it complies with the terms and conditions of this Agreement; and . b) its license agreement: . i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; . ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; . iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and . iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. . When the Program is made available in source code form: . a) it must be made available under this Agreement; and . b) a copy of this Agreement must be included with each copy of the Program. . Contributors may not remove or alter any copyright notices contained within the Program. . Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. . 4. COMMERCIAL DISTRIBUTION . Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. . For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. . 5. NO WARRANTY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. . 6. DISCLAIMER OF LIABILITY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. GENERAL . If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. . If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. . All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. . Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. . This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. License: IBM-PL-1.0 IBM PUBLIC LICENSE VERSION 1.0 - CORONER TOOLKIT UTILITIES . THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. . 1. DEFINITIONS . "Contribution" means: a) in the case of International Business Machines Corporation ("IBM"), the Original Program, and b) in the case of each Contributor, i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. . "Contributor" means IBM and any other entity that distributes the Program. . "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. . "Original Program" means the original version of the software accompanying this Agreement as released by IBM, including source code, object code and documentation, if any. . "Program" means the Original Program and Contributions. . "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. . 2. GRANT OF RIGHTS . a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. . b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. . c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. . d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. . 3. REQUIREMENTS . A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: a) it complies with the terms and conditions of this Agreement; and b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. . When the Program is made available in source code form: a) it must be made available under this Agreement; and b) a copy of this Agreement must be included with each copy of the Program. . Each Contributor must include the following in a conspicuous location in the Program: . Copyright (c) 1997,1998,1999, International Business Machines Corporation and others. All Rights Reserved. . In addition, each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. . 4. COMMERCIAL DISTRIBUTION . Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. . For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. . 5. NO WARRANTY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. . 6. DISCLAIMER OF LIABILITY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. GENERAL . If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. . If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. . All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. . IBM may publish new versions (including revisions) of this Agreement from time to time. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. No one other than IBM has the right to modify this Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. . This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the Sleuth Kit name nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . On Debian systems, the full text of the GNU General Public License versin 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/control0000644000000000000000000001131012250025624010563 0ustar Source: sleuthkit Section: admin Priority: optional Maintainer: Debian Forensics Uploaders: Christophe Monniez Build-Depends: debhelper (>= 8.0.0), autoconf, automake, libtool, dh-autoreconf, libewf-dev (>= 20100226), libsqlite3-dev, libafflib-dev (>= 3.6.6) Standards-Version: 3.9.2 Homepage: http://www.sleuthkit.org/sleuthkit/ Vcs-Browser: http://git.debian.org/?p=forensics/sleuthkit.git Vcs-Git: git://git.debian.org/git/forensics/sleuthkit.git DM-Upload-Allowed: yes Package: sleuthkit Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, file, libdate-manip-perl Suggests: autopsy Description: collection of tools for forensics analysis on volume and file system data The Sleuth Kit (previously known as TASK) is a collection of UNIX-based command line file and volume system forensic analysis tools. The file system tools allow you to examine file systems of a suspect computer in a non-intrusive fashion. Because the tools do not rely on the operating system to process the file systems, deleted and hidden content is shown. . The volume system (media management) tools allow you to examine the layout of disks and other media. The Sleuth Kit supports DOS partitions, BSD partitions (disk labels), Mac partitions, Sun slices (Volume Table of Contents), and GPT disks. With these tools, you can identify where partitions are located and extract them so that they can be analyzed with file system analysis tools. . This package contains the set of command line tools in The Sleuth Kit. Package: libtsk3-3 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: library for forensics analysis on volume and file system data The Sleuth Kit (previously known as TASK) is a collection of UNIX-based command line file and volume system forensic analysis tools. The file system tools allow you to examine file systems of a suspect computer in a non-intrusive fashion. Because the tools do not rely on the operating system to process the file systems, deleted and hidden content is shown. . The volume system (media management) tools allow you to examine the layout of disks and other media. The Sleuth Kit supports DOS partitions, BSD partitions (disk labels), Mac partitions, Sun slices (Volume Table of Contents), and GPT disks. With these tools, you can identify where partitions are located and extract them so that they can be analyzed with file system analysis tools. . This package contains the library which can be used to implement all of the functionality of the command line tools into an application that needs to analyze data from a disk image. Package: libtsk3-3-dbg Section: debug Priority: extra Architecture: any Depends: ${misc:Depends}, libtsk3-3 (= ${binary:Version}) Suggests: libc-dbg Description: library for forensics analysis (debug symbols) The Sleuth Kit (previously known as TASK) is a collection of UNIX-based command line file and volume system forensic analysis tools. The file system tools allow you to examine file systems of a suspect computer in a non-intrusive fashion. Because the tools do not rely on the operating system to process the file systems, deleted and hidden content is shown. . The volume system (media management) tools allow you to examine the layout of disks and other media. The Sleuth Kit supports DOS partitions, BSD partitions (disk labels), Mac partitions, Sun slices (Volume Table of Contents), and GPT disks. With these tools, you can identify where partitions are located and extract them so that they can be analyzed with file system analysis tools. . This package contains debugging symbols for the library. Package: libtsk-dev Section: libdevel Priority: extra Architecture: any Depends: ${misc:Depends}, libtsk3-3 (= ${binary:Version}), zlib1g-dev Suggests: libtsk3-3-dbg Description: library for forensics analysis (development files) The Sleuth Kit (previously known as TASK) is a collection of UNIX-based command line file and volume system forensic analysis tools. The file system tools allow you to examine file systems of a suspect computer in a non-intrusive fashion. Because the tools do not rely on the operating system to process the file systems, deleted and hidden content is shown. . The volume system (media management) tools allow you to examine the layout of disks and other media. The Sleuth Kit supports DOS partitions, BSD partitions (disk labels), Mac partitions, Sun slices (Volume Table of Contents), and GPT disks. With these tools, you can identify where partitions are located and extract them so that they can be analyzed with file system analysis tools. . This package contains header files and static version of the library. debian/compat0000644000000000000000000000000212250025624010362 0ustar 8 debian/changelog0000644000000000000000000003614312250025624011045 0ustar sleuthkit (3.2.3-2.2) unstable; urgency=low * Non-maintainer upload * Update symbol file for armel. -- Andreas Beckmann Thu, 05 Dec 2013 08:28:53 +0100 sleuthkit (3.2.3-2.1) unstable; urgency=low [ Andreas Moog ] * Non-maintainer upload * d/patches/95_fix-libewf2-detection.patch, 96_fix_build_libewf2.patch: - Add 2 patches from upstream git to fix detection and build against libewf2 (Closes: #713364) [ Andreas Beckmann ] * Update symbol files for amd64, armel, i386, mips. -- Andreas Beckmann Sat, 30 Nov 2013 21:15:15 +0100 sleuthkit (3.2.3-2) unstable; urgency=low * Team upload. * Fix build with dpkg < 1.16.1 * Fix symbols files for ia64 and armel -- Julien Valroff Fri, 14 Oct 2011 19:52:20 +0200 sleuthkit (3.2.3-1) unstable; urgency=low * Team upload. [ Daniel T Chen ] * Refresh 90_fix_ldflags.diff. * Update libtsk3-3 symbols files for 3.2.2. [ Julien Valroff ] * Fix DEP-5 copyright syntax * Use DPKG_EXPORT_BUILDFLAGS to ensure LDFLAGS is actually exported * Add patch to fix a typo in libtsk3.so * Update libtsk3-3 symbols files for 3.2.3 [ Christophe Monniez ] * Merge upstream version 3.2.3. -- Julien Valroff Thu, 13 Oct 2011 21:01:10 +0200 sleuthkit (3.2.1-2) unstable; urgency=low * Team upload. * Fix symbols files for non any-amd64 architectures, avoiding FTBFS (Closes: #630207) -- Julien Valroff Sun, 12 Jun 2011 14:57:56 +0200 sleuthkit (3.2.1-1) unstable; urgency=low * Team upload. [ Cristian Greco ] * debian/control: remove myself from Uploaders. [ Christophe Monniez ] * Merging upstream version 3.2.1. * Refreshing patches. * Updating libewf dependency. * Removing installation of .la files. * Adding afflib support. [ Julien Valroff ] * Switch to 3.0 (quilt) source package format * Refresh patch to prevent static linking * Bump debhelper compat to 8 * Update copyright information * Fix dh --with syntax * Add patch to fix formatting error in the manpages * Update libtsk3-3 symbols file * Suggests Autopsy * Add patch to dynamically link against libsqlite3 -- Julien Valroff Fri, 10 Jun 2011 23:10:11 +0200 sleuthkit (3.1.3-1) unstable; urgency=low * New upstream version. - 90_fix_ldflags.patch: refreshed patch. * debian/copyright: fix copyright-refers-to-deprecated-bsd-license-file. * debian/control: bump up standards-version to 3.9.0. -- Cristian Greco Tue, 13 Jul 2010 20:45:52 +0200 sleuthkit (3.1.2-1) unstable; urgency=low * New upstream version. * debian/patches: - 90_fix_ldflags.patch: refreshed patch. - 99_no_static_ldflags.patch: new patch, drop `-static` from LDFLAGS from tools/*/Makefile.am in order to avoid sleuthkit tools to be statically linked against libtsk. * debian/{control,rules}: bump autotools-dev build-dep to (>= 20100122.1) and pass '--with autotools_dev' to dh in order to automatically update config.{sub,guess} files. -- Cristian Greco Fri, 18 Jun 2010 14:00:57 +0200 sleuthkit (3.1.1-1) unstable; urgency=low * New upstream version. * debian/patches: most of the patches merged upstream, thanks Brian! - 01-fix-hfind-manpage.patch: merged upstream. - 02-fix-hyphens-manpages.patch: merged upstream. - 90_fix_ldflags.patch: refreshed (mostly merged upstream, but still needed). * debian/libtsk3-3.symbols: updated. -- Cristian Greco Tue, 06 Apr 2010 13:33:25 +0200 sleuthkit (3.1.0-1) unstable; urgency=low * New upstream version. * debian/control: - fix package priorities once again. - upgrade build-dep on libewf-dev (>= 20090606) and remove other useless (build-)deps. - bump up standards-version to 3.8.4 (no changes). - set my new email address. - add DMUA flag, thanks to my sponsor Michael Prokop. * debian/patches: - 01-fix-hfind-manpage.patch, refreshed; - 02-fix-hyphens-manpages.patch, refreshed and updated to fix some spelling errors too; - 10_fix_compiler_warnings.patch, dropped (fixed upstream); - 90_fix_ldflags.patch: refreshed. * debian/sleuthkit.docs: some doc files were removed upstream. * debian/libtsk3-3.symbols: update symbols file. -- Cristian Greco Thu, 18 Feb 2010 23:16:22 +0100 sleuthkit (3.0.1-5) unstable; urgency=low * debian/control: - move git packaging on alioth. - priority is extra, not optional. - build-dep on automake and libtool to fix FTBFS on all arches, shame on me! * debian/source.lintian-overrides: removed, useless. -- Cristian Greco Tue, 22 Sep 2009 23:32:18 +0200 sleuthkit (3.0.1-4) unstable; urgency=low [ Cristian Greco ] * New maintainer Debian Forensics, added myself to uploaders. Thanks Martin Godisch! (Closes: #537418) * Build-depends on debhelper (>= 7.0.50) and quilt (>= 0.46-7~), use a real patch management system and rewrite debian/rules in a tiny form. * debian/patches: - 283709_dstat.diff.disabled: deleted. - 411026_sorter.diff: renamed 01-fix-hfind-manpage.patch (added description). - 000000_lintian.diff: renamed to 02-fix-hyphens-manpages.patch (plus lintian fixes). - 10_fix_compiler_warnings.patch: new patch, fixes a lot of compiler warnings (pulled from upstream svn). - 90_fix_ldflags.patch: new patch, avoid linking against unused libraries. * Call autoreconf and pass "-Wl,--as-needed" to LDFLAGS in debian/rules to support changes in 90_fix_ldflags.patch. Add autoconf build-dep in debian/control. * Move libtsk3-3-dbg to the new debug section. * Drop shlibs:Depends from -dbg package. * Added minimal conf file for git-buildpackage. * Improve short and long description for all binary packages. * Adding a README.source file with informations about the quilt patch system. * Update debian/copyright file. * bump up Standards-Version to 3.8.3 (no changes needed). * fix symbol with debian revision by postfixing a '~' in libtsk3- 3.symbols [ Daniel Baumann ] * Using correct rfc-2822 date formats in changelog. * Adding vcs fields in control file. * Sorting fields in control file. * Removing dubious priority override for libtsk-dev. * Using dedicated debhelper manpages file to install additional manpages. * Sorting debhelper install files. * Rewrapping maintainer scripts. * Calling all shell commands in rules with set -e in order to properly fail in case of errors. * Removing override for dh_installchangelogs in rules, it's not needed. * Adding source lintian overrides. -- Cristian Greco Tue, 22 Sep 2009 02:59:38 +0200 sleuthkit (3.0.1-3) unstable; urgency=low * Added libewf-dev to build-dependencies, suggested by Michael Prokop. -- Martin A. Godisch Mon, 31 Aug 2009 16:11:29 +0200 sleuthkit (3.0.1-2) unstable; urgency=low * Moving into sid after three months in experimental. * Updated standards version (no changes necessary). -- Martin A. Godisch Sun, 12 Jul 2009 09:30:08 +0200 sleuthkit (3.0.1-1) experimental; urgency=low * New upstream release, closes: #503379. * Removed README.Debian, which is not applicable anymore. * Added homepage control file, updated package description. * Updated standards version. -- Martin A. Godisch Sun, 12 Apr 2009 17:22:03 +0200 sleuthkit (2.52-2) unstable; urgency=low * Fixed malloc check. -- Martin A. Godisch Fri, 23 May 2008 06:37:05 +0200 sleuthkit (2.52-1) unstable; urgency=low * New upstream release. -- Martin A. Godisch Sun, 13 Apr 2008 08:42:26 +0200 sleuthkit (2.51-2) unstable; urgency=low * Fixed dependency non-bug, closes: #472836. * Fixed man warnings. -- Martin A. Godisch Tue, 01 Apr 2008 20:13:46 +0200 sleuthkit (2.51-1) unstable; urgency=low * New upstream release. -- Martin A. Godisch Sun, 17 Feb 2008 07:46:16 +0100 sleuthkit (2.50-2) unstable; urgency=low * Updated copyright file. -- Martin A. Godisch Sun, 03 Feb 2008 11:04:15 +0100 sleuthkit (2.50-1) unstable; urgency=low * New upstream release, closes: #456194. * Fixed path in sorter, closes: #462968. * Upstream provides dynamic libraries, added binary packages libtsk1 and libtsk1-dbg. * Rewrote build system, added build-dependency on debhelper. -- Martin A. Godisch Sat, 02 Feb 2008 22:37:20 +0100 sleuthkit (2.09-2) unstable; urgency=low * Improved hfind(1), closes: #411026. * Fixed watch file, closes: #449745. * Fixed clean target. -- Martin A. Godisch Mon, 10 Dec 2007 18:56:30 +0100 sleuthkit (2.09-1) unstable; urgency=low * New upstream release. * Added binary package libtsk-dev, based on a patch from Jan Hoeksma. -- Martin A. Godisch Sun, 24 Jun 2007 18:48:40 +0200 sleuthkit (2.08-1) unstable; urgency=low * New upstream release. * Fixed timestamps in debian/rules. -- Martin A. Godisch Fri, 06 Apr 2007 10:01:41 +0200 sleuthkit (2.07-1) unstable; urgency=low * New upstream release. -- Martin A. Godisch Sun, 17 Dec 2006 10:28:50 +0100 sleuthkit (2.06-3) unstable; urgency=low * Removed conflicts with tct, closes: #357622. -- Martin A. Godisch Thu, 21 Sep 2006 04:47:35 +0200 sleuthkit (2.06-2) unstable; urgency=low * Updated build-dependencies, closes: #386793. -- Martin A. Godisch Sun, 10 Sep 2006 17:15:35 +0200 sleuthkit (2.06-1) unstable; urgency=low * New upstream release, closes: #386411. -- Martin A. Godisch Sun, 10 Sep 2006 08:30:15 +0200 sleuthkit (2.03-1) unstable; urgency=low * New upstream release. * Added md5 and sha1 manual pages. -- Martin A. Godisch Sat, 15 Oct 2005 09:29:45 +0200 sleuthkit (2.02-1) unstable; urgency=low * New upstream release. * Updated standards version. -- Martin A. Godisch Sat, 09 Jul 2005 08:07:30 +0200 sleuthkit (2.00-2) unstable; urgency=low * Fixed FTBFS on amd64/gcc-4.0, closes: #301391. Thanks to Andreas Jochens. -- Martin A. Godisch Fri, 25 Mar 2005 17:37:21 +0100 sleuthkit (2.00-1) unstable; urgency=low * New upstream release. -- Martin A. Godisch Thu, 24 Mar 2005 20:20:30 +0100 sleuthkit (1.73-6) unstable; urgency=low * Incorporated patch 08 into patch 03, closes: #295712. -- Martin A. Godisch Sat, 19 Feb 2005 20:08:10 +0100 sleuthkit (1.73-5) unstable; urgency=medium * Fixed SHARE_DIR in /usr/bin/sorter, closes: #295712. -- Martin A. Godisch Thu, 17 Feb 2005 19:02:35 +0100 sleuthkit (1.73-4) unstable; urgency=low * Fixed FTBFS on amd64/gcc-4.0, closes: #288468. Thanks to Andreas Jochens. -- Martin A. Godisch Tue, 04 Jan 2005 18:02:20 +0100 sleuthkit (1.73-3) unstable; urgency=low * Renamed /usr/bin/dstat to /usr/bin/datastat due to name clash with /usr/bin/diskstat, see: #283709. * Added README.Debian explaining where dstat can be found. -- Martin A. Godisch Tue, 04 Jan 2005 17:49:45 +0100 sleuthkit (1.73-2) unstable; urgency=low * Renamed /usr/bin/dstat to /usr/bin/diskstat on request of Andrew Pollock, closes: #283709. -- Martin A. Godisch Sun, 02 Jan 2005 11:24:55 +0100 sleuthkit (1.73-1) unstable; urgency=low * New upstream release, closes: #275195. * Updated manual page for sstrings. -- Martin A. Godisch Sat, 06 Nov 2004 09:20:45 +0100 sleuthkit (1.72-2) unstable; urgency=low * Added manual page for sstrings. -- Martin A. Godisch Sun, 19 Sep 2004 18:10:10 +0200 sleuthkit (1.72-1) unstable; urgency=low * New upstream release. * Fixed watch file. -- Martin A. Godisch Sat, 18 Sep 2004 18:53:30 +0200 sleuthkit (1.71-2) unstable; urgency=low * Fixed CFLAGS handling in Makefiles. -- Martin A. Godisch Sat, 31 Jul 2004 20:29:32 +0200 sleuthkit (1.71-1) unstable; urgency=low * New upstream release. -- Martin A. Godisch Sat, 31 Jul 2004 20:04:20 +0200 sleuthkit (1.70-5) unstable; urgency=low * Fixed alternatives. * Updated watch file. -- Martin A. Godisch Sat, 31 Jul 2004 19:09:00 +0200 sleuthkit (1.70-4) unstable; urgency=low * Remade conflict with tct until patch #219010 has been implemented. -- Martin A. Godisch Sat, 31 Jul 2004 12:23:30 +0200 sleuthkit (1.70-3) unstable; urgency=low * Fixed 64 bit compiler warnings, patch adapted from Lorenzo Martignoni. * Removed conflict with tct. * Fixed copyright file, closes: #262417. -- Martin A. Godisch Sat, 31 Jul 2004 08:44:54 +0200 sleuthkit (1.70-2) unstable; urgency=low * Fixed copyright file. -- Martin A. Godisch Mon, 26 Jul 2004 19:24:20 +0200 sleuthkit (1.70-1) unstable; urgency=low * New upstream release, closes: #221713. * New maintainer. Since we're getting deadlines [1] I don't want to wait any longer with this upload. * Fixed FTBFS on amd64 and alpha, closes: #248180. Thanks to Andreas Jochens. * Fixed sorter, closes: #196834. * Rewrote build system, added watch file. * Relocated tct documents, closes: #243602, #243604. [1] http://lists.debian.org/debian-devel-announce/2004/07/msg00016.html -- Martin A. Godisch Mon, 26 Jul 2004 18:31:40 +0200 sleuthkit (1.68-2) unstable; urgency=low * 64-bit systems naturally implement llseek (closes: #205313) * Bumped to Standards 3.6.1.0 (no changes needed) -- Mattia Monga Wed, 10 Mar 2004 17:28:03 +0100 sleuthkit (1.68-1) unstable; urgency=low * New upstream release * Fixed $SK_DIR in /usr/bin/sorted, now is is /usr/ (closes: #196834) -- Lorenzo Martignoni Wed, 10 Mar 2004 15:19:17 +0100 sleuthkit (1.66-1) unstable; urgency=low * New upstream release (closes: #221713) -- Lorenzo Martignoni Fri, 28 Nov 2003 19:13:18 +0100 sleuthkit (1.61-4) unstable; urgency=low * Really correct previous bug! -- Mattia Monga Mon, 12 May 2003 18:57:03 +0200 sleuthkit (1.61-3) unstable; urgency=low * Missing $(shlibs:Depends) corrected -- Mattia Monga Mon, 05 May 2003 11:13:47 +0200 sleuthkit (1.61-2) unstable; urgency=low * Package taken while Lorenzo is waiting to become an official Debian mantainer -- Mattia Monga Thu, 17 Apr 2003 22:33:36 +0200 sleuthkit (1.61-1) unstable; urgency=low * new package release * changed the package name to sleuthkit -- Lorenzo Martignoni Tue, 15 Apr 2003 19:12:45 +0200 task (1.60-1) unstable; urgency=low * Initial Release. -- Lorenzo Martignoni Mon, 31 Mar 2003 23:04:51 +0200 debian/README.source0000644000000000000000000000047212250025624011346 0ustar * Notes about Quilt patch system * ---------------------------------- This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. See /usr/share/doc/quilt/README.source for a detailed explanation.