user3907720
user3907720

Reputation: 13

Removing a comment from Fortify

I'm working in the fortify web app and I need to remove a comment I posted by mistake on one of the issues. I can't find anyway of doing this, does anyone know how its done or if its even possible?

Upvotes: 1

Views: 1963

Answers (2)

rawat sapna
rawat sapna

Reputation: 156

If you have data base access of fortify SSC then you can edit or delete the content , otherwise you can not edit the comments on Enterprise Fortify SSC portal.

Upvotes: 1

James Nix
James Nix

Reputation: 925

The only way to remove a comment is to remove it from the database. If you have the access, you can find the particular comment by:

Select * From AuditComment

Once you've found it, you can remove it by using the following :

Delete From AuditComment Where issue_id = <IssueID here> and seqNumber = <Sequence Number here>

BE CAREFUL You've been warned.

Upvotes: 1

Related Questions