summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/owner/0001-flowtable-uaf
blob: 8b7a551cc69e9af005a0a3a11b12a53114aa4760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

set -e

$NFT -f - <<EOF
table t {
 flags owner
 flowtable f {
  hook ingress priority 0
  devices = { lo }
 }
}
EOF

# trigger uaf.
$NFT -f - <<EOF
table t {
 flags owner
 flowtable f {
  hook ingress priority 0
  devices = { lo }
 }
}
EOF