mirror of
https://github.com/github/codeql.git
synced 2026-07-30 15:05:38 +02:00
19 lines
572 B
Plaintext
19 lines
572 B
Plaintext
/**
|
|
* Provides a flow label for reasoning about URLs with a tainted query and fragment part,
|
|
* which we collectively refer to as the "suffix" of the URL.
|
|
*/
|
|
|
|
import javascript
|
|
|
|
/**
|
|
* Provides a flow label for reasoning about URLs with a tainted query and fragment part,
|
|
* which we collectively refer to as the "suffix" of the URL.
|
|
*/
|
|
module TaintedUrlSuffix {
|
|
import TaintedUrlSuffixCustomizations::TaintedUrlSuffix
|
|
|
|
deprecated private class ConcreteTaintedUrlSuffixLabel extends TaintedUrlSuffixLabel {
|
|
ConcreteTaintedUrlSuffixLabel() { this = this }
|
|
}
|
|
}
|