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

Add security rules for cryptographic vulnerabilities in Java applications #119

Closed
wants to merge 3 commits into from
Closed
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
16 changes: 16 additions & 0 deletions rules/java/security/unencrypted-socket-java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
id: unencrypted-socket-java
language: java
severity: info
message: >-
"Detected use of a Java socket that is not encrypted. As a result, the
traffic could be read by an attacker intercepting the network traffic. Use
an SSLSocket created by 'SSLSocketFactory' or 'SSLServerSocketFactory'
instead."
note: >-
[CWE-319] Cleartext Transmission of Sensitive Information
[REFERENCES]
- https://owasp.org/Top10/A02_2021-Cryptographic_Failures
rule:
any:
- pattern: new ServerSocket($$$)
- pattern: new Socket($$$)
17 changes: 17 additions & 0 deletions rules/java/security/use-of-blowfish-java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
id: use-of-blowfish-java
language: java
severity: info
message: >-
Use of Blowfish was detected. Blowfish uses a 64-bit block size
that makes it vulnerable to birthday attacks, and is therefore considered
non-compliant. Instead, use a strong, secure cipher:
Cipher.getInstance("AES/CBC/PKCS7PADDING"). See
https://owasp.org/www-community/Using_the_Java_Cryptographic_Extensions
for more information.
note: >-
[CWE-327] Use of a Broken or Risky Cryptographic Algorithm
[REFERENCES]
- https://owasp.org/Top10/A02_2021-Cryptographic_Failures
- https://googleprojectzero.blogspot.com/2022/10/rc4-is-still-considered-harmful.html
rule:
pattern: $CIPHER.getInstance("Blowfish")
13 changes: 13 additions & 0 deletions rules/java/security/use-of-md5-digest-utils-java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
id: use-of-md5-digest-utils-java
language: java
severity: warning
message: >-
'Detected MD5 hash algorithm which is considered insecure. MD5 is not
collision resistant and is therefore not suitable as a cryptographic
signature. Use HMAC instead.'
note: >-
[CWE-328] Use of Weak Hash
[REFERENCES]
- https://owasp.org/Top10/A02_2021-Cryptographic_Failures
rule:
pattern: DigestUtils.getMd5Digest($$$).digest($$$)
58 changes: 58 additions & 0 deletions tests/__snapshots__/unencrypted-socket-java-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
id: unencrypted-socket-java
snapshots:
? |
ServerSocket ssoc = new ServerSocket(1234);
: labels:
- source: new ServerSocket(1234)
style: primary
start: 20
end: 42
? |
ServerSocket ssoc1 = new ServerSocket();
: labels:
- source: new ServerSocket()
style: primary
start: 21
end: 39
? |
ServerSocket ssoc2 = new ServerSocket(1234, 10);
: labels:
- source: new ServerSocket(1234, 10)
style: primary
start: 21
end: 47
? |
ServerSocket ssoc3 = new ServerSocket(1234, 10, InetAddress.getByAddress(address));
: labels:
- source: new ServerSocket(1234, 10, InetAddress.getByAddress(address))
style: primary
start: 21
end: 82
? |
Socket soc = new Socket("www.google.com", 80);
: labels:
- source: new Socket("www.google.com", 80)
style: primary
start: 13
end: 45
? |
Socket soc1 = new Socket("www.google.com", 80, true);
: labels:
- source: new Socket("www.google.com", 80, true)
style: primary
start: 14
end: 52
? |
Socket soc2 = new Socket("www.google.com", 80, InetAddress.getByAddress(address), 13337);
: labels:
- source: new Socket("www.google.com", 80, InetAddress.getByAddress(address), 13337)
style: primary
start: 14
end: 88
? |
Socket soc3 = new Socket(InetAddress.getByAddress(remoteAddress), 80);
: labels:
- source: new Socket(InetAddress.getByAddress(remoteAddress), 80)
style: primary
start: 14
end: 69
16 changes: 16 additions & 0 deletions tests/__snapshots__/use-of-blowfish-java-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
id: use-of-blowfish-java
snapshots:
? |
Cipher.getInstance("Blowfish");
: labels:
- source: Cipher.getInstance("Blowfish")
style: primary
start: 0
end: 30
? |
useCipher(Cipher.getInstance("Blowfish"));
: labels:
- source: Cipher.getInstance("Blowfish")
style: primary
start: 10
end: 40
9 changes: 9 additions & 0 deletions tests/__snapshots__/use-of-md5-digest-utils-java-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
id: use-of-md5-digest-utils-java
snapshots:
? |
byte[] hashValue = DigestUtils.getMd5Digest().digest(password.getBytes());
: labels:
- source: DigestUtils.getMd5Digest().digest(password.getBytes())
style: primary
start: 19
end: 73
23 changes: 23 additions & 0 deletions tests/java/unencrypted-socket-java-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
id: unencrypted-socket-java
valid:
- |
Socket soc = SSLSocketFactory.getDefault().createSocket("www.google.com", 443);
- |
ServerSocket ssoc = SSLServerSocketFactory.getDefault().createServerSocket(1234);
invalid:
- |
Socket soc = new Socket("www.google.com", 80);
- |
Socket soc1 = new Socket("www.google.com", 80, true);
- |
Socket soc2 = new Socket("www.google.com", 80, InetAddress.getByAddress(address), 13337);
- |
Socket soc3 = new Socket(InetAddress.getByAddress(remoteAddress), 80);
- |
ServerSocket ssoc = new ServerSocket(1234);
- |
ServerSocket ssoc1 = new ServerSocket();
- |
ServerSocket ssoc2 = new ServerSocket(1234, 10);
- |
ServerSocket ssoc3 = new ServerSocket(1234, 10, InetAddress.getByAddress(address));
9 changes: 9 additions & 0 deletions tests/java/use-of-blowfish-java-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
id: use-of-blowfish-java
valid:
- |
Cipher.getInstance("AES/CBC/PKCS7PADDING");
invalid:
- |
Cipher.getInstance("Blowfish");
- |
useCipher(Cipher.getInstance("Blowfish"));
9 changes: 9 additions & 0 deletions tests/java/use-of-md5-digest-utils-java-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
id: use-of-md5-digest-utils-java
valid:
- |
MessageDigest md5Digest = MessageDigest.getInstance("MD5");
- |
byte[] hashValue = DigestUtils.getSha512Digest().digest(password.getBytes());
invalid:
- |
byte[] hashValue = DigestUtils.getMd5Digest().digest(password.getBytes());