Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use of string instead of byte[] #548

Open
akwick opened this issue May 1, 2022 · 0 comments
Open

Use of string instead of byte[] #548

akwick opened this issue May 1, 2022 · 0 comments
Assignees

Comments

@akwick
Copy link

akwick commented May 1, 2022

Summary

During an empirical study to understand the nature of cryptographic misuses in enterprise-driven projects on GitHub, we randomly inspected a few of the misuses. One of the misuses for which we could confirm as a true positive of the analysis, CogniCryptSAST, is in this project.

  • In the class com.tmobile.pacman.util.CommonUtils, l. 973 , a string is passed as a secret key that is considered insecure. In Java, strings are immutable and stay in memory until collected by Java's garbage collector. Thus, they are longer visible in memory for attackers than necessary and outside of the direct control of the developer. The suggested data types by the JCA are bytes.

Reproduce steps

Execute CogniCrypt_SAST to retrieve the misuse reported above.

Expected Results

I would except no true positive from CogniCrypt_SAST.

Actual Results

CogniCrypt_SAST reports misuses for the project.

@varadh10 varadh10 self-assigned this Jan 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants