Adding content to KnownSymmetricCipherAlgorithmql.

This commit is contained in:
REDMOND\brodes
2025-04-30 11:41:28 -04:00
parent 83617e099f
commit c80588cda1

View File

@@ -0,0 +1,12 @@
/**
* @name Detects known symmetric cipher algorithms
* @id java/crypto_inventory_slices/known_symmetric_cipher_algorithm
* @kind problem
*/
import java
import experimental.Quantum.Language
from Crypto::KeyOperationAlgorithmNode a
where a.getAlgorithmType() instanceof Crypto::KeyOpAlg::SymmetricCipherAlgorithm
select a, "Instance of symmetric cipher algorithm " + a.getAlgorithmName()