generated from clearbluejar/ghidra-python-vscode-devcontainer-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 22
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 #44 from clearbluejar/pytest
Pytest initial implementation
- Loading branch information
Showing
11 changed files
with
319 additions
and
24 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,45 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Lint Python Package | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install autopep8 flake8 pytest | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Install package | ||
run: | | ||
python -m pip install -e . | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=130 --statistics --ignore F405,F401,F403 | ||
- name: Lint with autopep8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
autopep8 -r . -d |
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,37 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Pytest Python Package In Devcontainer | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
image: ["latest", "10.1.5ghidra3.11python-bookworm"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Test with pytest on devcontainer | ||
uses: devcontainers/ci@v0.3 | ||
with: | ||
imageName: ghcr.io/clearbluejar/ghidra-python | ||
cacheFrom: ghcr.io/clearbluejar/ghidra-python | ||
imageTag: ${{matrix.image}} | ||
push: never | ||
runCmd: | | ||
pip install --upgrade pip | ||
# install package and testing | ||
pip install -e ".[testing]" | ||
# download data to shared test data | ||
git clone https://github.com/clearbluejar/ghidriff-test-data.git tests/data | ||
pytest -rA |
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,12 +1,13 @@ | ||
__version__ = '0.3.0' | ||
__version__ = '0.4.0' | ||
__author__ = 'clearbluejar' | ||
|
||
# Expose API | ||
from .ghidra_diff_engine import GhidraDiffEngine | ||
from .version_tracking_diff import VersionTrackingDiff | ||
from .simple_diff import SimpleDiff | ||
from .structural_graph_diff import StructualGraphDiff | ||
from .__main__ import get_parser, get_engine_classes | ||
|
||
__all__ = [ | ||
"GhidraDiffEngine", "SimpleDiff", "StructualGraphDiff", "VersionTrackingDiff" | ||
"GhidraDiffEngine", "SimpleDiff", "StructualGraphDiff", "VersionTrackingDiff", "get_parser", "get_engine_classes" | ||
] |
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 was deleted.
Oops, something went wrong.
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,127 @@ | ||
from pathlib import Path | ||
|
||
from ghidriff.ghidra_diff_engine import GhidraDiffEngine | ||
|
||
from ghidriff import get_parser, get_engine_classes, VersionTrackingDiff | ||
|
||
import requests | ||
import json | ||
import os | ||
|
||
SYMBOLS_DIR = 'symbols' | ||
BINS_DIR = 'bins' | ||
|
||
def get_chrome_headers() -> dict: | ||
|
||
headers = { | ||
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", | ||
"accept-language": "en-US,en;q=0.9", | ||
"cache-control": "no-cache", | ||
"pragma": "no-cache", | ||
"sec-ch-ua": '"Chromium";v="116", "Not)A;Brand";v="24", "Google Chrome";v="116"', | ||
"sec-ch-ua-mobile": "?0", | ||
"sec-ch-ua-platform": '"macOS"', | ||
"sec-fetch-dest": "document", | ||
"sec-fetch-mode": "navigate", | ||
"sec-fetch-site": "none", | ||
"sec-fetch-user": "?1", | ||
"upgrade-insecure-requests": "1" | ||
} | ||
|
||
return headers | ||
|
||
|
||
|
||
def test_diff_afd_cve_2023_21768(shared_datadir: Path): | ||
""" | ||
Tests end to end diff of CVE | ||
""" | ||
|
||
test_name = 'cve-2023-21768' | ||
output_path = shared_datadir / test_name | ||
output_path.mkdir(exist_ok=True, parents=True) | ||
symbols_path = shared_datadir / SYMBOLS_DIR | ||
bins_path = shared_datadir / BINS_DIR | ||
|
||
|
||
# setup bins | ||
|
||
old_bin_path = bins_path / 'afd.sys.x64.10.0.22621.1028' | ||
new_bin_path = bins_path / 'afd.sys.x64.10.0.22621.1415' | ||
|
||
# TODO figure out why these download are unreliable | ||
# for now just git clone ghidriff-test-data | ||
# old_bin_path = shared_datadir / 'afd.sys.x64.10.0.22621.1028' | ||
# old_url = 'https://msdl.microsoft.com/download/symbols/afd.sys/0C5C6994A8000/afd.sys' | ||
# new_bin_path = shared_datadir / 'afd.sys.x64.10.0.22621.1415' | ||
# new_url = 'https://msdl.microsoft.com/download/symbols/afd.sys/50989142A9000/afd.sys' | ||
|
||
# download binaries | ||
# download is unreliage | ||
# headers = get_chrome_headers() | ||
# old_bin_path.write_bytes(requests.get(old_url,headers=headers).content) | ||
# new_bin_path.write_bytes(requests.get(new_url,headers=headers).content) | ||
|
||
assert old_bin_path.exists() | ||
assert new_bin_path.exists() | ||
|
||
parser = get_parser() | ||
|
||
GhidraDiffEngine.add_ghidra_args_to_parser(parser) | ||
|
||
args = parser.parse_args(['-s', str(symbols_path), str(old_bin_path.absolute()),str(new_bin_path.absolute())]) | ||
|
||
engine_log_path = output_path / parser.get_default('log_path') | ||
|
||
binary_paths = args.old + [bin for sublist in args.new for bin in sublist] | ||
|
||
binary_paths = [Path(path) for path in binary_paths] | ||
|
||
if any([not path.exists() for path in binary_paths]): | ||
missing_bins = [f'{path.name}' for path in binary_paths if not path.exists()] | ||
raise FileNotFoundError(f"Missing Bins: {' '.join(missing_bins)}") | ||
|
||
project_name = f'{args.project_name}-{binary_paths[0].name}-{binary_paths[-1].name}' | ||
|
||
|
||
DiffEngine: GhidraDiffEngine = VersionTrackingDiff | ||
|
||
d: GhidraDiffEngine = DiffEngine(args=args, | ||
verbose=True, | ||
threaded=args.threaded, | ||
max_ram_percent=args.max_ram_percent, | ||
print_jvm_flags=args.print_flags, | ||
jvm_args=args.jvm_args, | ||
force_analysis=args.force_analysis, | ||
force_diff=args.force_diff, | ||
verbose_analysis=args.va, | ||
no_symbols=args.no_symbols, | ||
engine_log_path=engine_log_path, | ||
engine_log_level=args.log_level, | ||
engine_file_log_level=args.file_log_level, | ||
) | ||
|
||
d.setup_project(binary_paths, args.project_location, project_name, args.symbols_path) | ||
|
||
d.analyze_project() | ||
|
||
pdiff = d.diff_bins(old_bin_path, new_bin_path) | ||
pdiff_json = json.dumps(pdiff) | ||
|
||
d.validate_diff_json(pdiff_json) | ||
|
||
diff_name = f"{old_bin_path.name}-{new_bin_path.name}_diff" | ||
|
||
d.dump_pdiff_to_path(diff_name, | ||
pdiff, | ||
output_path, | ||
side_by_side=args.side_by_side, | ||
max_section_funcs=args.max_section_funcs, | ||
md_title=args.md_title) | ||
|
||
assert len(pdiff['functions']['modified']) == 10 | ||
assert len(pdiff['functions']['added']) == 28 | ||
assert len(pdiff['functions']['deleted']) == 0 | ||
|
||
func_name = "AfdNotifyRemoveIoCompletion" | ||
assert any([func_name in func['old']['name'] or func_name in func['new']['name'] for func in pdiff['functions']['modified'] ]) is True |
Empty file.
Oops, something went wrong.