-
Notifications
You must be signed in to change notification settings - Fork 691
add capa-diff for comparing capability deltas between result docs #2959
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
Open
akshat4703
wants to merge
2
commits into
mandiant:master
Choose a base branch
from
akshat4703:akshat/capa-diff
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+129
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,121 @@ | ||
| #!/usr/bin/env python3 | ||
| # Copyright 2026 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| """ | ||
| capa-diff.py | ||
|
|
||
| Compare capabilities between two capa JSON result documents. | ||
|
|
||
| Example: | ||
|
|
||
| $ capa --json old.exe > old.json | ||
| $ capa --json new.exe > new.json | ||
| $ python scripts/capa-diff.py old.json new.json | ||
| added capabilities: 2 | ||
| + anti-debug via timeout | ||
| + inject process | ||
| removed capabilities: 1 | ||
| - check for mutex | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| import json | ||
| import sys | ||
| import argparse | ||
| from pathlib import Path | ||
|
|
||
| import capa.render.utils as rutils | ||
| import capa.render.default as rdefault | ||
| import capa.render.result_document as rd | ||
|
|
||
|
|
||
| def _parse_args(argv: list[str]) -> argparse.Namespace: | ||
| parser = argparse.ArgumentParser(description="Compare capabilities in two capa JSON result documents.") | ||
| parser.add_argument("old", type=Path, help="path to older/baseline capa JSON result document") | ||
| parser.add_argument("new", type=Path, help="path to newer/target capa JSON result document") | ||
| parser.add_argument( | ||
| "--format", | ||
| dest="output_format", | ||
| choices=("text", "json"), | ||
| default="text", | ||
| help="render output as text or json (default: text)", | ||
| ) | ||
| parser.add_argument( | ||
| "--include-subscope-rules", | ||
| action="store_true", | ||
| help="include rules that only matched as subrule references", | ||
| ) | ||
| return parser.parse_args(argv) | ||
|
|
||
|
|
||
| def _load_result_document(path: Path) -> rd.ResultDocument: | ||
| return rd.ResultDocument.model_validate_json(path.read_text(encoding="utf-8")) | ||
|
|
||
|
|
||
| def _collect_capabilities(doc: rd.ResultDocument, include_subscope_rules: bool = False) -> dict[str, dict[str, object]]: | ||
| hidden = set() | ||
| if not include_subscope_rules: | ||
| hidden = rdefault.find_subrule_matches(doc) | ||
|
|
||
| capabilities: dict[str, dict[str, object]] = {} | ||
| for rule in rutils.capability_rules(doc): | ||
| if rule.meta.name in hidden: | ||
| continue | ||
|
|
||
| capabilities[rule.meta.name] = { | ||
| "name": rule.meta.name, | ||
| "namespace": rule.meta.namespace, | ||
| "match_count": len(rule.matches), | ||
| } | ||
| return capabilities | ||
|
|
||
|
|
||
| def _render_text(added: list[dict[str, object]], removed: list[dict[str, object]]) -> str: | ||
| lines = [f"added capabilities: {len(added)}"] | ||
| for capability in added: | ||
| lines.append(f" + {capability['name']}") | ||
|
|
||
| lines.append(f"removed capabilities: {len(removed)}") | ||
| for capability in removed: | ||
| lines.append(f" - {capability['name']}") | ||
|
|
||
| return "\n".join(lines) | ||
|
|
||
|
|
||
| def main(argv: list[str] | None = None) -> int: | ||
| if argv is None: | ||
| argv = sys.argv[1:] | ||
|
|
||
| args = _parse_args(argv) | ||
| old_doc = _load_result_document(args.old) | ||
| new_doc = _load_result_document(args.new) | ||
|
|
||
| old_caps = _collect_capabilities(old_doc, include_subscope_rules=args.include_subscope_rules) | ||
| new_caps = _collect_capabilities(new_doc, include_subscope_rules=args.include_subscope_rules) | ||
|
|
||
| added = sorted((new_caps[name] for name in (set(new_caps) - set(old_caps))), key=lambda c: c["name"]) | ||
| removed = sorted((old_caps[name] for name in (set(old_caps) - set(new_caps))), key=lambda c: c["name"]) | ||
|
|
||
| if args.output_format == "json": | ||
| print(json.dumps({"added": added, "removed": removed}, indent=2)) | ||
| else: | ||
| print(_render_text(added, removed)) | ||
|
|
||
| return 0 | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| sys.exit(main()) | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For better type safety and code clarity, consider using a
TypedDictfor the structure of a capability. This makes the code easier to understand and maintain, as it explicitly defines the shape of the dictionary. This also allows for more precise type hints in function signatures.