Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Test Fortify GitHub Action

on:
workflow_dispatch:
pull_request:
branches: [master]
push:
branches: [master]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.io.FileReader;

// My password is 1234

Check notice

Code scanning / Fortify SCA

Password Management: Password in Comment

Storing passwords or password details in plain text anywhere in the system or system code might compromise system security in a way that cannot be easily remedied. [More information](https://ssc.demo.fortify.com/html/ssc/version/63/fix/96440/?engineType=SCA&issue=20BFF19EBACDD904AA10B86F4BED225A&filterSet=a243b195-0a59-3f8b-1403-d55b7a7d78e6)
public class EightBall {
public static void main(String args[]) throws Exception {
char[] buffer = new char[1024];
Expand Down