dissect.database 0.1.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dissect/database/__init__.py +5 -0
- dissect/database/bsd/__init__.py +5 -0
- dissect/database/bsd/c_db.py +598 -0
- dissect/database/bsd/c_db.pyi +558 -0
- dissect/database/bsd/db.py +268 -0
- dissect/database/bsd/tools/__init__.py +0 -0
- dissect/database/bsd/tools/c_rpm.py +465 -0
- dissect/database/bsd/tools/c_rpm.pyi +460 -0
- dissect/database/bsd/tools/rpm.py +243 -0
- dissect_database-0.1.dev2.dist-info/METADATA +78 -0
- dissect_database-0.1.dev2.dist-info/RECORD +15 -0
- dissect_database-0.1.dev2.dist-info/WHEEL +5 -0
- dissect_database-0.1.dev2.dist-info/licenses/COPYRIGHT +5 -0
- dissect_database-0.1.dev2.dist-info/licenses/LICENSE +661 -0
- dissect_database-0.1.dev2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dissect.database
|
|
3
|
+
Version: 0.1.dev2
|
|
4
|
+
Summary: A Dissect module implementing parsers for various database formats
|
|
5
|
+
Author-email: Dissect Team <dissect@fox-it.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: homepage, https://dissect.tools
|
|
8
|
+
Project-URL: documentation, https://docs.dissect.tools/en/latest/projects/dissect.database
|
|
9
|
+
Project-URL: repository, https://github.com/fox-it/dissect.database
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Internet :: Log Analysis
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
18
|
+
Classifier: Topic :: Security
|
|
19
|
+
Classifier: Topic :: Utilities
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
License-File: COPYRIGHT
|
|
24
|
+
Requires-Dist: dissect.cstruct<5,>=4
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: dissect.cstruct<5.0.dev,>=4.0.dev; extra == "dev"
|
|
27
|
+
Requires-Dist: dissect.util<4.0.dev,>=3.5.dev; extra == "dev"
|
|
28
|
+
Dynamic: license-file
|
|
29
|
+
|
|
30
|
+
# dissect.database
|
|
31
|
+
|
|
32
|
+
A Dissect module implementing parsers for various database formats. For more information,
|
|
33
|
+
please see [the documentation](https://docs.dissect.tools/en/latest/projects/dissect.database/index.html).
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
`dissect.database` is available on [PyPI](https://pypi.org/project/dissect.database/).
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install dissect.database
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
This module is also automatically installed if you install the `dissect` package.
|
|
44
|
+
|
|
45
|
+
## Build and test instructions
|
|
46
|
+
|
|
47
|
+
This project uses `tox` to build source and wheel distributions. Run the following command from the root folder to build
|
|
48
|
+
these:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
tox -e build
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
The build artifacts can be found in the `dist/` directory.
|
|
55
|
+
|
|
56
|
+
`tox` is also used to run linting and unit tests in a self-contained environment. To run both linting and unit tests
|
|
57
|
+
using the default installed Python version, run:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
tox
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
For a more elaborate explanation on how to build and test the project, please see [the
|
|
64
|
+
documentation](https://docs.dissect.tools/en/latest/contributing/tooling.html).
|
|
65
|
+
|
|
66
|
+
## Contributing
|
|
67
|
+
|
|
68
|
+
The Dissect project encourages any contribution to the codebase. To make your contribution fit into the project, please
|
|
69
|
+
refer to [the development guide](https://docs.dissect.tools/en/latest/contributing/developing.html).
|
|
70
|
+
|
|
71
|
+
## Copyright and license
|
|
72
|
+
|
|
73
|
+
Dissect is released as open source by Fox-IT (<https://www.fox-it.com>) part of NCC Group Plc
|
|
74
|
+
(<https://www.nccgroup.com>).
|
|
75
|
+
|
|
76
|
+
Developed by the Dissect Team (<dissect@fox-it.com>) and made available at <https://github.com/fox-it/dissect>.
|
|
77
|
+
|
|
78
|
+
License terms: AGPL3 (<https://www.gnu.org/licenses/agpl-3.0.html>). For more information, see the LICENSE file.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
dissect/database/__init__.py,sha256=6koD6y5cWvde8r4AOtc0VeGsj49slcxUyL8BXXPdYgk,93
|
|
2
|
+
dissect/database/bsd/__init__.py,sha256=6koD6y5cWvde8r4AOtc0VeGsj49slcxUyL8BXXPdYgk,93
|
|
3
|
+
dissect/database/bsd/c_db.py,sha256=YM3nwWO6U_s2Typr9OXbPCjquLCKJxeroJdG9FKVNVw,29314
|
|
4
|
+
dissect/database/bsd/c_db.pyi,sha256=VopMrd4a41T7A4n0M_ZYgPNIao3kXy0gW-fpnx5volk,20560
|
|
5
|
+
dissect/database/bsd/db.py,sha256=F8rT2_Ieyd07Pad4MmSD7fBTvmOFcFRmBljmXwmNjLM,8625
|
|
6
|
+
dissect/database/bsd/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
dissect/database/bsd/tools/c_rpm.py,sha256=yI9JIerMRPCsO-QZRXzFmY4sAo1fvdwYvLL0SXlrWoY,32711
|
|
8
|
+
dissect/database/bsd/tools/c_rpm.pyi,sha256=a22dZ8eMGPnj9rsKWjT7ol82Q6OmEcTgWsLNBbBJ3IM,15116
|
|
9
|
+
dissect/database/bsd/tools/rpm.py,sha256=Wpmhfr4w4_TTFpp94o1RCcjPkwrHxyebIUz-P03r3OE,7699
|
|
10
|
+
dissect_database-0.1.dev2.dist-info/licenses/COPYRIGHT,sha256=TU_2cpcOCOpvdW58Sr_GA7oKfWAFa6onyAPPKdDP9lg,303
|
|
11
|
+
dissect_database-0.1.dev2.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
|
12
|
+
dissect_database-0.1.dev2.dist-info/METADATA,sha256=AjB6PsRpKiufi6kbcECi9AKw45vBQqfRccH1jfuJXQ0,2863
|
|
13
|
+
dissect_database-0.1.dev2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
+
dissect_database-0.1.dev2.dist-info/top_level.txt,sha256=Mn-CQzEYsAbkxrUI0TnplHuXnGVKzxpDw_po_sXpvv4,8
|
|
15
|
+
dissect_database-0.1.dev2.dist-info/RECORD,,
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Dissect is released as open source by Fox-IT (https://www.fox-it.com) part of NCC Group Plc (https://www.nccgroup.com)
|
|
2
|
+
|
|
3
|
+
Developed by the Dissect Team (dissect@fox-it.com) and made available at https://github.com/fox-it/dissect.database
|
|
4
|
+
|
|
5
|
+
License terms: AGPL3 (https://www.gnu.org/licenses/agpl-3.0.html)
|