mirror of
https://github.com/vee1e/flare-floss.git
synced 2026-09-02 02:07:07 +00:00
Replace the header from source code files using the following script:
```Python
for dir_path, dir_names, file_names in os.walk("flare-floss"):
for file_name in file_names:
try:
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)
except:
continue
```
Some files had the copyright headers inside a `"""` comment and needed
manual changes before applying the script.
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 floss
consistent with other Google projects.
117 lines
3.6 KiB
Python
117 lines
3.6 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.
|
|
|
|
|
|
"""
|
|
render-x64dbg-database.py
|
|
|
|
Translate a floss result document into an x64dbg database.
|
|
|
|
Usage:
|
|
|
|
$ floss suspicious.exe -j > floss-results.json
|
|
$ python render-x64dbg-database.py floss-results.json > database.json
|
|
# open `database.json` in x64dbg
|
|
"""
|
|
import sys
|
|
import json
|
|
import logging
|
|
import argparse
|
|
import dataclasses
|
|
from typing import Dict, List
|
|
from pathlib import Path
|
|
from dataclasses import field
|
|
|
|
from pydantic.dataclasses import dataclass
|
|
|
|
from floss.results import AddressType, ResultDocument
|
|
|
|
logger = logging.getLogger("floss.render-x64dbg-import-script")
|
|
|
|
|
|
@dataclass
|
|
class Comment:
|
|
text: str
|
|
manual: bool
|
|
module: str
|
|
address: str
|
|
|
|
|
|
@dataclass
|
|
class Export:
|
|
comments: List[Comment] = field(default_factory=list)
|
|
|
|
|
|
def render_x64dbg_database(result_document: ResultDocument) -> str:
|
|
"""
|
|
Create x64dbg database/json file contents for file annotations.
|
|
"""
|
|
export = Export()
|
|
module = Path(result_document.metadata.file_path).name
|
|
processed: Dict[str, str] = {}
|
|
for ds in result_document.strings.decoded_strings:
|
|
if ds.string != "":
|
|
if ds.address_type == AddressType.GLOBAL:
|
|
rva = hex(ds.address - result_document.metadata.imagebase)
|
|
try:
|
|
processed[rva] += "\t" + ds.string
|
|
except BaseException:
|
|
processed[rva] = "FLOSS: " + ds.string
|
|
else:
|
|
rva = hex(ds.decoded_at - result_document.metadata.imagebase)
|
|
try:
|
|
processed[rva] += "\t" + ds.string
|
|
except BaseException:
|
|
processed[rva] = "FLOSS: " + ds.string
|
|
|
|
for i in list(processed.keys()):
|
|
comment = Comment(text=processed[i], manual=False, module=module, address=i)
|
|
export.comments.append(comment)
|
|
|
|
return json.dumps(dataclasses.asdict(export), indent=1)
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(description="Generate an x64dbg script to apply FLOSS results.")
|
|
parser.add_argument("/path/to/report.json", help="path to JSON document from `floss --json`")
|
|
|
|
logging_group = parser.add_argument_group("logging arguments")
|
|
|
|
logging_group.add_argument("-d", "--debug", action="store_true", help="enable debugging output on STDERR")
|
|
logging_group.add_argument(
|
|
"-q", "--quiet", action="store_true", help="disable all status output except fatal errors"
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
args.report_path = getattr(args, "/path/to/report.json")
|
|
|
|
if args.quiet:
|
|
logging.basicConfig(level=logging.WARNING)
|
|
logging.getLogger().setLevel(logging.WARNING)
|
|
elif args.debug:
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
logging.getLogger().setLevel(logging.DEBUG)
|
|
else:
|
|
logging.basicConfig(level=logging.INFO)
|
|
logging.getLogger().setLevel(logging.INFO)
|
|
|
|
result_document = ResultDocument.parse_file(Path(args.report_path))
|
|
|
|
print(render_x64dbg_database(result_document))
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|