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

set -e

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

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