File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
rules/default/security/frameworks Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.0.35] - 2024-05-21
8
+ ### Rules
9
+ Fix substitution pattern in PHP Request rule.
10
+
7
11
## [ 1.0.35] - 2024-5-8
8
12
### Pipeline
9
13
Pipeline only changes
Original file line number Diff line number Diff line change 26
26
{
27
27
"name" : " Change to $_GET" ,
28
28
"type" : " RegexReplace" ,
29
- "replacement" : " $_GET" ,
29
+ "replacement" : " $$ _GET" ,
30
30
"pattern" : {
31
31
"pattern" : " \\ $_REQUEST" ,
32
32
"type" : " regex" ,
39
39
{
40
40
"name" : " Change to $_POST" ,
41
41
"type" : " RegexReplace" ,
42
- "replacement" : " $_POST" ,
42
+ "replacement" : " $$ _POST" ,
43
43
"pattern" : {
44
44
"pattern" : " \\ $_REQUEST" ,
45
45
"type" : " regex" ,
52
52
{
53
53
"name" : " Change to $_COOKIE" ,
54
54
"type" : " RegexReplace" ,
55
- "replacement" : " $_COOKIE" ,
55
+ "replacement" : " $$ _COOKIE" ,
56
56
"pattern" : {
57
57
"pattern" : " \\ $_REQUEST" ,
58
58
"type" : " regex" ,
You can’t perform that action at this time.
0 commit comments