Skip to content

Commit 8b3392a

Browse files
committed
changed check to Appears when vulnerable
1 parent 8f0d22d commit 8b3392a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/exploits/linux/http/openmetadata_auth_bypass_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def check
122122
version_number = Rex::Version.new(version.gsub(/[[:space:]]/, '')) unless version.nil?
123123
end
124124
return CheckCode::Detected('Could not retrieve the version information.') if version_number.nil?
125-
return CheckCode::Vulnerable("Version #{version_number}") if version_number <= Rex::Version.new('1.2.3')
125+
return CheckCode::Appears("Version #{version_number}") if version_number <= Rex::Version.new('1.2.3')
126126

127127
CheckCode::Safe("Version #{version_number}")
128128
end

0 commit comments

Comments
 (0)