是 Micro Focus 的一款代码安全扫描工具,属于 SAST(静态应用安全测试) 阶段, 支持 27 种开发语言的代码安全扫描, 可以通过 IDE 和 CI/CD 在本地无缝启动扫描
Fortify Static Code Analyzer 安装包
是软件发布版本
官方文档地址: https://www.microfocus.com/zh-cn/documentation/fortify-static-code-analyzer-and-tools/
安装完成后目录结构
使用 Fortify Static Code Analyzer 对代码进行安全扫描, 分为三个步骤
sourceanalyzer.exe -clean
命令用于清理中间文件和构建记录, 当使用-b
指定构建 ID 时, 只删除与该构建 ID 相关的文件和构建记录
清理所有构建记录 和 中间文件
sourceanalyzer.exe -clean
清理指定构建 ID 相关的中间文件和构建记录
sourceanalyzer.exe -clean -b test_project
进入需要安全扫描的代码目录下, 对需要安全扫描的代码进行构建
sourceanalyzer.exe -b <build_id>
将所有文件进行构建
sourceanalyzer.exe -b test_project
sourceanalyzer.exe -b test_project <file_specifiers>
对所有 java 文件进行构建
sourceanalyzer.exe -b test_project "**/*.java"
sourceanalyzer.exe -b <build_id> -exclude <file_specifiers>
对 test 目录下的所有文件不构建
sourceanalyzer.exe -b test_project -exclude "**/test/*"
sourceanalyzer.exe -b <build_id> -scan
对构建ID test_project 进行安全扫描
sourceanalyzer.exe -b test_project -scan
sourceanalyzer.exe -b <build_id> -scan -filter <file>
指定 xx/filter_ruleid.txt 文件筛选文件,过滤里面配置的漏洞
sourceanalyzer.exe -b test_project -scan -filter "xx/filter_ruleid.txt"
指定代码扫描结果文件路径和文件名称
sourceanalyzer.exe -b test_project -scan -f <file>
sourceanalyzer.exe -b test_project -scan -f /home/code/test-project-result.fpr
配置扫描结果报告类型,提供几种格式报告: fpr, fvdl, fvdl.zip, text, and auto
sourceanalyzer.exe -b test_project -scan -format <format>
sourceanalyzer.exe -b test_project -scan -format fpr