Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### New Features

- main: add GitHub, documentation, and issue reporting links to CLI help text @Xavrir #1686
- main: add verbosity hint to CLI help epilog @Xavrir #1686
Comment on lines +7 to +8
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please collapse into a single entry.

- ghidra: support PyGhidra @mike-hunhoff #2788
- vmray: extract number features from whitelisted void_ptr parameters (hKey, hKeyRoot) @adeboyedn #2835

Expand Down
6 changes: 6 additions & 0 deletions capa/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,12 @@ def main(argv: Optional[list[str]] = None):

filter rules by meta fields, e.g. rule name or namespace
capa -t "create TCP socket" suspicious.exe

Use -v/--verbose and -vv/--vverbose for increasingly detailed output.

GitHub: https://github.com/mandiant/capa
Documentation: https://github.com/mandiant/capa/tree/master/doc
Report issues: https://github.com/mandiant/capa/issues
""")

parser = argparse.ArgumentParser(
Expand Down
Loading