Skip to content

Commit fd5e25b

Browse files
committed
restored version check
1 parent 0b5da60 commit fd5e25b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

modules/auxiliary/scanner/http/epmp1000_dump_hashes.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ def is_app_epmp1000?
107107
epmp_ver = get_epmp_ver[1]
108108
if !epmp_ver.nil?
109109
print_good("#{rhost}:#{rport} - Running Cambium ePMP 1000 version #{epmp_ver}...")
110-
return true
110+
if "#{epmp_ver}" >= '2.5'
111+
print_error('This ePMP version is not vulnerable. Module will not continue.')
112+
return false
113+
else
114+
return true
115+
end
111116
else
112117
print_good("#{rhost}:#{rport} - Running Cambium ePMP 1000...")
113118
return true

0 commit comments

Comments
 (0)