.gitattributes
.gitignore
.gitmodules
.justfile
.pre-commit-config.yaml
CHANGELOG.md
CITATION.cff
LICENSE.txt
README.md
pyproject.toml
requirements.txt
.devcontainer/Dockerfile
.devcontainer/devcontainer.json
.github/CONTRIBUTING.md
.github/capa-explorer-logo.png
.github/dependabot.yml
.github/flake8.ini
.github/icon.png
.github/logo.pdf
.github/logo.png
.github/pull_request_template.md
.github/ruff.toml
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/mypy/mypy.ini
.github/pyinstaller/logo.ico
.github/pyinstaller/pyinstaller.spec
.github/pyinstaller/hooks/hook-vivisect.py
.github/workflows/build.yml
.github/workflows/changelog.yml
.github/workflows/pip-audit.yml
.github/workflows/publish.yml
.github/workflows/scorecard.yml
.github/workflows/tag.yml
.github/workflows/tests.yml
.github/workflows/web-deploy.yml
.github/workflows/web-release.yml
.github/workflows/web-tests.yml
capa/__init__.py
capa/engine.py
capa/exceptions.py
capa/helpers.py
capa/loader.py
capa/main.py
capa/optimizer.py
capa/perf.py
capa/version.py
capa/capabilities/__init__.py
capa/capabilities/common.py
capa/capabilities/dynamic.py
capa/capabilities/static.py
capa/features/__init__.py
capa/features/address.py
capa/features/basicblock.py
capa/features/common.py
capa/features/file.py
capa/features/insn.py
capa/features/com/__init__.py
capa/features/com/classes.py
capa/features/com/interfaces.py
capa/features/extractors/__init__.py
capa/features/extractors/base_extractor.py
capa/features/extractors/common.py
capa/features/extractors/dotnetfile.py
capa/features/extractors/elf.py
capa/features/extractors/elffile.py
capa/features/extractors/helpers.py
capa/features/extractors/loops.py
capa/features/extractors/null.py
capa/features/extractors/pefile.py
capa/features/extractors/strings.py
capa/features/extractors/binexport2/__init__.py
capa/features/extractors/binexport2/basicblock.py
capa/features/extractors/binexport2/binexport2_pb2.py
capa/features/extractors/binexport2/binexport2_pb2.pyi
capa/features/extractors/binexport2/extractor.py
capa/features/extractors/binexport2/file.py
capa/features/extractors/binexport2/function.py
capa/features/extractors/binexport2/helpers.py
capa/features/extractors/binexport2/insn.py
capa/features/extractors/binexport2/arch/__init__.py
capa/features/extractors/binexport2/arch/arm/__init__.py
capa/features/extractors/binexport2/arch/arm/helpers.py
capa/features/extractors/binexport2/arch/arm/insn.py
capa/features/extractors/binexport2/arch/intel/__init__.py
capa/features/extractors/binexport2/arch/intel/helpers.py
capa/features/extractors/binexport2/arch/intel/insn.py
capa/features/extractors/binja/__init__.py
capa/features/extractors/binja/basicblock.py
capa/features/extractors/binja/extractor.py
capa/features/extractors/binja/file.py
capa/features/extractors/binja/find_binja_api.py
capa/features/extractors/binja/function.py
capa/features/extractors/binja/global_.py
capa/features/extractors/binja/helpers.py
capa/features/extractors/binja/insn.py
capa/features/extractors/cape/__init__.py
capa/features/extractors/cape/call.py
capa/features/extractors/cape/extractor.py
capa/features/extractors/cape/file.py
capa/features/extractors/cape/global_.py
capa/features/extractors/cape/helpers.py
capa/features/extractors/cape/models.py
capa/features/extractors/cape/process.py
capa/features/extractors/cape/thread.py
capa/features/extractors/dnfile/__init__.py
capa/features/extractors/dnfile/extractor.py
capa/features/extractors/dnfile/file.py
capa/features/extractors/dnfile/function.py
capa/features/extractors/dnfile/helpers.py
capa/features/extractors/dnfile/insn.py
capa/features/extractors/dnfile/types.py
capa/features/extractors/drakvuf/call.py
capa/features/extractors/drakvuf/extractor.py
capa/features/extractors/drakvuf/file.py
capa/features/extractors/drakvuf/global_.py
capa/features/extractors/drakvuf/helpers.py
capa/features/extractors/drakvuf/models.py
capa/features/extractors/drakvuf/process.py
capa/features/extractors/drakvuf/thread.py
capa/features/extractors/ghidra/__init__.py
capa/features/extractors/ghidra/basicblock.py
capa/features/extractors/ghidra/extractor.py
capa/features/extractors/ghidra/file.py
capa/features/extractors/ghidra/function.py
capa/features/extractors/ghidra/global_.py
capa/features/extractors/ghidra/helpers.py
capa/features/extractors/ghidra/insn.py
capa/features/extractors/ida/__init__.py
capa/features/extractors/ida/basicblock.py
capa/features/extractors/ida/extractor.py
capa/features/extractors/ida/file.py
capa/features/extractors/ida/function.py
capa/features/extractors/ida/global_.py
capa/features/extractors/ida/helpers.py
capa/features/extractors/ida/idalib.py
capa/features/extractors/ida/insn.py
capa/features/extractors/viv/__init__.py
capa/features/extractors/viv/basicblock.py
capa/features/extractors/viv/extractor.py
capa/features/extractors/viv/file.py
capa/features/extractors/viv/function.py
capa/features/extractors/viv/global_.py
capa/features/extractors/viv/helpers.py
capa/features/extractors/viv/indirect_calls.py
capa/features/extractors/viv/insn.py
capa/features/extractors/vmray/__init__.py
capa/features/extractors/vmray/call.py
capa/features/extractors/vmray/extractor.py
capa/features/extractors/vmray/file.py
capa/features/extractors/vmray/global_.py
capa/features/extractors/vmray/models.py
capa/features/freeze/__init__.py
capa/features/freeze/features.py
capa/ghidra/README.md
capa/ghidra/__init__.py
capa/ghidra/capa_explorer.py
capa/ghidra/capa_ghidra.py
capa/ghidra/helpers.py
capa/ida/__init__.py
capa/ida/helpers.py
capa/ida/plugin/README.md
capa/ida/plugin/__init__.py
capa/ida/plugin/cache.py
capa/ida/plugin/capa_explorer.py
capa/ida/plugin/error.py
capa/ida/plugin/extractor.py
capa/ida/plugin/form.py
capa/ida/plugin/hooks.py
capa/ida/plugin/icon.py
capa/ida/plugin/item.py
capa/ida/plugin/model.py
capa/ida/plugin/proxy.py
capa/ida/plugin/view.py
capa/render/__init__.py
capa/render/default.py
capa/render/json.py
capa/render/result_document.py
capa/render/utils.py
capa/render/verbose.py
capa/render/vverbose.py
capa/render/proto/__init__.py
capa/render/proto/capa.proto
capa/render/proto/capa_pb2.py
capa/render/proto/capa_pb2.pyi
capa/rules/__init__.py
capa/rules/cache.py
doc/capa_quickstart.pdf
doc/faq.md
doc/installation.md
doc/limitations.md
doc/release.md
doc/rules.md
doc/usage.md
doc/img/approve.png
doc/img/capa_web_explorer.png
doc/img/explorer_condensed.png
doc/img/explorer_expanded.png
doc/img/ghidra_backend_logo.png
doc/img/ghidra_headless_analyzer.png
doc/img/ghidra_script_mngr_output.png
doc/img/ghidra_script_mngr_rules.png
doc/img/ghidra_script_mngr_verbosity.png
doc/img/rulegen_expanded.png
doc/img/changelog/flirt-ignore.png
doc/img/changelog/tab.gif
flare_capa.egg-info/PKG-INFO
flare_capa.egg-info/SOURCES.txt
flare_capa.egg-info/dependency_links.txt
flare_capa.egg-info/entry_points.txt
flare_capa.egg-info/requires.txt
flare_capa.egg-info/top_level.txt
scripts/bulk-process.py
scripts/cache-ruleset.py
scripts/capa-as-library.py
scripts/capa2sarif.py
scripts/capa2yara.py
scripts/capafmt.py
scripts/compare-backends.py
scripts/detect-backends.py
scripts/detect-binexport2-capabilities.py
scripts/detect-elf-os.py
scripts/detect_duplicate_features.py
scripts/import-to-bn.py
scripts/import-to-ida.py
scripts/inspect-binexport2.py
scripts/lint.py
scripts/linter-data.json
scripts/match-function-id.py
scripts/minimize_vmray_results.py
scripts/profile-memory.py
scripts/profile-time.py
scripts/proto-from-results.py
scripts/proto-to-results.py
scripts/setup-linter-dependencies.py
scripts/show-capabilities-by-function.py
scripts/show-features.py
scripts/show-unused-features.py
sigs/1_flare_msvc_rtf_32_64.sig
sigs/2_flare_msvc_atlmfc_32_64.sig
sigs/3_flare_common_libs.sig
sigs/README.md
tests/conftest.py
tests/fixtures.py
tests/test_binexport_accessors.py
tests/test_binexport_features.py
tests/test_binja_features.py
tests/test_capabilities.py
tests/test_cape_features.py
tests/test_cape_model.py
tests/test_dnfile_features.py
tests/test_dotnetfile_features.py
tests/test_drakvuf_features.py
tests/test_drakvuf_models.py
tests/test_dynamic_span_of_calls_scope.py
tests/test_elffile_features.py
tests/test_engine.py
tests/test_extractor_hashing.py
tests/test_fmt.py
tests/test_freeze_dynamic.py
tests/test_freeze_static.py
tests/test_function_id.py
tests/test_ghidra_features.py
tests/test_helpers.py
tests/test_ida_features.py
tests/test_main.py
tests/test_match.py
tests/test_optimizer.py
tests/test_os_detection.py
tests/test_pefile_features.py
tests/test_proto.py
tests/test_render.py
tests/test_result_document.py
tests/test_rule_cache.py
tests/test_rules.py
tests/test_rules_insn_scope.py
tests/test_scripts.py
tests/test_strings.py
tests/test_viv_features.py
tests/test_vmray_features.py
tests/test_vmray_model.py
web/explorer/.eslintrc.cjs
web/explorer/.gitignore
web/explorer/.prettierrc.json
web/explorer/DEVELOPMENT.md
web/explorer/README.md
web/explorer/index.html
web/explorer/jsconfig.json
web/explorer/package-lock.json
web/explorer/package.json
web/explorer/vite.config.js
web/explorer/vitest.config.js
web/explorer/public/favicon.ico
web/explorer/releases/CHANGELOG.md
web/explorer/releases/capa-explorer-web-v1.0.0-6a2330c.zip
web/explorer/src/App.vue
web/explorer/src/main.js
web/explorer/src/assets/main.css
web/explorer/src/assets/images/icon.png
web/explorer/src/assets/images/logo-full.png
web/explorer/src/components/BannerHeader.vue
web/explorer/src/components/DescriptionPanel.vue
web/explorer/src/components/FunctionCapabilities.vue
web/explorer/src/components/MetadataPanel.vue
web/explorer/src/components/NamespaceChart.vue
web/explorer/src/components/NavBar.vue
web/explorer/src/components/ProcessCapabilities.vue
web/explorer/src/components/RuleMatchesTable.vue
web/explorer/src/components/SettingsPanel.vue
web/explorer/src/components/UploadOptions.vue
web/explorer/src/components/columns/RuleColumn.vue
web/explorer/src/components/misc/LibraryTag.vue
web/explorer/src/components/misc/VTIcon.vue
web/explorer/src/composables/useRdocLoader.js
web/explorer/src/router/index.js
web/explorer/src/store/rdocStore.js
web/explorer/src/tests/rdocParser.test.js
web/explorer/src/utils/fileUtils.js
web/explorer/src/utils/rdocParser.js
web/explorer/src/utils/urlHelpers.js
web/explorer/src/views/AnalysisView.vue
web/explorer/src/views/ImportView.vue
web/explorer/src/views/NotFoundView.vue
web/public/.gitignore
web/public/index.html
web/public/css/bootstrap-5.3.3.min.css
web/public/img/capa-default-pma0101.png
web/public/img/capa-rule-create-socket.png
web/public/img/capa-vv-pma0101.png
web/public/img/capa.gif
web/public/img/icon.ico
web/public/img/icon.png
web/public/img/logo.png
web/public/js/bootstrap-5.3.3.bundle.min.js
web/rules/.gitignore
web/rules/README.md
web/rules/justfile
web/rules/requirements.txt
web/rules/public/css/bootstrap-5.3.3.min.css
web/rules/public/css/pagefind-modular-ui.css
web/rules/public/css/pagefind-ui.css
web/rules/public/css/poppins.css
web/rules/public/css/style.css
web/rules/public/img/favicon.ico
web/rules/public/img/favicon.png
web/rules/public/img/logo.png
web/rules/public/js/bootstrap-5.3.3.bundle.min.js
web/rules/public/js/jquery-3.5.1.slim.min.js
web/rules/public/js/popper-2.9.2.min.js
web/rules/scripts/build_root.py
web/rules/scripts/build_rules.py
web/rules/scripts/modified-dates.py