Skip to content

Commit 6b4c131

Browse files
committed
Avoiding a future conflict with release
1 parent 32373c1 commit 6b4c131

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/auxiliary/dos/http/novell_file_reporter_heap_bof.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def run
6464
'version' => '1.1',
6565
'method' => 'POST',
6666
'ctype' => "text/xml",
67-
'data' => message,
67+
'data' => message
6868
})
6969
rescue ::Errno::ECONNRESET
7070
print_good("#{peer} - NFR Agent didn't answer, DoS seems successful")

modules/auxiliary/scanner/http/novell_file_reporter_fsfui_fileaccess.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def run_host(ip)
6969
'version' => '1.1',
7070
'method' => 'POST',
7171
'ctype' => "text/xml",
72-
'data' => message,
72+
'data' => message
7373
})
7474

7575
if res and res.code == 200 and res.body =~ /<RESULT><VERSION>1<\/VERSION><STATUS>0<\/STATUS><CFILE><\!\[CDATA\[(.*)\]\]><\/CFILE><\/RESULT>/m

modules/auxiliary/scanner/http/novell_file_reporter_srs_fileaccess.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def run_host(ip)
6969
'version' => '1.1',
7070
'method' => 'POST',
7171
'ctype' => "text/xml",
72-
'data' => message,
72+
'data' => message
7373
})
7474

7575
if res and res.code == 200 and not res.body =~ /<RESULT>/

modules/exploits/windows/novell/file_reporter_fsfui_upload.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def upload_file(filename, content)
133133
'version' => '1.1',
134134
'method' => 'POST',
135135
'ctype' => "text/xml",
136-
'data' => message,
136+
'data' => message
137137
})
138138

139139
if res and res.code == 200 and res.body.include? "<RESULT><VERSION>1</VERSION><STATUS>0</STATUS></RESULT>"

0 commit comments

Comments
 (0)