Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit for PDB #17

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
sud0woodo marked this conversation as resolved.
Show resolved Hide resolved
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