-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #887 from volatilityfoundation/release/v2.4.0
Prepare for the 2.4.0 release, the major version has jumped a few numbers for compatibility, but this is the next release including the following: New plugins linux.mountinfo linux.psaux windows.devicetree windows.joblinks windows.ldrmodules windows.mbrscan windows.mftscan windows.sessions Introduced the concept of modules and module requirements Unified symbol handling and ISF file caching between OS versions Better QEVM support (fixed the QEMU PCI hole) Exposed an API for automatic PDB symbol table use Improved contributed documentation Various bug fixes and changes across the codebase
- Loading branch information
Showing
144 changed files
with
6,466 additions
and
1,064 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Test Volatility3 | ||
on: [push, pull_request] | ||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: ["3.6"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install Cmake | ||
pip install setuptools wheel | ||
pip install -r ./test/requirements-testing.txt | ||
- name: Build PyPi packages | ||
run: | | ||
python setup.py sdist --formats=gztar,zip | ||
python setup.py bdist_wheel | ||
- name: Download images | ||
run: | | ||
curl -sLO "https://downloads.volatilityfoundation.org/volatility3/images/linux-sample-1.bin.gz" | ||
gunzip linux-sample-1.bin.gz | ||
curl -sLO "https://downloads.volatilityfoundation.org/volatility3/images/win-xp-laptop-2005-06-25.img.gz" | ||
gunzip win-xp-laptop-2005-06-25.img.gz | ||
- name: Download and Extract symbols | ||
run: | | ||
cd ./volatility3/symbols | ||
curl -sLO https://downloads.volatilityfoundation.org/volatility3/symbols/linux.zip | ||
unzip linux.zip | ||
cd - | ||
- name: Testing... | ||
run: | | ||
py.test ./test/test_volatility.py --volatility=vol.py --image win-xp-laptop-2005-06-25.img -k test_windows -v | ||
py.test ./test/test_volatility.py --volatility=vol.py --image linux-sample-1.bin -k test_linux -v | ||
- name: Clean up post-test | ||
run: | | ||
rm -rf *.lime | ||
rm -rf *.img | ||
cd volatility3/symbols | ||
rm -rf linux | ||
rm -rf linux.zip | ||
cd - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
prune development | ||
include * .* | ||
include doc/make.bat doc/Makefile | ||
include doc/make.bat doc/Makefile doc/requirements.txt | ||
recursive-include doc/source * | ||
recursive-include volatility3 *.json | ||
recursive-exclude doc/source volatility3.*.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# These packages are required for building the documentation. | ||
sphinx>=1.8.2 | ||
sphinx>=4.0.0 | ||
sphinx_autodoc_typehints>=1.4.0 | ||
sphinx-rtd-theme>=0.4.3 | ||
sphinx-rtd-theme>=0.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Writing Plugins | ||
=============== | ||
|
||
.. toctree:: | ||
|
||
simple-plugin | ||
complex-plugin | ||
using-as-a-library |
Oops, something went wrong.