Skip to content

Commit 9906c5c

Browse files
committed
Fix last accidental string coercion removal
1 parent 3f797e4 commit 9906c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/gather/dns_info.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def wildcard(target)
108108
:proto => 'UDP',
109109
:port => 53,
110110
:type => 'dns.wildcard',
111-
:data => "Wildcard IP for #{rendsub}.#{target} is: #{rr.address}"
111+
:data => "Wildcard IP for #{rendsub}.#{target} is: #{rr.address.to_s}"
112112
)
113113
end
114114
return true

0 commit comments

Comments
 (0)