-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpatterns.txt
146 lines (128 loc) · 3.79 KB
/
patterns.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Self-assignments are a bad smell in 99% of cases.
'$x = $x'
# Suspicious empty body of the if statement.
'if ($_);'
# Using "==" instead of "=" inside init context.
'for ($_ == $_; $_; $_) $_'
# Using assignment as expression inside boolean context.
'for ($_; $_ = []; $_) $_'
'for ($_; $_ = ${"const"}; $_) $_'
'for ($_; $_ = ${"num"}; $_) $_'
'for ($_; $_ = ${"str"}; $_) $_'
'while ($_ = []) $_'
'while ($_ = ${"const"}) $_'
'while ($_ = ${"num"}) $_'
'while ($_ = ${"str"}) $_'
'if ($_ = []) $_'
'if ($_ = ${"const"}) $_'
'if ($_ = ${"str"}) $_'
'if ($_ = ${"num"}) $_'
'$_ = [] ? $_ : $_'
'$_ = ${"const"} ? $_ : $_'
'$_ = ${"str"} ? $_ : $_'
'$_ = ${"num"} ? $_ : $_'
'($_ = []) && $_'
'($_ = ${"const"}) && $_'
'($_ = ${"str"}) && $_'
'($_ = ${"num"}) && $_'
'$_ && $_ = []'
'$_ && $_ = ${"const"}'
'$_ && $_ = ${"str"}'
'$_ && $_ = ${"num"}'
'($_ = []) || $_'
'($_ = ${"const"}) || $_'
'($_ = ${"str"}) || $_'
'($_ = ${"num"}) || $_'
'$_ || $_ = []'
'$_ || $_ = ${"const"}'
'$_ || $_ = ${"str"}'
'$_ || $_ = ${"num"}'
# Suspicious (and sometimes always true/false) boolean expressions.
'$x == $x'
'$x === $x'
'$x && !$x'
'$x || !$x'
'$x || $a && !$x'
'$x != $a || $x != $b'
'$x !== $a || $x != $b'
'$x != $a || $x !== $b'
'$x !== $a || $x !== $b'
'$x == $a || $x != $b'
'$x == $a || $x !== $b'
'$x === $a || $x != $b'
'$x === $a || $x !== $b'
'$x == $a && $x != $b'
'$x == $a && $x !== $b'
'$x === $a && $x != $b'
'$x === $a && $x !== $b'
# Potential issues due to the operators precedence.
'$x & $mask == $y'
'$x & $mask === $y'
'$x & $mask !== $y'
'$x & $mask != $y'
'$x | $mask == $y'
'$x | $mask === $y'
'$x | $mask !== $y'
'$x | $mask != $y'
# Potentially incorrect usage of ternary operator (due to the precedence).
'$_ == $_ ? $_ : $_ ? $_ : $_'
'$_ === $_ ? $_ : $_ ? $_ : $_'
'$_ != $_ ? $_ : $_ ? $_ : $_'
'$_ !== $_ ? $_ : $_ ? $_ : $_'
# Duplicated true-false branches.
'$_ ? $x : $x'
'if ($cond) $x; else $x'
# Incorrect/suspicious order of arguments.
'stripos(${"str"}, ${"*"})'
'strpos(${"str"}, ${"*"})'
'explode($_, ${"str"}, ${"*"})'
'array_diff($x, $x)'
'array_intersect($x, $x)'
'array_filter(${"func"}, $_)'
'array_reduce(${"func"}, $_)'
'array_map($_, ${"func"})'
# Calls that always lead to unwanted results.
'explode("", ${"*"})'
# Duplicated sub-expressions inside boolean expressions.
'$x && $x'
'$x && $_ && $x'
'$x && $_ && $_ && $x'
'$x && $_ && $_ && $_ && $x'
'$x || $x'
'$x || $_ || $x'
'$x || $_ || $_ || $x'
'$x || $_ || $_ || $_ || $x'
# Duplicated array keys.
'[${"*"}, $k => $_, ${"*"}, $k => $_, ${"*"}]'
# Using "==" for string comparison (should use "===" instead).
'${"s:str"} == $x' 's~^.\d'
'$x == ${"s:str"}' 's~^.\d'
# Using "==" when comparing against falsy constant.
'false == $x'
'$x == false'
'null == $x'
'$x == null'
'false != $x'
'$x != false'
'null != $x'
'$x != null'
# Find unescaped "." (dots) inside regexps that match URLs.
'preg_match(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_match_all(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_replace(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_replace_callback(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_replace_callback_array(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_filter(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_grep(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
'preg_split(${"pat:str"}, ${"*"})' 'pat~[^\\]\.(com|ru|net|org|edu|gov|uk|de|lv)\b'
# Find new calls without parentheses.
'new $t'
# Find all if statements with a body without {}.
'if ($cond) $x' 'x!~^\{'
# or without expression
'if ($code) ${"expr"}'
# All silenced, disabled because used in some needed places.
# '@$_'
#
'$${"var"}'
'${${"var"}}'