
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Fortify exclude option not working for my project
I have a visual studio c/c++ project having folder structure as below
->client->ABCClient
->client->lib
"client" is the root foler which has ABCClient & lib folder inside "client" folder.
"ABCClient "project is refering some of the source file from "lib" folder also.
I want to completly exclude issues reported in fortify scan from "lib" folder. I tried exclude options but still its reporting issues from "lib" folder.
I have used below commands.
sourceanalyzer -b "test5" -exclude "**\lib\*" -quick -Xmx4G -Xss8M -debug -logfile scan.log -scan -f ABCClient8.fpr
sourceanalyzer -b "test5" -exclude "client\lib\*" -quick -Xmx4G -Xss8M -debug -logfile scan.log -scan -f ABCClient8.fpr
I have tried both wildcard chars as well as absolute path of exclude file but it didn't worked.
Please someone help