new: added dns CHAOS banner grabber to syn.scan

This commit is contained in:
evilsocket 2019-04-22 12:33:48 +02:00
commit 385c8e3926
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
304 changed files with 40089 additions and 1 deletions

View file

@ -29,6 +29,8 @@ func (mod *SynScanner) bannerGrabber(arg async.Job) {
fn := tcpGrabber
if port == 80 || port == 443 || sport[0] == '8' {
fn = httpGrabber
} else if port == 53 || port == 5353 {
fn = dnsGrabber
}
mod.Debug("grabbing banner for %s:%d", ip, port)