File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
+ - Adds missing delta token for OData query parameters dollar sign injection.
13
+
12
14
### Changed
13
15
14
16
## [ 0.0.5] - 2021-12-02
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ func NewGraphODataQueryHandler() *GraphODataQueryHandler {
47
47
48
48
// NewGraphODataQueryHandlerWithOptions creates a new instance of GraphODataQueryHandler
49
49
func NewGraphODataQueryHandlerWithOptions (options GraphODataQueryHandlerOptions ) * GraphODataQueryHandler {
50
- replacementRegexp := "(?i)([^$])(count|expand|filter|format|orderby|search|select|skip|skiptoken|top)="
50
+ replacementRegexp := "(?i)([^$])(count|deltatoken| expand|filter|format|orderby|search|select|skip|skiptoken|top)="
51
51
return & GraphODataQueryHandler {
52
52
regex : regexp .MustCompile (replacementRegexp ),
53
53
handlerOptions : options ,
You can’t perform that action at this time.
0 commit comments