Update Auxiliary::UDPScanner to collect all responses by default
parent
61e23ad23e
commit
92d0e212d9
|
@ -180,7 +180,9 @@ module Auxiliary::UDPScanner
|
|||
end
|
||||
|
||||
# Called for each response packet
|
||||
def scanner_process(data, shost, sport)
|
||||
def scanner_process(data, shost, _sport)
|
||||
@results[shost] ||= []
|
||||
@results[shost] << data
|
||||
end
|
||||
|
||||
# Called before the scan block
|
||||
|
|
Loading…
Reference in New Issue