new: net.probe is now be able to actively discover mDNS services

This commit is contained in:
evilsocket 2019-04-22 15:39:23 +02:00
commit 2bd768f065
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
2 changed files with 80 additions and 0 deletions

View file

@ -116,6 +116,10 @@ func (mod *Prober) Start() error {
mod.Fatal("%s", err)
}
if mod.probes.MDNS {
go mod.mdnsProber()
}
fromIP := mod.Session.Interface.IP
fromHW := mod.Session.Interface.HW
addresses := list.Expand()