Skip to content

Commit a664602

Browse files
committed
Rename Untrusted Flow to Remote Flow
Not matching case but preserving original case.
1 parent d967b2b commit a664602

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

go/ql/lib/semmle/go/frameworks/AwsLambda.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
2+
* Provides classes for working with remote flow sources, sinks and taint propagators
33
* from the `github.com/aws/aws-lambda-go/lambda` package.
44
*/
55

go/ql/lib/semmle/go/frameworks/Beego.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
2+
* Provides classes for working with remote flow sources, sinks and taint propagators
33
* from the `github.com/beego/beego` package.
44
*/
55

@@ -9,7 +9,7 @@ private import semmle.go.security.SafeUrlFlowCustomizations
99

1010
// Some TaintTracking::FunctionModel subclasses remain because varargs functions don't work with Models-as-Data sumamries yet.
1111
/**
12-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
12+
* Provides classes for working with remote flow sources, sinks and taint propagators
1313
* from the [Beego](https://github.com/beego/beego) package.
1414
*/
1515
module Beego {

go/ql/lib/semmle/go/frameworks/BeegoOrm.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
2+
* Provides classes for working with remote flow sources, sinks and taint propagators
33
* from the `github.com/astaxie/beego/orm` subpackage.
44
*/
55

66
import go
77
private import semmle.go.security.StoredXssCustomizations
88

99
/**
10-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
10+
* Provides classes for working with remote flow sources, sinks and taint propagators
1111
* from the [Beego ORM](https://github.com/astaxie/beego/orm) subpackage.
1212
*/
1313
module BeegoOrm {

go/ql/lib/semmle/go/frameworks/Chi.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources from the `github.com/go-chi/chi` package.
2+
* Provides classes for working with remote flow sources from the `github.com/go-chi/chi` package.
33
*/
44

55
import go
@@ -9,7 +9,7 @@ private module Chi {
99
string packagePath() { result = package("github.com/go-chi/chi", "") }
1010

1111
/**
12-
* Functions that extract URL parameters, considered as a source of untrusted flow.
12+
* Functions that extract URL parameters, considered as a source of remote flow.
1313
*/
1414
private class UserControlledFunction extends RemoteFlowSource::Range, DataFlow::CallNode {
1515
UserControlledFunction() {
@@ -18,7 +18,7 @@ private module Chi {
1818
}
1919

2020
/**
21-
* Methods that extract URL parameters, considered as a source of untrusted flow.
21+
* Methods that extract URL parameters, considered as a source of remote flow.
2222
*/
2323
private class UserControlledRequestMethod extends RemoteFlowSource::Range,
2424
DataFlow::MethodCallNode

go/ql/lib/semmle/go/frameworks/Echo.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources, taint propagators, and HTTP sinks
2+
* Provides classes for working with remote flow sources, taint propagators, and HTTP sinks
33
* from the `github.com/labstack/echo` package.
44
*/
55

@@ -10,7 +10,7 @@ private module Echo {
1010
private string packagePath() { result = package("github.com/labstack/echo", "") }
1111

1212
/**
13-
* Data from a `Context` interface method, considered as a source of untrusted flow.
13+
* Data from a `Context` interface method, considered as a source of remote flow.
1414
*/
1515
private class EchoContextSource extends RemoteFlowSource::Range {
1616
EchoContextSource() {

go/ql/lib/semmle/go/frameworks/Fasthttp.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources, sinks and taint propagators
2+
* Provides classes for working with remote flow sources, sinks and taint propagators
33
* from the `github.com/valyala/fasthttp` package.
44
*/
55

go/ql/lib/semmle/go/frameworks/Gin.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ private module Gin {
1010
string packagePath() { result = package("github.com/gin-gonic/gin", "") }
1111

1212
/**
13-
* Data from a `Context` struct, considered as a source of untrusted flow.
13+
* Data from a `Context` struct, considered as a source of remote flow.
1414
*/
1515
private class GithubComGinGonicGinContextSource extends RemoteFlowSource::Range {
1616
GithubComGinGonicGinContextSource() {

go/ql/lib/semmle/go/frameworks/Revel.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for working with untrusted flow sources from the `github.com/revel/revel` package.
2+
* Provides classes for working with remote flow sources from the `github.com/revel/revel` package.
33
*/
44

55
import go

go/ql/src/experimental/CWE-74/DsnInjection.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import go
1313
import DsnInjectionCustomizations
1414
import DsnInjectionFlow::PathGraph
1515

16-
/** An untrusted flow source taken as a source for the `DsnInjection` taint-flow configuration. */
16+
/** An remote flow source taken as a source for the `DsnInjection` taint-flow configuration. */
1717
private class RemoteFlowAsSource extends Source instanceof RemoteFlowSource { }
1818

1919
from DsnInjectionFlow::PathNode source, DsnInjectionFlow::PathNode sink

go/ql/src/experimental/frameworks/CleverGo.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private module CleverGo {
1414
}
1515

1616
/**
17-
* Provides models of untrusted flow sources.
17+
* Provides models of remote flow sources.
1818
*/
1919
private class UntrustedSources extends RemoteFlowSource::Range {
2020
UntrustedSources() {

0 commit comments

Comments
 (0)