Skip to content

Commit d9f5385

Browse files
committed
Land rapid7#7720, regex fix for clansphere_traversal
2 parents 3a998fa + da9ea0b commit d9f5385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/http/clansphere_traversal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def run_host(ip)
6767

6868
elsif res and res.code == 200
6969
pattern_end = " UTC +1 - Load:"
70-
data = res.body.scan(/\<div id\=\"bottom\"\>\n(.+)\n\x20{5}UTC.+/m).flatten[0].lstrip
70+
data = res.body.scan(/\<div id\=\"bottom\"\>\n(.+)\n\x20{5}UTC/).flatten[0].lstrip
7171
fname = datastore['FILE']
7272
p = store_loot(
7373
'clansphere.cms',

0 commit comments

Comments
 (0)