Browse Source

nfqws: weaken wireguard initiation recognition

pull/1056/head
bol-van 3 months ago
parent
commit
29ab747e5b
  1. 1
      docs/changes.txt
  2. 2
      nfq/protocol.c

1
docs/changes.txt

@ -446,3 +446,4 @@ v70
blockcheck: override all dialog questions and enable batch mode
blockcheck: parallel attempts
nfqws: weaken wireguard initiation recognition. use len=148 and data[0]=1 signature

2
nfq/protocol.c

@ -938,7 +938,7 @@ bool IsQUICInitial(const uint8_t *data, size_t len)
bool IsWireguardHandshakeInitiation(const uint8_t *data, size_t len)
{
return len==148 && data[0]==1 && data[1]==0 && data[2]==0 && data[3]==0;
return len==148 && data[0]==1;
}
bool IsDhtD1(const uint8_t *data, size_t len)
{

Loading…
Cancel
Save