mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-21 05:43:35 -07:00
Update MDNS.py: Avoid spam loop on Windows 11 23H2 and above
This commit is contained in:
parent
538e6c0d0d
commit
6064cf765f
1 changed files with 2 additions and 0 deletions
|
@ -58,6 +58,8 @@ class MDNS(BaseRequestHandler):
|
||||||
data, soc = self.request
|
data, soc = self.request
|
||||||
Request_Name = Parse_MDNS_Name(data)
|
Request_Name = Parse_MDNS_Name(data)
|
||||||
MDNSType = Parse_IPV6_Addr(data)
|
MDNSType = Parse_IPV6_Addr(data)
|
||||||
|
if b"_dosvc" in data:
|
||||||
|
return
|
||||||
# Break out if we don't want to respond to this host
|
# Break out if we don't want to respond to this host
|
||||||
|
|
||||||
if (not Request_Name) or (RespondToThisHost(self.client_address[0].replace("::ffff:",""), Request_Name) is not True):
|
if (not Request_Name) or (RespondToThisHost(self.client_address[0].replace("::ffff:",""), Request_Name) is not True):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue