Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9329fa5
Add supported targets page with an extension
Miauwkeru Jul 29, 2025
a78a215
Add the defaults for every type
Miauwkeru Jul 29, 2025
fe39c05
Remove supported_targets plugin in favor of a manual table
Miauwkeru Oct 8, 2025
2c5ce63
Add manual list of supported targets
Miauwkeru Oct 8, 2025
3e06b9b
Ignore generated plugins
Miauwkeru Oct 8, 2025
b1095bd
Cleanup document
Miauwkeru Oct 9, 2025
1ab7432
Apply suggestions from code review
Miauwkeru Oct 9, 2025
cdfe59e
Changed the `join us on github` url to refer to the dissect metapackage
Miauwkeru Dec 3, 2025
6e8be2e
Move supported-targets before the tutorial
Miauwkeru Dec 3, 2025
8c23b47
Make it clearer that dissect automatically selects the correct loader
Miauwkeru Dec 3, 2025
877ad64
Update loaders table
Miauwkeru Dec 10, 2025
8caa7e5
Update the documentation of the container formats
Miauwkeru Dec 3, 2025
0e6c1b9
Apply changes to the volume systems
Miauwkeru Dec 3, 2025
5b17098
Add updates to filesystem table
Miauwkeru Dec 10, 2025
5e680ec
Order operating systems based on class hierarchy
Miauwkeru Dec 10, 2025
0dc1b25
Add changes to supported child targets
Miauwkeru Dec 10, 2025
d624beb
Change the text to be more accessible
Miauwkeru Dec 15, 2025
a00fc6d
Apply suggestions from code review
Miauwkeru Jan 14, 2026
95b8d16
Remove too specific entries that are not relevant
Miauwkeru Jan 14, 2026
1eb9ff5
Add suggestions
Miauwkeru Jan 14, 2026
9822f65
Update all API `here` references to __type__ of their classes
Miauwkeru Jan 14, 2026
05564cb
Add documentation that containers are automatically selected
Miauwkeru Jan 14, 2026
914cc47
Add suggestion
Miauwkeru Jan 15, 2026
8fa7a0e
Suggest changes
Schamper Jan 15, 2026
48eed93
Update dissect.target project to main
Miauwkeru Jan 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@
api_dir = Path(__file__).parent / "api"

for dir_name in ["acquire/nop", "dissect/nop", "flow/nop"]:
api_dir.joinpath(dir_name).mkdir(parents=True, exist_ok=True)
api_dir.joinpath(dir_name, "index.rst").write_text(":orphan:\n\nTITLE\n#####\n")
if not (nop_dir := api_dir.joinpath(dir_name)).exists():
nop_dir.mkdir(parents=True, exist_ok=True)
nop_dir.joinpath("index.rst").write_text(":orphan:\n\nTITLE\n#####\n")

else:
extensions.append("autoapi.extension")
Expand Down
20 changes: 10 additions & 10 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Usage Example
-------------

One of the most prominent tools that Dissect offers is called *target-query*.
With this simple command you can, for example, extract all user accounts from a disk image:
With this simple command you can, for example, extract all user accounts from a disk image:

.. code-block:: console

$ target-query pc.img -f users

<windows/user ... name='systemprofile' ...>
<windows/user ... name='LocalService' ...>
<windows/user ... name='NetworkService' ...>
<windows/user ... name='Mr. Evil' ...>

To see what other useful artefacts you can query use ``-l``:

.. code-block:: console
Expand Down Expand Up @@ -80,31 +80,31 @@ Or you can start by taking a look at some community articles and videos:
:doc:`/resources/dissect-in-action` or
:doc:`/resources/talks-and-conferences` to begin with.

Get in touch, join us on `github <https://github.com/fox-it/dissect.target>`_!
Get in touch, join us on `GitHub <https://github.com/fox-it/dissect>`_!


.. toctree::
:hidden:

Home <self>

.. toctree::
:caption: Basics
:hidden:

Install </install>
Tutorial </tutorial>
/install
/supported-targets
/tutorial
Querying </target-query>
Shell </target-shell>
Mount </target-mount>
Acquire </acquire>
RDump </rdump>



.. toctree::
:caption: In-Depth
:hidden:

/tools/index
/projects/index
/usage/index
Expand Down
Loading