mirror of
https://github.com/mandiant/capa.git
synced 2025-12-07 13:20:36 -08:00
Replace the header from source code files using the following script:
```Python
for dir_path, dir_names, file_names in os.walk("capa"):
for file_name in file_names:
# header are only in `.py` and `.toml` files
if file_name[-3:] not in (".py", "oml"):
continue
file_path = f"{dir_path}/{file_name}"
f = open(file_path, "rb+")
content = f.read()
m = re.search(OLD_HEADER, content)
if not m:
continue
print(f"{file_path}: {m.group('year')}")
content = content.replace(m.group(0), NEW_HEADER % m.group("year"))
f.seek(0)
f.write(content)
```
Some files had the copyright headers inside a `"""` comment and needed
manual changes before applying the script. `hook-vivisect.py` and
`pyinstaller.spec` didn't include the license in the header and also
needed manual changes.
The old header had the confusing sentence `All rights reserved`, which
does not make sense for an open source license. Replace the header by
the default Google header that corrects this issue and keep capa
consistent with other Google projects.
Adapt the linter to work with the new header.
Replace also the copyright text in the `web/public/index.html` file for
consistency.
134 lines
4.3 KiB
Python
134 lines
4.3 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2021 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.
|
|
|
|
"""
|
|
match-function-id
|
|
|
|
Show the names of functions as recognized by the function identification subsystem.
|
|
This can help identify library functions statically linked into a program,
|
|
such as when triaging false positive matches in capa rules.
|
|
|
|
Example::
|
|
|
|
$ python scripts/match-function-id.py --signature sigs/vc6.pat.gz /tmp/suspicious.dll_
|
|
0x44cf30: ?GetPdbDll@@YAPAUHINSTANCE__@@XZ
|
|
0x44bb20: ?_strlen_priv@@YAIPBD@Z
|
|
0x44b6b0: ?invoke_main@@YAHXZ
|
|
0x44a5d0: ?find_pe_section@@YAPAU_IMAGE_SECTION_HEADER@@QAEI@Z
|
|
0x44a690: ?is_potentially_valid_image_base@@YA_NQAX@Z
|
|
0x44cbe0: ___get_entropy
|
|
0x44a4a0: __except_handler4
|
|
0x44b3d0: ?pre_cpp_initialization@@YAXXZ
|
|
0x44b2e0: ?pre_c_initialization@@YAHXZ
|
|
0x44b3c0: ?post_pgo_initialization@@YAHXZ
|
|
0x420156: ?
|
|
0x420270: ?
|
|
0x430dcd: ?
|
|
0x44d930: __except_handler4_noexcept
|
|
0x41e960: ?
|
|
0x44a1e0: @_RTC_AllocaHelper@12
|
|
0x44ba90: ?_getMemBlockDataString@@YAXPAD0PBDI@Z
|
|
0x44a220: @_RTC_CheckStackVars2@12
|
|
0x44a790: ___scrt_dllmain_after_initialize_c
|
|
0x44a7d0: ___scrt_dllmain_before_initialize_c
|
|
0x44a800: ___scrt_dllmain_crt_thread_attach
|
|
0x44a860: ___scrt_dllmain_exception_filter
|
|
0x44a900: ___scrt_dllmain_uninitialize_critical
|
|
0x44ad10: _at_quick_exit
|
|
0x44b940: ?_RTC_Failure@@YAXPAXH@Z
|
|
0x44be60: __RTC_UninitUse
|
|
0x44bfd0: __RTC_GetErrDesc
|
|
0x44c060: __RTC_SetErrorType
|
|
0x44cb60: ?
|
|
0x44cba0: __guard_icall_checks_enforced
|
|
"""
|
|
import sys
|
|
import logging
|
|
import argparse
|
|
|
|
import flirt
|
|
import viv_utils
|
|
import viv_utils.flirt
|
|
|
|
import capa.main
|
|
import capa.rules
|
|
import capa.engine
|
|
import capa.helpers
|
|
import capa.features
|
|
import capa.features.freeze
|
|
from capa.loader import BACKEND_VIV
|
|
|
|
logger = logging.getLogger("capa.match-function-id")
|
|
|
|
|
|
def main(argv=None):
|
|
if argv is None:
|
|
argv = sys.argv[1:]
|
|
|
|
parser = argparse.ArgumentParser(description="FLIRT match each function")
|
|
capa.main.install_common_args(parser, wanted={"input_file", "signatures", "format"})
|
|
parser.add_argument(
|
|
"-F",
|
|
"--function",
|
|
type=lambda x: int(x, 0x10),
|
|
help="match a specific function by VA, rather than add functions",
|
|
)
|
|
args = parser.parse_args(args=argv)
|
|
|
|
try:
|
|
capa.main.handle_common_args(args)
|
|
capa.main.ensure_input_exists_from_cli(args)
|
|
input_format = capa.main.get_input_format_from_cli(args)
|
|
sig_paths = capa.main.get_signatures_from_cli(args, input_format, BACKEND_VIV)
|
|
except capa.main.ShouldExitError as e:
|
|
return e.status_code
|
|
|
|
analyzers = []
|
|
for sigpath in sig_paths:
|
|
sigs = viv_utils.flirt.load_flirt_signature(str(sigpath))
|
|
|
|
with capa.main.timing("flirt: compiling sigs"):
|
|
matcher = flirt.compile(sigs)
|
|
|
|
analyzer = viv_utils.flirt.FlirtFunctionAnalyzer(matcher, str(sigpath))
|
|
logger.debug("registering viv function analyzer: %s", repr(analyzer))
|
|
analyzers.append(analyzer)
|
|
|
|
vw = viv_utils.getWorkspace(str(args.input_file), analyze=True, should_save=False)
|
|
|
|
functions = vw.getFunctions()
|
|
if args.function:
|
|
functions = [args.function]
|
|
|
|
seen = set()
|
|
for function in functions:
|
|
logger.debug("matching function: 0x%04x", function)
|
|
for analyzer in analyzers:
|
|
viv_utils.flirt.match_function_flirt_signatures(analyzer.matcher, vw, function)
|
|
name = viv_utils.get_function_name(vw, function)
|
|
if name:
|
|
key = (function, name)
|
|
if key in seen:
|
|
continue
|
|
else:
|
|
print(f"0x{function:04x}: {name}")
|
|
seen.add(key)
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|