@@ -83,7 +83,10 @@ public static function scan($xml, DOMDocument $dom = null)
83
83
}
84
84
85
85
if (!self ::isPhpFpm ()) {
86
- $ loadEntities = libxml_disable_entity_loader (true );
86
+ if (LIBXML_VERSION < 20900 ) {
87
+ // this function no longer has an effect in PHP 8.0, but it's required in earlier versions
88
+ $ loadEntities = libxml_disable_entity_loader (true );
89
+ }
87
90
$ useInternalXmlErrors = libxml_use_internal_errors (true );
88
91
}
89
92
@@ -97,7 +100,9 @@ public static function scan($xml, DOMDocument $dom = null)
97
100
if (!$ result ) {
98
101
// Entity load to previous setting
99
102
if (!self ::isPhpFpm ()) {
100
- libxml_disable_entity_loader ($ loadEntities );
103
+ if (isset ($ loadEntities )) {
104
+ libxml_disable_entity_loader ($ loadEntities );
105
+ }
101
106
libxml_use_internal_errors ($ useInternalXmlErrors );
102
107
}
103
108
return false ;
@@ -117,7 +122,9 @@ public static function scan($xml, DOMDocument $dom = null)
117
122
118
123
// Entity load to previous setting
119
124
if (!self ::isPhpFpm ()) {
120
- libxml_disable_entity_loader ($ loadEntities );
125
+ if (isset ($ loadEntities )) {
126
+ libxml_disable_entity_loader ($ loadEntities );
127
+ }
121
128
libxml_use_internal_errors ($ useInternalXmlErrors );
122
129
}
123
130
@@ -167,10 +174,10 @@ public static function scanFile($file, DOMDocument $dom = null)
167
174
public static function isPhpFpm ()
168
175
{
169
176
$ isVulnerableVersion = (
170
- version_compare (PHP_VERSION , '5.5.22 ' , 'lt ' )
177
+ version_compare (PHP_VERSION , '5.5.22 ' , '< ' )
171
178
|| (
172
- version_compare (PHP_VERSION , '5.6 ' , 'gte ' )
173
- && version_compare (PHP_VERSION , '5.6.6 ' , 'lt ' )
179
+ version_compare (PHP_VERSION , '5.6 ' , '>= ' )
180
+ && version_compare (PHP_VERSION , '5.6.6 ' , '< ' )
174
181
)
175
182
);
176
183
0 commit comments