This repository contains CogniCrypt_SAST, the static analysis component for CogniCrypt. The static analysis CogniCrypt_SAST takes rules written in the specification language CrySL as input, and performs a static analysis based on the specification of the rules. CrySL is a domain-specific language (DSL) designed to encode usage specifications for cryptographic libaries (the JCA in particular). More information on CrySL and the static analysis is found in this paper
You can checkout a pre-compiled version of CogniCrypt_SAST here.
Download the two files:
- CryptoAnalysis-1.0.0-jar-with-dependencies.jar
- JCA-CrySL-rules.zip
This repository uses git submodules, to checkout this repository use the following command for git
git clone --recurse-submodules [email protected]:CROSSINGTUD/CryptoAnalysis.git
CogniCrypt_SAST uses maven as build tool. To compile this project cd
into the newly checked out folder and run
mvn package -DskipTests=true
Once build, a packaged jar
artifact including all dependency is found in CryptoAnalysis/build/CryptoAnalysis-1.0.0-jar-with-dependencies.jar
CogniCrypt_SAST can be started in headless mode (i.e., detached from Eclipse) via the class crypto.HeadlessCryptoScanner
. It requires two arguments:
- The absolute path to the directory of the CrySL (binary) rule files contained in JCA-CrySL-rules.zip.
- The absolute path of the application to be analyzed (.jar file or the root compilation output folder which contains the .class files in subdirectories)
java -cp CryptoAnalysis/build/CryptoAnalysis-1.0.0-jar-with-dependencies.jar crypto.HeadlessCryptoScanner \
--rulesDir=<absolute-path-to-crysl-rules> \
--applicationCp=<absolute-application-path>
For an easy start we prepared a .jar containing classes with crypto misuses. The source code for these misuses is found here. To run CogniCrypt_SAST on these classes, simply execute the following command (on a linux based system).
java -cp CryptoAnalysis/build/CryptoAnalysis-1.0.0-jar-with-dependencies.jar crypto.HeadlessCryptoScanner \
--rulesDir=$(pwd)/CryptoAnalysis/src/test/resources/ \
--applicationCp=$(pwd)/CryptoAnalysisTargets/CogniCryptDemoExample/Examples.jar
Note, depending on the analyzed application, the analysis may require a lot of memory and a large stack size. Remember to set the necessary heap size (e.g. -Xmx8g) and stack size (e.g. -Xss60m).
In the standard option, CogniCrypt_SAST outputs a report to the console. For each misuse CogniCrypt_SAST reports the class and the method the misuse is contained in. There are multiple misuse types:
-
ConstraintError: A constraint of a CrySL rule is violated, e.g., a key is generated with the wrong key size.
-
NeverTypeOfError: Reported when a value was found to be of a certain reference type: For example, a character array containing a password should never be converted from a
String
. (seeKeyStore
rule here). -
ForbiddenMethodError: A method that is forbidden (CrySL block FORBIDDEN) to be called under some circumstances was found.
-
ImpreciseValueExtractionError: The static analysis was not able to extract all information required within the CrySL CONSTRAINT block. For example the key size could be supplied as a value listed in a configuration file. The static analysis does not model the file's content and may not constraint on the value.
-
TypestateError: The ORDER block of CrySL is violated, i.e., the expected method sequence call to be made is incorrect. For example, a
Signature
object expects a call toinitSign(key)
prior toupdate(data)
. -
RequiredPredicateError: An object A expects an object B to have been used correctly (CrySL blocks REQUIRES and ENSURES). For example a
Cipher
object requires aSecretKey
object to be correctly and securely generated. -
IncompleteOperationError: The usage of an object may be incomplete: For example a
Cipher
object may be initialized but never used for en- or decryption, this may render the code dead.
When the option --reportFolder=<folder>
is chosen, CogniCrypt_SAST writes the report to the file CogniCrypt-Report.txt
and additionally outputs the .jimple files of the classes where misuses where found in. Jimple is an intermediate representation close to the syntax of Java.
The current version of the tool takes CrySL rules in their binary formats (cryptslbin). When you want to adopt the rules please use the Eclipse plugin CogniCrypt. CogniCrypt ships with a CrySL editor to modify the rules, upon changes to the rules the editor produces the cryptslbin files. We plan to change CogniCrypt_SAST to take CrySL rules in source code format in the future.
CogniCrypt_SAST can also be run on Android Applications, checkout the repository here.