diff --git a/config/dpkg/changelog b/config/dpkg/changelog index 8d17d7732f..20593d1f90 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -plaso (20240317-1) unstable; urgency=low +plaso (20240409-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sun, 17 Mar 2024 10:07:18 +0100 + -- Log2Timeline maintainers Tue, 09 Apr 2024 16:16:41 +0200 diff --git a/config/linux/ubuntu_install_plaso.sh b/config/linux/ubuntu_install_plaso.sh index 1c97ab6334..cc4298d536 100755 --- a/config/linux/ubuntu_install_plaso.sh +++ b/config/linux/ubuntu_install_plaso.sh @@ -85,7 +85,7 @@ PYTHON_DEPENDENCIES="libbde-python3 # Additional dependencies for running tests, alphabetized, one per line. TEST_DEPENDENCIES="python3-distutils python3-fakeredis - python3-lib2to3 + python3-lib2to3 python3-mock python3-setuptools"; diff --git a/docs/sources/api/plaso.parsers.text_plugins.rst b/docs/sources/api/plaso.parsers.text_plugins.rst index 925c061cfb..e307c9ac35 100644 --- a/docs/sources/api/plaso.parsers.text_plugins.rst +++ b/docs/sources/api/plaso.parsers.text_plugins.rst @@ -236,6 +236,14 @@ plaso.parsers.text\_plugins.syslog module :undoc-members: :show-inheritance: +plaso.parsers.text\_plugins.teamviewer module +--------------------------------------------- + +.. automodule:: plaso.parsers.text_plugins.teamviewer + :members: + :undoc-members: + :show-inheritance: + plaso.parsers.text\_plugins.viminfo module ------------------------------------------ diff --git a/docs/sources/user/Parsers-and-plugins.md b/docs/sources/user/Parsers-and-plugins.md index b9db8c8c54..653ea20ebf 100644 --- a/docs/sources/user/Parsers-and-plugins.md +++ b/docs/sources/user/Parsers-and-plugins.md @@ -175,6 +175,7 @@ tango_android_tc | Parser for Tango on Android TC SQLite database files. twitter_android | Parser for Twitter on Android SQLite database files. twitter_ios | Parser for Twitter on iOS 8 and later SQLite database (twitter.db) files. windows_eventtranscript | Parser for Windows diagnosis EventTranscript SQLite database (EventTranscript.db) files. +windows_push_notification | Parser for Windows 10 push notification SQLite database (wpndatabase.db) files. windows_timeline | Parser for Windows 10 timeline SQLite database (ActivitiesCache.db) files. zeitgeist | Parser for Zeitgeist activity SQLite database files. @@ -211,7 +212,9 @@ snort_fastlog | Parser for Snort3/Suricata fast-log alert log (fast.log) files. sophos_av | Parser for Sophos anti-virus log file (SAV.txt) files. syslog | Parser for System log (syslog) files. syslog_traditional | Parser for Traditional system log (syslog) files. -teamviewer | Parser for TeamViewer log files. +teamviewer_application_log | Parser for TeamViewer application log file parser.. +teamviewer_connections_incoming | Parser for TeamViewer connections_incoming.txt log files. +teamviewer_connections_outgoing | Parser for TeamViewer connections.txt log files. viminfo | Parser for Viminfo files. vsftpd | Parser for vsftpd log files. winfirewall | Parser for Windows Firewall log files. @@ -273,7 +276,7 @@ mactime | bodyfile webhist | binary_cookies, chrome_cache, chrome_preferences, esedb/msie_webcache, firefox_cache, java_idx, msiecf, opera_global, opera_typed_history, plist/safari_history, sqlite/chrome_8_history, sqlite/chrome_17_cookies, sqlite/chrome_27_history, sqlite/chrome_66_cookies, sqlite/chrome_autofill, sqlite/chrome_extension_activity, sqlite/firefox_2_cookies, sqlite/firefox_10_cookies, sqlite/firefox_downloads, sqlite/firefox_history, sqlite/safari_historydb win7 | custom_destinations, esedb/file_history, esedb/user_access_logging, olecf/olecf_automatic_destinations, recycle_bin, text/powershell_transcript, winevtx, win_gen, winpca_db0, winpca_dic win7_slow | esedb, mft, win7 -win_gen | bencode, czip/oxml, filestat, lnk, mcafee_protection, olecf, pe, prefetch, sqlite/google_drive, sqlite/skype, symantec_scanlog, text/gdrive_synclog, text/sccm, text/setupapi, text/skydrive_log_v1, text/skydrive_log_v2, text/winfirewall, usnjrnl, webhist, winjob, winreg +win_gen | bencode, czip/oxml, filestat, lnk, mcafee_protection, olecf, pe, prefetch, sqlite/google_drive, sqlite/skype, symantec_scanlog, text/gdrive_synclog, text/sccm, text/setupapi, text/skydrive_log_v1, text/skydrive_log_v2, text/teamviewer_application_log, text/teamviewer_connections_incoming, text/teamviewer_connections_outgoing, text/winfirewall, usnjrnl, webhist, winjob, winreg winxp | recycle_bin_info2, rplog, win_gen, winevt winxp_slow | esedb, mft, winxp diff --git a/plaso/__init__.py b/plaso/__init__.py index e24a1996f5..7cda0dd62d 100644 --- a/plaso/__init__.py +++ b/plaso/__init__.py @@ -6,4 +6,4 @@ of log2timeline. """ -__version__ = '20240317' +__version__ = '20240409' diff --git a/setup.cfg b/setup.cfg index 572a7bd66b..7b42909c22 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = plaso -version = 20240317 +version = 20240409 description = Plaso (log2timeline) - Super timeline all the things long_description = Plaso (log2timeline) is a framework to create super timelines. Its purpose is to extract timestamps from various files found on typical computer systems and aggregate them. long_description_content_type = text/plain