Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
Empty file modified .github/workflows/dissect-ci.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified COPYRIGHT
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified MANIFEST.in
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions dissect/executable/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from dissect.executable.elf import ELF
from dissect.executable.pdb import PDB

__all__ = [
"ELF",
"PDB",
]
Empty file modified dissect/executable/elf/__init__.py
100644 → 100755
Empty file.
Empty file modified dissect/executable/elf/c_elf.py
100644 → 100755
Empty file.
Empty file modified dissect/executable/elf/elf.py
100644 → 100755
Empty file.
Empty file modified dissect/executable/exception.py
100644 → 100755
Empty file.
Empty file modified dissect/executable/macho/__init__.py
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions dissect/executable/pdb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from dissect.executable.pdb.pdb import PDB

__all__ = [
"PDB",
]
Empty file.
Loading