Skip to content

Commit effbfac

Browse files
committed
fix: right versions in spip_rce_form.rb ....
1 parent 53f0bc3 commit effbfac

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

modules/exploits/multi/http/spip_rce_form.rb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,13 @@ def check
8080

8181
print_status("SPIP Version detected: #{rversion}")
8282

83-
if rversion.between?(Rex::Version.new('2.0.0'), Rex::Version.new('2.0.20'))
83+
if rversion.between?(Rex::Version.new('4.2.0'), Rex::Version.new('4.2.1'))
8484
return Exploit::CheckCode::Appears
85-
elsif rversion.between?(Rex::Version.new('2.1.0'), Rex::Version.new('2.1.15'))
85+
elsif rversion.between?(Rex::Version.new('4.1.0'), Rex::Version.new('4.1.18'))
8686
return Exploit::CheckCode::Appears
87-
elsif rversion.between?(Rex::Version.new('3.0.0'), Rex::Version.new('3.0.2'))
87+
elsif rversion.between?(Rex::Version.new('4.0.0'), Rex::Version.new('4.0.10'))
88+
return Exploit::CheckCode::Appears
89+
elsif rversion.between?(Rex::Version.new('3.2.0'), Rex::Version.new('3.2.18'))
8890
return Exploit::CheckCode::Appears
8991
end
9092

0 commit comments

Comments
 (0)