CoinFabrik / scout-soroban

Scout is an extensible open-source tool intended to assist Stellar Soroban smart contract developers and auditors detect common security issues and deviations from best practices.
MIT License
33 stars 2 forks source link

Reports Verbosity #239

Open humayunj opened 2 months ago

humayunj commented 2 months ago

The report generated by Scout only includes issues and enhancements. Is there a flag that can increase the report's verbosity to list all the detectors used along with their statuses?

matiascabello commented 2 months ago

Hi @humayunj!

You can add the -v flag to the CLI command to print additional information about the tool's execution (e.g., detectors used and compilation status). The full command would be cargo scout-audit -v

Have you tried HTML or Markdown reports? These formats include additional information on the detections.

You can generate these reports by running cargo scout-audit --output-format html or cargo scout-audit --output-format md.

If these reports don't meet your needs, we'll be happy to engage in further conversation to gather your feedback and include your insights in our backlog.