Skip to content

Commit

Permalink
Changes for mapping Windows XP UsrClass.dat (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Feb 23, 2024
1 parent d4cbc54 commit 05ea811
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['38']
version: ['39']
container:
image: registry.fedoraproject.org/fedora:${{ matrix.version }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dfwinreg (20240210-1) unstable; urgency=low
dfwinreg (20240223-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <[email protected]> Sat, 10 Feb 2024 07:50:58 +0100
-- Log2Timeline maintainers <[email protected]> Fri, 23 Feb 2024 06:25:43 +0100
2 changes: 1 addition & 1 deletion dfwinreg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
provides read-only access to Windows Registry objects.
"""

__version__ = '20240210'
__version__ = '20240223'
4 changes: 3 additions & 1 deletion dfwinreg/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,17 @@ class WinRegistry(object):
'%UserProfile%\\NTUSER.DAT',
['\\AppEvents', '\\Console', '\\Control Panel', '\\Environment',
'\\Keyboard Layout', '\\Software']),
# Windows Vista and later UsrClass.dat mapping
WinRegistryFileMapping(
'HKEY_CURRENT_USER\\Software\\Classes',
'%UserProfile%\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat',
['\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion']),
# Windows 2000, XP and 2003 UsrClass.dat mapping
WinRegistryFileMapping(
'HKEY_CURRENT_USER\\Software\\Classes',
('%UserProfile%\\Local Settings\\Application Data\\Microsoft\\'
'Windows\\UsrClass.dat'),
[]),
['\\Software\\Microsoft\\Windows\\CurrentVersion']),
WinRegistryFileMapping(
'HKEY_LOCAL_MACHINE\\SAM',
'%SystemRoot%\\System32\\config\\SAM',
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dfwinreg
version = 20240210
version = 20240223
description = Digital Forensics Windows Registry (dfWinReg).
long_description = dfWinReg, or Digital Forensics Windows Registry, provides read-only access to Windows Registry objects. The goal of dfWinReg is to provide a generic interface for accessing Windows Registry objects that resembles the Registry key hierarchy as seen on a live Windows system.
long_description_content_type = text/plain
Expand Down

0 comments on commit 05ea811

Please sign in to comment.