flare-floss/scripts
lakshit verma 03ee960612
style: drop unnecessary bulk_analyze reformats
Keep the floss.cli import change only; restore pre-existing wrapping
that already satisfies black/isort at line-length 120.
2026-07-28 07:52:10 +05:30
..
analysis style: drop unnecessary bulk_analyze reformats 2026-07-28 07:52:10 +05:30
disassemblers
tags refactor(tags): move databases from floss/qs/db/data to floss/tags/data 2026-07-27 00:59:10 +05:30
__init__.py
README.md refactor: remove floss quantum entry point and alias 2026-07-27 17:25:43 +05:30

FLOSS Scripts

Auxiliary scripts live under scripts/, grouped by purpose:

Directory Purpose
disassemblers/ Convert classic FLOSS JSON output into import scripts for Binary Ninja, Ghidra, IDA Pro, Radare2, and x64dbg; includes the IDA plugin
tags/ Build and maintain QuantumStrand tag databases (global prevalence, OSS libraries, VT feeds)
analysis/ Batch analysis helpers

disassemblers/

Turn FLOSS JSON (floss -j sample.exe > results.json) into tool-specific artifacts.

  1. Run a render script, redirecting stdout to a file.
  2. Import or run the generated artifact in the target tool.

Example (Ghidra):

$ python render-ghidra-import-script.py results.json > apply_floss.py

See disassemblers/ for per-tool scripts and the IDA plugin (File → Script file… in IDA Pro).

Install FLOSS from source first; see installation.

tags/

Scripts that extract strings, build tag databases, and query them. See tags/README.md for the full pipeline.

analysis/

  • bulk_analyze.py — run floss over every binary in a directory and write JSON results.

Language-specific data maintenance (for example regenerating the Rust version hash database) lives alongside the implementation under floss/language/.