mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
pf: some ICMP types that also have icmp_id, pointed out by markus@
ok henning markus
Approved by: so
Security: FreeBSD-SA-24:05.pf
Security: CVE-2024-6640
MFC after: 1 day
Obtained From: OpenBSD, mcbride <mcbride@openbsd.org> 8c0632cd274b
Sponsored by: Rubicon Communications, LLC ("Netgate")
(cherry picked from commit e296b0de9e)
(cherry picked from commit c5081b8d39)
This commit is contained in:
parent
9ceb7fda9d
commit
f924c2e1ff
1 changed files with 3 additions and 3 deletions
|
|
@ -1789,21 +1789,21 @@ pf_icmp_mapping(struct pf_pdesc *pd, u_int8_t type,
|
|||
*icmp_dir = PF_IN;
|
||||
case ICMP_TSTAMPREPLY:
|
||||
*icmptype = ICMP_TSTAMP;
|
||||
*icmpid = 0; /* Time is not a secret. */
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
break;
|
||||
|
||||
case ICMP_IREQ:
|
||||
*icmp_dir = PF_IN;
|
||||
case ICMP_IREQREPLY:
|
||||
*icmptype = ICMP_IREQ;
|
||||
*icmpid = 0; /* Nothing sane to match on! */
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
break;
|
||||
|
||||
case ICMP_MASKREQ:
|
||||
*icmp_dir = PF_IN;
|
||||
case ICMP_MASKREPLY:
|
||||
*icmptype = ICMP_MASKREQ;
|
||||
*icmpid = 0; /* Nothing sane to match on! */
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
break;
|
||||
|
||||
case ICMP_IPV6_WHEREAREYOU:
|
||||
|
|
|
|||
Loading…
Reference in a new issue