Skip to content

Commit 184ec08

Browse files
committed
Fix EOL space warnings from msftidy
2 parents c5d1ad6 + 92a9519 commit 184ec08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/auxiliary/scanner/http/ntlm_info_enumeration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize
2828
register_options(
2929
[
3030
OptString.new('TARGET_URI', [ false, "Single target URI", nil]),
31-
OptPath.new('TARGET_URIS_FILE', [ false, "Path to list of URIs to request",
31+
OptPath.new('TARGET_URIS_FILE', [ false, "Path to list of URIs to request",
3232
File.join(Msf::Config.data_directory, "wordlists", "http_owa_common.txt")]),
3333
], self.class)
3434
end

modules/auxiliary/scanner/ssl/openssl_heartbleed.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def tls_postgres
228228
# postgresql TLS - works with all modern pgsql versions - 8.0 - 9.3
229229
# http://www.postgresql.org/docs/9.3/static/protocol-message-formats.html
230230
sock.get_once
231-
# the postgres SSLRequest packet is a int32(8) followed by a int16(1234),
231+
# the postgres SSLRequest packet is a int32(8) followed by a int16(1234),
232232
# int16(5679) in network format
233233
psql_sslrequest = [8].pack('N')
234234
psql_sslrequest << [1234, 5679].pack('n*')

0 commit comments

Comments
 (0)