-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Rust: Weak encryption algorithm query. #18226
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
Changes from 15 commits
bdb2f3d
6c4e0a9
07e3421
eeeb142
94dbad7
6eb850c
dd0fa79
de042ea
4e418d3
129f21a
f637b3b
4b93325
ad75906
591db05
d2cfcb4
1d72b75
611d04e
44a0ad2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| /** | ||
| * Provides modeling for the `RustCrypto` family of crates (`cipher`, `digest` etc). | ||
| */ | ||
|
|
||
| private import rust | ||
| private import codeql.rust.Concepts | ||
| private import codeql.rust.dataflow.DataFlow | ||
|
|
||
| bindingset[algorithmName] | ||
| private string simplifyAlgorithmName(string algorithmName) { | ||
| // the cipher library gives triple-DES names like "TdesEee2" and "TdesEde2" | ||
| if algorithmName.matches("Tdes%") then result = "3des" else result = algorithmName | ||
| } | ||
|
|
||
| /** | ||
| * An operation that initializes a cipher through the `cipher::KeyInit` or | ||
| * `cipher::KeyIvInit` trait, for example `Des::new` or `cbc::Encryptor<des::Des>::new`. | ||
| */ | ||
| class StreamCipherInit extends Cryptography::CryptographicOperation::Range { | ||
| string algorithmName; | ||
|
|
||
| StreamCipherInit() { | ||
| // a call to `cipher::KeyInit::new`, `cipher::KeyInit::new_from_slice`, | ||
| // `cipher::KeyIvInit::new`, `cipher::KeyIvInit::new_from_slices` or `rc2::Rc2::new_with_eff_key_len`. | ||
| exists(PathExpr p, string rawAlgorithmName | | ||
| this.asExpr().getExpr().(CallExpr).getFunction() = p and | ||
| p.getResolvedCrateOrigin().matches("%/RustCrypto%") and | ||
| p.getPath().getPart().getNameRef().getText() = | ||
| ["new", "new_from_slice", "new_from_slices", "new_with_eff_key_len"] and | ||
| ( | ||
| rawAlgorithmName = p.getPath().getQualifier().getPart().getNameRef().getText() or | ||
| rawAlgorithmName = | ||
| p.getPath() | ||
| .getQualifier() | ||
| .getPart() | ||
| .getGenericArgList() | ||
| .getGenericArg(0) | ||
| .(TypeArg) | ||
| .getTypeRepr() | ||
| .(PathTypeRepr) | ||
| .getPath() | ||
| .getPart() | ||
| .getNameRef() | ||
| .getText() | ||
| ) and | ||
| algorithmName = simplifyAlgorithmName(rawAlgorithmName) | ||
| ) | ||
| } | ||
|
|
||
| override DataFlow::Node getInitialization() { result = this } | ||
|
|
||
| override Cryptography::CryptographicAlgorithm getAlgorithm() { result.matchesName(algorithmName) } | ||
|
|
||
| override DataFlow::Node getAnInput() { none() } | ||
|
|
||
| override Cryptography::BlockMode getBlockMode() { result = "" } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| /** | ||
| * This file contains imports required for the Rust version of `ConceptsShared.qll`. | ||
| * Since they are language-specific, they can't be placed directly in that file, as it is shared between languages. | ||
| */ | ||
|
|
||
| import codeql.rust.dataflow.DataFlow::DataFlow as DataFlow | ||
| import codeql.rust.security.CryptoAlgorithms as CryptoAlgorithms |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,181 @@ | ||
| /** | ||
| * Provides Concepts which are shared across languages. | ||
| * | ||
| * Each language has a language specific `Concepts.qll` file that can import the | ||
| * shared concepts from this file. A language can either re-export the concept directly, | ||
| * or can add additional member-predicates that are needed for that language. | ||
| * | ||
| * Moving forward, `Concepts.qll` will be the staging ground for brand new concepts from | ||
| * each language, but we will maintain a discipline of moving those concepts to | ||
| * `ConceptsShared.qll` ASAP. | ||
| */ | ||
|
|
||
| private import ConceptsImports | ||
|
|
||
| /** | ||
| * Provides models for cryptographic concepts. | ||
| * | ||
| * Note: The `CryptographicAlgorithm` class currently doesn't take weak keys into | ||
| * consideration for the `isWeak` member predicate. So RSA is always considered | ||
| * secure, although using a low number of bits will actually make it insecure. We plan | ||
| * to improve our libraries in the future to more precisely capture this aspect. | ||
| */ | ||
| module Cryptography { | ||
| class CryptographicAlgorithm = CryptoAlgorithms::CryptographicAlgorithm; | ||
|
|
||
| class EncryptionAlgorithm = CryptoAlgorithms::EncryptionAlgorithm; | ||
|
|
||
| class HashingAlgorithm = CryptoAlgorithms::HashingAlgorithm; | ||
|
|
||
| class PasswordHashingAlgorithm = CryptoAlgorithms::PasswordHashingAlgorithm; | ||
|
|
||
| /** | ||
| * A data flow node that is an application of a cryptographic algorithm. For example, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't forget to change the sync'd copies as well.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you happy that we do that? I didn't want to interfere with other languages unless there's some level of agreement.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm happy with that, although if you like to leave things as-is, that's also fine with me.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've done the change. |
||
| * encryption, decryption, signature-validation. | ||
| * | ||
| * Extend this class to refine existing API models. If you want to model new APIs, | ||
| * extend `CryptographicOperation::Range` instead. | ||
| */ | ||
| class CryptographicOperation extends DataFlow::Node instanceof CryptographicOperation::Range { | ||
| /** Gets the algorithm used, if it matches a known `CryptographicAlgorithm`. */ | ||
| CryptographicAlgorithm getAlgorithm() { result = super.getAlgorithm() } | ||
|
|
||
| /** Gets the data-flow node where the cryptographic algorithm used in this operation is configured. */ | ||
| DataFlow::Node getInitialization() { result = super.getInitialization() } | ||
|
|
||
| /** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */ | ||
| DataFlow::Node getAnInput() { result = super.getAnInput() } | ||
|
|
||
| /** | ||
| * Gets the block mode used to perform this cryptographic operation. | ||
| * | ||
| * This predicate is only expected to have a result if two conditions hold: | ||
| * 1. The operation is an encryption operation, i.e. the algorithm used is an `EncryptionAlgorithm`, and | ||
| * 2. The algorithm used is a block cipher (not a stream cipher). | ||
| * | ||
| * If either of these conditions do not hold, then this predicate should have no result. | ||
| */ | ||
| BlockMode getBlockMode() { result = super.getBlockMode() } | ||
| } | ||
|
|
||
| /** Provides classes for modeling new applications of a cryptographic algorithms. */ | ||
| module CryptographicOperation { | ||
| /** | ||
| * A data-flow node that is an application of a cryptographic algorithm. For example, | ||
| * encryption, decryption, signature-validation. | ||
| * | ||
| * Extend this class to model new APIs. If you want to refine existing API models, | ||
| * extend `CryptographicOperation` instead. | ||
| */ | ||
| abstract class Range extends DataFlow::Node { | ||
| /** Gets the data-flow node where the cryptographic algorithm used in this operation is configured. */ | ||
| abstract DataFlow::Node getInitialization(); | ||
|
|
||
| /** Gets the algorithm used, if it matches a known `CryptographicAlgorithm`. */ | ||
| abstract CryptographicAlgorithm getAlgorithm(); | ||
|
|
||
| /** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */ | ||
| abstract DataFlow::Node getAnInput(); | ||
|
|
||
| /** | ||
| * Gets the block mode used to perform this cryptographic operation. | ||
| * | ||
| * This predicate is only expected to have a result if two conditions hold: | ||
| * 1. The operation is an encryption operation, i.e. the algorithm used is an `EncryptionAlgorithm`, and | ||
| * 2. The algorithm used is a block cipher (not a stream cipher). | ||
| * | ||
| * If either of these conditions do not hold, then this predicate should have no result. | ||
| */ | ||
| abstract BlockMode getBlockMode(); | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * A cryptographic block cipher mode of operation. This can be used to encrypt | ||
| * data of arbitrary length using a block encryption algorithm. | ||
| */ | ||
| class BlockMode extends string { | ||
| BlockMode() { | ||
| this = | ||
| [ | ||
| "ECB", "CBC", "GCM", "CCM", "CFB", "OFB", "CTR", "OPENPGP", | ||
| "XTS", // https://csrc.nist.gov/publications/detail/sp/800-38e/final | ||
| "EAX" // https://en.wikipedia.org/wiki/EAX_mode | ||
| ] | ||
| } | ||
|
|
||
| /** Holds if this block mode is considered to be insecure. */ | ||
| predicate isWeak() { this = "ECB" } | ||
|
|
||
| /** Holds if the given string appears to match this block mode. */ | ||
| bindingset[s] | ||
| predicate matchesString(string s) { s.toUpperCase().matches("%" + this + "%") } | ||
| } | ||
| } | ||
|
|
||
| /** Provides classes for modeling HTTP-related APIs. */ | ||
| module Http { | ||
| /** Provides classes for modeling HTTP clients. */ | ||
| module Client { | ||
| /** | ||
| * A data-flow node that makes an outgoing HTTP request. | ||
| * | ||
| * Extend this class to refine existing API models. If you want to model new APIs, | ||
| * extend `Http::Client::Request::Range` instead. | ||
| */ | ||
| class Request extends DataFlow::Node instanceof Request::Range { | ||
| /** | ||
| * Gets a data-flow node that contributes to the URL of the request. | ||
| * Depending on the framework, a request may have multiple nodes which contribute to the URL. | ||
| */ | ||
| DataFlow::Node getAUrlPart() { result = super.getAUrlPart() } | ||
|
|
||
| /** Gets a string that identifies the framework used for this request. */ | ||
| string getFramework() { result = super.getFramework() } | ||
|
|
||
| /** | ||
| * Holds if this request is made using a mode that disables SSL/TLS | ||
| * certificate validation, where `disablingNode` represents the point at | ||
| * which the validation was disabled, and `argumentOrigin` represents the origin | ||
| * of the argument that disabled the validation (which could be the same node as | ||
| * `disablingNode`). | ||
| */ | ||
| predicate disablesCertificateValidation( | ||
| DataFlow::Node disablingNode, DataFlow::Node argumentOrigin | ||
| ) { | ||
| super.disablesCertificateValidation(disablingNode, argumentOrigin) | ||
| } | ||
| } | ||
|
|
||
| /** Provides a class for modeling new HTTP requests. */ | ||
| module Request { | ||
| /** | ||
| * A data-flow node that makes an outgoing HTTP request. | ||
| * | ||
| * Extend this class to model new APIs. If you want to refine existing API models, | ||
| * extend `Http::Client::Request` instead. | ||
| */ | ||
| abstract class Range extends DataFlow::Node { | ||
| /** | ||
| * Gets a data-flow node that contributes to the URL of the request. | ||
| * Depending on the framework, a request may have multiple nodes which contribute to the URL. | ||
| */ | ||
| abstract DataFlow::Node getAUrlPart(); | ||
|
|
||
| /** Gets a string that identifies the framework used for this request. */ | ||
| abstract string getFramework(); | ||
|
|
||
| /** | ||
| * Holds if this request is made using a mode that disables SSL/TLS | ||
| * certificate validation, where `disablingNode` represents the point at | ||
| * which the validation was disabled, and `argumentOrigin` represents the origin | ||
| * of the argument that disabled the validation (which could be the same node as | ||
| * `disablingNode`). | ||
| */ | ||
| abstract predicate disablesCertificateValidation( | ||
| DataFlow::Node disablingNode, DataFlow::Node argumentOrigin | ||
| ); | ||
| } | ||
| } | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.