The branch stable/12 has been updated by kp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=9caf8a4a08223ee84cf0e63bde2c42adefe1e5f5

commit 9caf8a4a08223ee84cf0e63bde2c42adefe1e5f5
Author:     Kristof Provost <k...@freebsd.org>
AuthorDate: 2019-03-23 01:07:51 +0000
Commit:     Kristof Provost <k...@freebsd.org>
CommitDate: 2021-01-03 20:26:49 +0000

    pf tests: Fix accidental duplication of content
    
    Also use the correct name for the scapy test script.
    
    (cherry picked from commit dcccc93ae404ab8ead535efc4ddcd0fe9e3ee612)
---
 tests/sys/netpfil/pf/icmp.sh | 51 +-------------------------------------------
 1 file changed, 1 insertion(+), 50 deletions(-)

diff --git a/tests/sys/netpfil/pf/icmp.sh b/tests/sys/netpfil/pf/icmp.sh
index 5cc1a769c799..a02cbf45e34c 100755
--- a/tests/sys/netpfil/pf/icmp.sh
+++ b/tests/sys/netpfil/pf/icmp.sh
@@ -32,56 +32,7 @@ cve_2019_5598_body()
                "pass in proto udp to 198.51.100.3 port 53" \
                "pass out proto udp to 198.51.100.3 port 53"
 
-       atf_check -s exit:0 $(atf_get_srcdir)/CVE-2019-icmp.py \
-               --sendif ${epair_in}a \
-               --recvif ${epair_out}a \
-               --src 192.0.2.1 \
-               --to 198.51.100.3
-}
-
-cve_2019_5598_cleanup()
-{
-       pft_cleanup
-}
-
-atf_init_test_cases()
-{
-       atf_add_test_case "cve_2019_5598"
-}
-# $FreeBSD$
-
-. $(atf_get_srcdir)/utils.subr
-
-atf_test_case "cve_2019_5598" "cleanup"
-cve_2019_5598_head()
-{
-       atf_set descr 'Test CVE-2019-5598'
-       atf_set require.user root
-       atf_set require.progs scapy
-}
-
-cve_2019_5598_body()
-{
-       pft_init
-
-       epair_in=$(vnet_mkepair)
-       epair_out=$(vnet_mkepair)
-       ifconfig ${epair_in}a 192.0.2.1/24 up
-       ifconfig ${epair_out}a up
-
-       vnet_mkjail alcatraz ${epair_in}b ${epair_out}b
-       jexec alcatraz ifconfig ${epair_in}b 192.0.2.2/24 up
-       jexec alcatraz ifconfig ${epair_out}b 198.51.100.2/24 up
-       jexec alcatraz sysctl net.inet.ip.forwarding=1
-       jexec alcatraz arp -s 198.51.100.3 00:01:02:03:04:05
-       route add -net 198.51.100.0/24 192.0.2.2
-
-       jexec alcatraz pfctl -e
-       pft_set_rules alcatraz "block all" \
-               "pass in proto udp to 198.51.100.3 port 53" \
-               "pass out proto udp to 198.51.100.3 port 53"
-
-       atf_check -s exit:0 $(atf_get_srcdir)/CVE-2019-icmp.py \
+       atf_check -s exit:0 $(atf_get_srcdir)/CVE-2019-5598.py \
                --sendif ${epair_in}a \
                --recvif ${epair_out}a \
                --src 192.0.2.1 \
_______________________________________________
dev-commits-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"

Reply via email to