mirror of
https://github.com/github/codeql.git
synced 2025-12-26 21:56:39 +01:00
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
/**
|
|
* Provides classes modeling security-relevant aspects of the `dill` PyPI package.
|
|
* See https://pypi.org/project/dill/.
|
|
*/
|
|
|
|
private import python
|
|
private import semmle.python.dataflow.new.DataFlow
|
|
private import semmle.python.dataflow.new.RemoteFlowSources
|
|
private import semmle.python.Concepts
|
|
private import semmle.python.ApiGraphs
|
|
|
|
/**
|
|
* Provides models for the `dill` PyPI package.
|
|
* See https://pypi.org/project/dill/.
|
|
*/
|
|
private module Dill {
|
|
/**
|
|
* A call to `dill.load`
|
|
* See https://pypi.org/project/dill/ (which currently refers you
|
|
* to https://docs.python.org/3/library/pickle.html#pickle.load)
|
|
*/
|
|
private class DillLoadCall extends Decoding::Range, DataFlow::CallCfgNode {
|
|
DillLoadCall() { this = API::moduleImport("dill").getMember("load").getACall() }
|
|
|
|
override predicate mayExecuteInput() { any() }
|
|
|
|
override DataFlow::Node getAnInput() { result in [this.getArg(0), this.getArgByName("file")] }
|
|
|
|
override DataFlow::Node getOutput() { result = this }
|
|
|
|
override string getFormat() { result = "dill" }
|
|
}
|
|
|
|
/**
|
|
* A call to `dill.loads`
|
|
* See https://pypi.org/project/dill/ (which currently refers you
|
|
* to https://docs.python.org/3/library/pickle.html#pickle.loads)
|
|
*/
|
|
private class DillLoadsCall extends Decoding::Range, DataFlow::CallCfgNode {
|
|
DillLoadsCall() { this = API::moduleImport("dill").getMember("loads").getACall() }
|
|
|
|
override predicate mayExecuteInput() { any() }
|
|
|
|
override DataFlow::Node getAnInput() { result in [this.getArg(0), this.getArgByName("str")] }
|
|
|
|
override DataFlow::Node getOutput() { result = this }
|
|
|
|
override string getFormat() { result = "dill" }
|
|
}
|
|
}
|