CVE-2022-50396

Source
https://nvd.nist.gov/vuln/detail/CVE-2022-50396
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-50396.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2022-50396
Downstream
Related
Published
2025-09-18T13:33:14Z
Modified
2025-10-21T14:41:26.902970Z
Summary
net: sched: fix memory leak in tcindex_set_parms
Details

In the Linux kernel, the following vulnerability has been resolved:

net: sched: fix memory leak in tcindexsetparms

Syzkaller reports a memory leak as follows:

BUG: memory leak unreferenced object 0xffff88810c287f00 (size 256): comm "syz-executor105", pid 3600, jiffies 4294943292 (age 12.990s) hex dump (first 32 bytes): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ backtrace: [<ffffffff814cf9f0>] kmalloctrace+0x20/0x90 mm/slabcommon.c:1046 [<ffffffff839c9e07>] kmalloc include/linux/slab.h:576 [inline] [<ffffffff839c9e07>] kmallocarray include/linux/slab.h:627 [inline] [<ffffffff839c9e07>] kcalloc include/linux/slab.h:659 [inline] [<ffffffff839c9e07>] tcfextsinit include/net/pktcls.h:250 [inline] [<ffffffff839c9e07>] tcindexsetparms+0xa7/0xbe0 net/sched/clstcindex.c:342 [<ffffffff839caa1f>] tcindexchange+0xdf/0x120 net/sched/clstcindex.c:553 [<ffffffff8394db62>] tcnewtfilter+0x4f2/0x1100 net/sched/clsapi.c:2147 [<ffffffff8389e91c>] rtnetlinkrcvmsg+0x4dc/0x5d0 net/core/rtnetlink.c:6082 [<ffffffff839eba67>] netlinkrcvskb+0x87/0x1d0 net/netlink/afnetlink.c:2540 [<ffffffff839eab87>] netlinkunicastkernel net/netlink/afnetlink.c:1319 [inline] [<ffffffff839eab87>] netlinkunicast+0x397/0x4c0 net/netlink/afnetlink.c:1345 [<ffffffff839eb046>] netlinksendmsg+0x396/0x710 net/netlink/afnetlink.c:1921 [<ffffffff8383e796>] socksendmsgnosec net/socket.c:714 [inline] [<ffffffff8383e796>] socksendmsg+0x56/0x80 net/socket.c:734 [<ffffffff8383eb08>] syssendmsg+0x178/0x410 net/socket.c:2482 [<ffffffff83843678>] syssendmsg+0xa8/0x110 net/socket.c:2536 [<ffffffff838439c5>] _syssendmmsg+0x105/0x330 net/socket.c:2622 [<ffffffff83843c14>] _dosyssendmmsg net/socket.c:2651 [inline] [<ffffffff83843c14>] _sesyssendmmsg net/socket.c:2648 [inline] [<ffffffff83843c14>] _x64syssendmmsg+0x24/0x30 net/socket.c:2648 [<ffffffff84605fd5>] dosyscallx64 arch/x86/entry/common.c:50 [inline] [<ffffffff84605fd5>] dosyscall_64+0x35/0xb0 arch/x86/entry/common.c:80

[<ffffffff84800087>] entrySYSCALL64afterhwframe+0x63/0xcd

Kernel uses tcindex_change() to change an existing filter properties.

Yet the problem is that, during the process of changing, if old_r is retrieved from p->perfect, then kernel uses tcindexallocperfecthash() to newly allocate filter results, uses tcindexfilterresultinit() to clear the old filter result, without destroying its tcf_exts structure, which triggers the above memory leak.

To be more specific, there are only two source for the old_r, according to the tcindex_lookup(). old_r is retrieved from p->perfect, or old_r is retrieved from p->h.

  • If old_r is retrieved from p->perfect, kernel uses tcindexallocperfecthash() to newly allocate the filter results. Then r is assigned with cp->perfect + handle, which is newly allocated. So condition old_r && old_r != r is true in this situation, and kernel uses tcindexfilterresultinit() to clear the old filter result, without destroying its tcf_exts structure

  • If old_r is retrieved from p->h, then p->perfect is NULL according to the tcindexlookup(). Considering that cp->h is directly copied from p->h and p->perfect is NULL, r is assigned with tcindex_lookup(cp, handle), whose value should be the same as old_r, so condition old_r && old_r != r is false in this situation, kernel ignores using tcindexfilterresultinit() to clear the old filter result.

So only when old_r is retrieved from p->perfect does kernel use tcindexfilterresult_init() to clear the old filter result, which triggers the above memory leak.

Considering that there already exists a tcfilterwq workqueue to destroy the old tcindex_d ---truncated---

References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
53af9c793f644d5841d84d8e0ad83bd7ab47f3e0
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
55ac68b53f1cea1926ee2313afc5d66b91daad71
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
7a6fb69bbcb21e9ce13bdf18c008c268874f0480
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
b314f6c3512108d7a656c5caf07c82d1bbbdc0f1
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
18c3fa7a7fdbb4d21dafc8a7710ae2c1680930f6
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
6c55953e232ea668731091d111066521f3b7719b
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
7c183dc0af472dec33d2c0786a5e356baa8cad19
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
c4de6057e7c6654983acb63d939d26ac0d7bbf39
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
facc4405e8b7407e03216207b1d1d640127de0c8
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
3abebc503a5148072052c229c6b04b329a420ecd
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
399ab7fe0fa0d846881685fd4e57e9a8ef7559f7
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b9a24bb76bf611a5268ceffe04219e6ad264559b
Fixed
372ae77cf11d11fb118cbe2d37def9dd5f826abd

Affected versions

v4.*

v4.10
v4.10-rc1
v4.10-rc2
v4.10-rc3
v4.10-rc4
v4.10-rc5
v4.10-rc6
v4.10-rc7
v4.10-rc8
v4.11
v4.11-rc1
v4.11-rc2
v4.11-rc3
v4.11-rc4
v4.11-rc5
v4.11-rc6
v4.11-rc7
v4.11-rc8
v4.12
v4.12-rc1
v4.12-rc2
v4.12-rc3
v4.12-rc4
v4.12-rc5
v4.12-rc6
v4.12-rc7
v4.13
v4.13-rc1
v4.13-rc2
v4.13-rc3
v4.13-rc4
v4.13-rc5
v4.13-rc6
v4.13-rc7
v4.14
v4.14-rc1
v4.14-rc2
v4.14-rc3
v4.14-rc4
v4.14-rc5
v4.14-rc6
v4.14-rc7
v4.14-rc8
v4.14.1
v4.14.10
v4.14.100
v4.14.101
v4.14.102
v4.14.103
v4.14.104
v4.14.105
v4.14.106
v4.14.107
v4.14.108
v4.14.109
v4.14.11
v4.14.110
v4.14.111
v4.14.112
v4.14.113
v4.14.114
v4.14.115
v4.14.116
v4.14.117
v4.14.118
v4.14.119
v4.14.12
v4.14.120
v4.14.121
v4.14.122
v4.14.123
v4.14.124
v4.14.125
v4.14.126
v4.14.127
v4.14.128
v4.14.129
v4.14.13
v4.14.130
v4.14.131
v4.14.132
v4.14.133
v4.14.134
v4.14.135
v4.14.136
v4.14.137
v4.14.138
v4.14.139
v4.14.14
v4.14.140
v4.14.141
v4.14.142
v4.14.143
v4.14.144
v4.14.145
v4.14.146
v4.14.147
v4.14.148
v4.14.149
v4.14.15
v4.14.150
v4.14.151
v4.14.152
v4.14.153
v4.14.154
v4.14.155
v4.14.156
v4.14.157
v4.14.158
v4.14.159
v4.14.16
v4.14.160
v4.14.161
v4.14.162
v4.14.163
v4.14.164
v4.14.165
v4.14.166
v4.14.167
v4.14.168
v4.14.169
v4.14.17
v4.14.170
v4.14.171
v4.14.172
v4.14.173
v4.14.174
v4.14.175
v4.14.176
v4.14.177
v4.14.178
v4.14.179
v4.14.18
v4.14.180
v4.14.181
v4.14.182
v4.14.183
v4.14.184
v4.14.185
v4.14.186
v4.14.187
v4.14.188
v4.14.189
v4.14.19
v4.14.190
v4.14.191
v4.14.192
v4.14.193
v4.14.194
v4.14.195
v4.14.196
v4.14.197
v4.14.198
v4.14.199
v4.14.2
v4.14.20
v4.14.200
v4.14.201
v4.14.202
v4.14.203
v4.14.204
v4.14.205
v4.14.206
v4.14.207
v4.14.208
v4.14.209
v4.14.21
v4.14.210
v4.14.211
v4.14.212
v4.14.213
v4.14.214
v4.14.215
v4.14.216
v4.14.217
v4.14.218
v4.14.219
v4.14.22
v4.14.220
v4.14.221
v4.14.222
v4.14.223
v4.14.224
v4.14.225
v4.14.226
v4.14.227
v4.14.228
v4.14.229
v4.14.23
v4.14.230
v4.14.231
v4.14.232
v4.14.233
v4.14.234
v4.14.235
v4.14.236
v4.14.237
v4.14.238
v4.14.239
v4.14.24
v4.14.240
v4.14.241
v4.14.242
v4.14.243
v4.14.244
v4.14.245
v4.14.246
v4.14.247
v4.14.248
v4.14.249
v4.14.25
v4.14.250
v4.14.251
v4.14.252
v4.14.253
v4.14.254
v4.14.255
v4.14.256
v4.14.257
v4.14.258
v4.14.259
v4.14.26
v4.14.260
v4.14.261
v4.14.262
v4.14.263
v4.14.264
v4.14.265
v4.14.266
v4.14.267
v4.14.268
v4.14.269
v4.14.27
v4.14.270
v4.14.271
v4.14.272
v4.14.273
v4.14.274
v4.14.275
v4.14.276
v4.14.277
v4.14.278
v4.14.279
v4.14.28
v4.14.280
v4.14.281
v4.14.282
v4.14.283
v4.14.284
v4.14.285
v4.14.286
v4.14.287
v4.14.288
v4.14.289
v4.14.29
v4.14.290
v4.14.291
v4.14.292
v4.14.293
v4.14.294
v4.14.295
v4.14.296
v4.14.297
v4.14.298
v4.14.299
v4.14.3
v4.14.30
v4.14.300
v4.14.301
v4.14.302
v4.14.303
v4.14.304
v4.14.305
v4.14.306
v4.14.307
v4.14.31
v4.14.32
v4.14.33
v4.14.34
v4.14.35
v4.14.36
v4.14.37
v4.14.38
v4.14.39
v4.14.4
v4.14.40
v4.14.41
v4.14.42
v4.14.43
v4.14.44
v4.14.45
v4.14.46
v4.14.47
v4.14.48
v4.14.49
v4.14.5
v4.14.50
v4.14.51
v4.14.52
v4.14.53
v4.14.54
v4.14.55
v4.14.56
v4.14.57
v4.14.58
v4.14.59
v4.14.6
v4.14.60
v4.14.61
v4.14.62
v4.14.63
v4.14.64
v4.14.65
v4.14.66
v4.14.67
v4.14.68
v4.14.69
v4.14.7
v4.14.70
v4.14.71
v4.14.72
v4.14.73
v4.14.74
v4.14.75
v4.14.76
v4.14.77
v4.14.78
v4.14.79
v4.14.8
v4.14.80
v4.14.81
v4.14.82
v4.14.83
v4.14.84
v4.14.85
v4.14.86
v4.14.87
v4.14.88
v4.14.89
v4.14.9
v4.14.90
v4.14.91
v4.14.92
v4.14.93
v4.14.94
v4.14.95
v4.14.96
v4.14.97
v4.14.98
v4.14.99
v4.15
v4.15-rc1
v4.15-rc2
v4.15-rc3
v4.15-rc4
v4.15-rc5
v4.15-rc6
v4.15-rc7
v4.15-rc8
v4.15-rc9
v4.16
v4.16-rc1
v4.16-rc2
v4.16-rc3
v4.16-rc4
v4.16-rc5
v4.16-rc6
v4.16-rc7
v4.17
v4.17-rc1
v4.17-rc2
v4.17-rc3
v4.17-rc4
v4.17-rc5
v4.17-rc6
v4.17-rc7
v4.18
v4.18-rc1
v4.18-rc2
v4.18-rc3
v4.18-rc4
v4.18-rc5
v4.18-rc6
v4.18-rc7
v4.18-rc8
v4.19
v4.19-rc1
v4.19-rc2
v4.19-rc3
v4.19-rc4
v4.19-rc5
v4.19-rc6
v4.19-rc7
v4.19-rc8
v4.19.1
v4.19.10
v4.19.100
v4.19.101
v4.19.102
v4.19.103
v4.19.104
v4.19.105
v4.19.106
v4.19.107
v4.19.108
v4.19.109
v4.19.11
v4.19.110
v4.19.111
v4.19.112
v4.19.113
v4.19.114
v4.19.115
v4.19.116
v4.19.117
v4.19.118
v4.19.119
v4.19.12
v4.19.120
v4.19.121
v4.19.122
v4.19.123
v4.19.124
v4.19.125
v4.19.126
v4.19.127
v4.19.128
v4.19.129
v4.19.13
v4.19.130
v4.19.131
v4.19.132
v4.19.133
v4.19.134
v4.19.135
v4.19.136
v4.19.137
v4.19.138
v4.19.139
v4.19.14
v4.19.140
v4.19.141
v4.19.142
v4.19.143
v4.19.144
v4.19.145
v4.19.146
v4.19.147
v4.19.148
v4.19.149
v4.19.15
v4.19.150
v4.19.151
v4.19.152
v4.19.153
v4.19.154
v4.19.155
v4.19.156
v4.19.157
v4.19.158
v4.19.159
v4.19.16
v4.19.160
v4.19.161
v4.19.162
v4.19.163
v4.19.164
v4.19.165
v4.19.166
v4.19.167
v4.19.168
v4.19.169
v4.19.17
v4.19.170
v4.19.171
v4.19.172
v4.19.173
v4.19.174
v4.19.175
v4.19.176
v4.19.177
v4.19.178
v4.19.179
v4.19.18
v4.19.180
v4.19.181
v4.19.182
v4.19.183
v4.19.184
v4.19.185
v4.19.186
v4.19.187
v4.19.188
v4.19.189
v4.19.19
v4.19.190
v4.19.191
v4.19.192
v4.19.193
v4.19.194
v4.19.195
v4.19.196
v4.19.197
v4.19.198
v4.19.199
v4.19.2
v4.19.20
v4.19.200
v4.19.201
v4.19.202
v4.19.203
v4.19.204
v4.19.205
v4.19.206
v4.19.207
v4.19.208
v4.19.209
v4.19.21
v4.19.210
v4.19.211
v4.19.212
v4.19.213
v4.19.214
v4.19.215
v4.19.216
v4.19.217
v4.19.218
v4.19.219
v4.19.22
v4.19.220
v4.19.221
v4.19.222
v4.19.223
v4.19.224
v4.19.225
v4.19.226
v4.19.227
v4.19.228
v4.19.229
v4.19.23
v4.19.230
v4.19.231
v4.19.232
v4.19.233
v4.19.234
v4.19.235
v4.19.236
v4.19.237
v4.19.238
v4.19.239
v4.19.24
v4.19.240
v4.19.241
v4.19.242
v4.19.243
v4.19.244
v4.19.245
v4.19.246
v4.19.247
v4.19.248
v4.19.249
v4.19.25
v4.19.250
v4.19.251
v4.19.252
v4.19.253
v4.19.254
v4.19.255
v4.19.256
v4.19.257
v4.19.258
v4.19.259
v4.19.26
v4.19.260
v4.19.261
v4.19.262
v4.19.263
v4.19.264
v4.19.265
v4.19.266
v4.19.267
v4.19.268
v4.19.269
v4.19.27
v4.19.270
v4.19.271
v4.19.272
v4.19.273
v4.19.274
v4.19.275
v4.19.28
v4.19.29
v4.19.3
v4.19.30
v4.19.31
v4.19.32
v4.19.33
v4.19.34
v4.19.35
v4.19.36
v4.19.37
v4.19.38
v4.19.39
v4.19.4
v4.19.40
v4.19.41
v4.19.42
v4.19.43
v4.19.44
v4.19.45
v4.19.46
v4.19.47
v4.19.48
v4.19.49
v4.19.5
v4.19.50
v4.19.51
v4.19.52
v4.19.53
v4.19.54
v4.19.55
v4.19.56
v4.19.57
v4.19.58
v4.19.59
v4.19.6
v4.19.60
v4.19.61
v4.19.62
v4.19.63
v4.19.64
v4.19.65
v4.19.66
v4.19.67
v4.19.68
v4.19.69
v4.19.7
v4.19.70
v4.19.71
v4.19.72
v4.19.73
v4.19.74
v4.19.75
v4.19.76
v4.19.77
v4.19.78
v4.19.79
v4.19.8
v4.19.80
v4.19.81
v4.19.82
v4.19.83
v4.19.84
v4.19.85
v4.19.86
v4.19.87
v4.19.88
v4.19.89
v4.19.9
v4.19.90
v4.19.91
v4.19.92
v4.19.93
v4.19.94
v4.19.95
v4.19.96
v4.19.97
v4.19.98
v4.19.99
v4.20
v4.20-rc1
v4.20-rc2
v4.20-rc3
v4.20-rc4
v4.20-rc5
v4.20-rc6
v4.20-rc7
v4.8
v4.8-rc3
v4.8-rc4
v4.8-rc5
v4.8-rc6
v4.8-rc7
v4.8-rc8
v4.9
v4.9-rc1
v4.9-rc2
v4.9-rc3
v4.9-rc4
v4.9-rc5
v4.9-rc6
v4.9-rc7
v4.9-rc8

v5.*

v5.0
v5.0-rc1
v5.0-rc2
v5.0-rc3
v5.0-rc4
v5.0-rc5
v5.0-rc6
v5.0-rc7
v5.0-rc8
v5.1
v5.1-rc1
v5.1-rc2
v5.1-rc3
v5.1-rc4
v5.1-rc5
v5.1-rc6
v5.1-rc7
v5.10
v5.10-rc1
v5.10-rc2
v5.10-rc3
v5.10-rc4
v5.10-rc5
v5.10-rc6
v5.10-rc7
v5.10.1
v5.10.10
v5.10.100
v5.10.101
v5.10.102
v5.10.103
v5.10.104
v5.10.105
v5.10.106
v5.10.107
v5.10.108
v5.10.109
v5.10.11
v5.10.110
v5.10.111
v5.10.112
v5.10.113
v5.10.114
v5.10.115
v5.10.116
v5.10.117
v5.10.118
v5.10.119
v5.10.12
v5.10.120
v5.10.121
v5.10.122
v5.10.123
v5.10.124
v5.10.125
v5.10.126
v5.10.127
v5.10.128
v5.10.129
v5.10.13
v5.10.130
v5.10.131
v5.10.132
v5.10.133
v5.10.134
v5.10.135
v5.10.136
v5.10.137
v5.10.138
v5.10.139
v5.10.14
v5.10.140
v5.10.141
v5.10.142
v5.10.143
v5.10.144
v5.10.145
v5.10.146
v5.10.147
v5.10.148
v5.10.149
v5.10.15
v5.10.150
v5.10.151
v5.10.152
v5.10.153
v5.10.154
v5.10.155
v5.10.156
v5.10.157
v5.10.158
v5.10.159
v5.10.16
v5.10.160
v5.10.161
v5.10.162
v5.10.163
v5.10.164
v5.10.165
v5.10.166
v5.10.167
v5.10.168
v5.10.169
v5.10.17
v5.10.170
v5.10.171
v5.10.172
v5.10.18
v5.10.19
v5.10.2
v5.10.20
v5.10.21
v5.10.22
v5.10.23
v5.10.24
v5.10.25
v5.10.26
v5.10.27
v5.10.28
v5.10.29
v5.10.3
v5.10.30
v5.10.31
v5.10.32
v5.10.33
v5.10.34
v5.10.35
v5.10.36
v5.10.37
v5.10.38
v5.10.39
v5.10.4
v5.10.40
v5.10.41
v5.10.42
v5.10.43
v5.10.44
v5.10.45
v5.10.46
v5.10.47
v5.10.48
v5.10.49
v5.10.5
v5.10.50
v5.10.51
v5.10.52
v5.10.53
v5.10.54
v5.10.55
v5.10.56
v5.10.57
v5.10.58
v5.10.59
v5.10.6
v5.10.60
v5.10.61
v5.10.62
v5.10.63
v5.10.64
v5.10.65
v5.10.66
v5.10.67
v5.10.68
v5.10.69
v5.10.7
v5.10.70
v5.10.71
v5.10.72
v5.10.73
v5.10.74
v5.10.75
v5.10.76
v5.10.77
v5.10.78
v5.10.79
v5.10.8
v5.10.80
v5.10.81
v5.10.82
v5.10.83
v5.10.84
v5.10.85
v5.10.86
v5.10.87
v5.10.88
v5.10.89
v5.10.9
v5.10.90
v5.10.91
v5.10.92
v5.10.93
v5.10.94
v5.10.95
v5.10.96
v5.10.97
v5.10.98
v5.10.99
v5.11
v5.11-rc1
v5.11-rc2
v5.11-rc3
v5.11-rc4
v5.11-rc5
v5.11-rc6
v5.11-rc7
v5.12
v5.12-rc1
v5.12-rc1-dontuse
v5.12-rc2
v5.12-rc3
v5.12-rc4
v5.12-rc5
v5.12-rc6
v5.12-rc7
v5.12-rc8
v5.13
v5.13-rc1
v5.13-rc2
v5.13-rc3
v5.13-rc4
v5.13-rc5
v5.13-rc6
v5.13-rc7
v5.14
v5.14-rc1
v5.14-rc2
v5.14-rc3
v5.14-rc4
v5.14-rc5
v5.14-rc6
v5.14-rc7
v5.15
v5.15-rc1
v5.15-rc2
v5.15-rc3
v5.15-rc4
v5.15-rc5
v5.15-rc6
v5.15-rc7
v5.15.1
v5.15.10
v5.15.11
v5.15.12
v5.15.13
v5.15.14
v5.15.15
v5.15.16
v5.15.17
v5.15.18
v5.15.19
v5.15.2
v5.15.20
v5.15.21
v5.15.22
v5.15.23
v5.15.24
v5.15.25
v5.15.26
v5.15.27
v5.15.28
v5.15.29
v5.15.3
v5.15.30
v5.15.31
v5.15.32
v5.15.33
v5.15.34
v5.15.35
v5.15.36
v5.15.37
v5.15.38
v5.15.39
v5.15.4
v5.15.40
v5.15.41
v5.15.42
v5.15.43
v5.15.44
v5.15.45
v5.15.46
v5.15.47
v5.15.48
v5.15.49
v5.15.5
v5.15.50
v5.15.51
v5.15.52
v5.15.53
v5.15.54
v5.15.55
v5.15.56
v5.15.57
v5.15.58
v5.15.59
v5.15.6
v5.15.60
v5.15.61
v5.15.62
v5.15.63
v5.15.64
v5.15.65
v5.15.66
v5.15.67
v5.15.68
v5.15.69
v5.15.7
v5.15.70
v5.15.71
v5.15.72
v5.15.73
v5.15.74
v5.15.75
v5.15.76
v5.15.77
v5.15.78
v5.15.79
v5.15.8
v5.15.80
v5.15.81
v5.15.82
v5.15.83
v5.15.84
v5.15.85
v5.15.86
v5.15.87
v5.15.88
v5.15.89
v5.15.9
v5.15.90
v5.15.91
v5.15.92
v5.15.93
v5.15.94
v5.15.95
v5.15.96
v5.15.97
v5.15.98
v5.15.99
v5.16
v5.16-rc1
v5.16-rc2
v5.16-rc3
v5.16-rc4
v5.16-rc5
v5.16-rc6
v5.16-rc7
v5.16-rc8
v5.17
v5.17-rc1
v5.17-rc2
v5.17-rc3
v5.17-rc4
v5.17-rc5
v5.17-rc6
v5.17-rc7
v5.17-rc8
v5.18
v5.18-rc1
v5.18-rc2
v5.18-rc3
v5.18-rc4
v5.18-rc5
v5.18-rc6
v5.18-rc7
v5.19
v5.19-rc1
v5.19-rc2
v5.19-rc3
v5.19-rc4
v5.19-rc5
v5.19-rc6
v5.19-rc7
v5.19-rc8
v5.2
v5.2-rc1
v5.2-rc2
v5.2-rc3
v5.2-rc4
v5.2-rc5
v5.2-rc6
v5.2-rc7
v5.3
v5.3-rc1
v5.3-rc2
v5.3-rc3
v5.3-rc4
v5.3-rc5
v5.3-rc6
v5.3-rc7
v5.3-rc8
v5.4
v5.4-rc1
v5.4-rc2
v5.4-rc3
v5.4-rc4
v5.4-rc5
v5.4-rc6
v5.4-rc7
v5.4-rc8
v5.4.1
v5.4.10
v5.4.100
v5.4.101
v5.4.102
v5.4.103
v5.4.104
v5.4.105
v5.4.106
v5.4.107
v5.4.108
v5.4.109
v5.4.11
v5.4.110
v5.4.111
v5.4.112
v5.4.113
v5.4.114
v5.4.115
v5.4.116
v5.4.117
v5.4.118
v5.4.119
v5.4.12
v5.4.120
v5.4.121
v5.4.122
v5.4.123
v5.4.124
v5.4.125
v5.4.126
v5.4.127
v5.4.128
v5.4.129
v5.4.13
v5.4.130
v5.4.131
v5.4.132
v5.4.133
v5.4.134
v5.4.135
v5.4.136
v5.4.137
v5.4.138
v5.4.139
v5.4.14
v5.4.140
v5.4.141
v5.4.142
v5.4.143
v5.4.144
v5.4.145
v5.4.146
v5.4.147
v5.4.148
v5.4.149
v5.4.15
v5.4.150
v5.4.151
v5.4.152
v5.4.153
v5.4.154
v5.4.155
v5.4.156
v5.4.157
v5.4.158
v5.4.159
v5.4.16
v5.4.160
v5.4.161
v5.4.162
v5.4.163
v5.4.164
v5.4.165
v5.4.166
v5.4.167
v5.4.168
v5.4.169
v5.4.17
v5.4.170
v5.4.171
v5.4.172
v5.4.173
v5.4.174
v5.4.175
v5.4.176
v5.4.177
v5.4.178
v5.4.179
v5.4.18
v5.4.180
v5.4.181
v5.4.182
v5.4.183
v5.4.184
v5.4.185
v5.4.186
v5.4.187
v5.4.188
v5.4.189
v5.4.19
v5.4.190
v5.4.191
v5.4.192
v5.4.193
v5.4.194
v5.4.195
v5.4.196
v5.4.197
v5.4.198
v5.4.199
v5.4.2
v5.4.20
v5.4.200
v5.4.201
v5.4.202
v5.4.203
v5.4.204
v5.4.205
v5.4.206
v5.4.207
v5.4.208
v5.4.209
v5.4.21
v5.4.210
v5.4.211
v5.4.212
v5.4.213
v5.4.214
v5.4.215
v5.4.216
v5.4.217
v5.4.218
v5.4.219
v5.4.22
v5.4.220
v5.4.221
v5.4.222
v5.4.223
v5.4.224
v5.4.225
v5.4.226
v5.4.227
v5.4.228
v5.4.229
v5.4.23
v5.4.230
v5.4.231
v5.4.232
v5.4.233
v5.4.234
v5.4.24
v5.4.25
v5.4.26
v5.4.27
v5.4.28
v5.4.29
v5.4.3
v5.4.30
v5.4.31
v5.4.32
v5.4.33
v5.4.34
v5.4.35
v5.4.36
v5.4.37
v5.4.38
v5.4.39
v5.4.4
v5.4.40
v5.4.41
v5.4.42
v5.4.43
v5.4.44
v5.4.45
v5.4.46
v5.4.47
v5.4.48
v5.4.49
v5.4.5
v5.4.50
v5.4.51
v5.4.52
v5.4.53
v5.4.54
v5.4.55
v5.4.56
v5.4.57
v5.4.58
v5.4.59
v5.4.6
v5.4.60
v5.4.61
v5.4.62
v5.4.63
v5.4.64
v5.4.65
v5.4.66
v5.4.67
v5.4.68
v5.4.69
v5.4.7
v5.4.70
v5.4.71
v5.4.72
v5.4.73
v5.4.74
v5.4.75
v5.4.76
v5.4.77
v5.4.78
v5.4.79
v5.4.8
v5.4.80
v5.4.81
v5.4.82
v5.4.83
v5.4.84
v5.4.85
v5.4.86
v5.4.87
v5.4.88
v5.4.89
v5.4.9
v5.4.90
v5.4.91
v5.4.92
v5.4.93
v5.4.94
v5.4.95
v5.4.96
v5.4.97
v5.4.98
v5.4.99
v5.5
v5.5-rc1
v5.5-rc2
v5.5-rc3
v5.5-rc4
v5.5-rc5
v5.5-rc6
v5.5-rc7
v5.6
v5.6-rc1
v5.6-rc2
v5.6-rc3
v5.6-rc4
v5.6-rc5
v5.6-rc6
v5.6-rc7
v5.7
v5.7-rc1
v5.7-rc2
v5.7-rc3
v5.7-rc4
v5.7-rc5
v5.7-rc6
v5.7-rc7
v5.8
v5.8-rc1
v5.8-rc2
v5.8-rc3
v5.8-rc4
v5.8-rc5
v5.8-rc6
v5.8-rc7
v5.9
v5.9-rc1
v5.9-rc2
v5.9-rc3
v5.9-rc4
v5.9-rc5
v5.9-rc6
v5.9-rc7
v5.9-rc8

v6.*

v6.0
v6.0-rc1
v6.0-rc2
v6.0-rc3
v6.0-rc4
v6.0-rc5
v6.0-rc6
v6.0-rc7
v6.0.1
v6.0.10
v6.0.11
v6.0.12
v6.0.13
v6.0.14
v6.0.15
v6.0.16
v6.0.17
v6.0.18
v6.0.2
v6.0.3
v6.0.4
v6.0.5
v6.0.6
v6.0.7
v6.0.8
v6.0.9
v6.1
v6.1-rc1
v6.1-rc2
v6.1-rc3
v6.1-rc4
v6.1-rc5
v6.1-rc6
v6.1-rc7
v6.1-rc8
v6.1.1
v6.1.10
v6.1.11
v6.1.12
v6.1.13
v6.1.14
v6.1.15
v6.1.16
v6.1.17
v6.1.2
v6.1.3
v6.1.4
v6.1.5
v6.1.6
v6.1.7
v6.1.8
v6.1.9
v6.2
v6.2-rc1
v6.2-rc2
v6.2-rc3
v6.2-rc4
v6.2-rc5
v6.2-rc6
v6.2-rc7
v6.2-rc8
v6.2.1
v6.2.2
v6.2.3
v6.2.4

Database specific

vanir_signatures

[
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "144208992936587990443195497850869299928",
            "length": 105.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "__tcindex_destroy_rexts"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-0c0db802",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "280509759645403063816048414707961551129",
                "87255314780806408175111838736471439425",
                "85679875509663948891831683073918230205",
                "106726959524410161074059465341348582030",
                "173953278764422259801077115196716493577",
                "283338151931155227626273792764506139005",
                "112843748784262856320062143624922468179",
                "324032481686015241149291932645101263223",
                "289820747823174880111657579046727940677",
                "58741854424471884854561144608183851954",
                "78096918839141160783168673789265855832",
                "113961087189024871125826850856436397633",
                "170819226942458984607250911799707390027",
                "116673882892893519649744231976698663313",
                "315949362517317337505920832492944381463",
                "16784360042360242181890659813882971703",
                "222684563972809236606037568266265043030",
                "83857582623246311274535970491683548616",
                "152152782935612753066787383215152240157",
                "295329092466858377006781187090466337964",
                "263121808432530155485435220919417173262",
                "111810418439721695474853884581327141099",
                "268112809851274815389501942141633242199",
                "14063065001968004723226222103302088629",
                "227451388042689280995398368786673650476",
                "298493622905640847433210954913426526197",
                "115751960324797183528581869418564694839",
                "153666517228301816809392401657637867584",
                "63578466610097713994361490197770449472",
                "62964043825328611443040116198555218565",
                "86470885282980506530220888055016439864",
                "117338815668654787364684460301622980072",
                "141482297200784107917244286714106493849",
                "338315075300528852708343033596062462962",
                "239984822892279274361877858597604042349",
                "79507836787792920661291813112523753945",
                "312574670387073468274570417290452001272",
                "196537381283612601051316266033026052939",
                "234310263376146586672966794850932771598",
                "262311237359193088397601334913769764237",
                "240950197204853947949224573588835809114",
                "225721488238263902336167360301370178683",
                "62534489959762394338739123369432392256",
                "144544356340282951786934538718533837546",
                "275940544354334416316849374550707434645",
                "5695903217408373765548750635083186482",
                "42211306710638608541439378723967238791",
                "28423085406884141770291320344860113012",
                "186508691857372055579087798599972137768",
                "33788905309274213297437397853268300182",
                "2016783880748508095173305560241337927",
                "277775777158664925694407872796133967975",
                "218211852432135184348102362874033241915",
                "80383727438537386502435372843913159091",
                "43418492349102436908068850774128925464",
                "304003027323322737969110185596396496079",
                "259848128524004109290620031372993261300",
                "54463142380830072379687916161461051079",
                "128856904507065486096479776220231303412",
                "202412101349962380642108965490134833576",
                "287864931704080940242946060251227489147",
                "89922103949487054695122035127342888630",
                "187238842718234995941042956228572705488",
                "142996156003025408619391589889819048968",
                "331709960880177880488259812626655473277",
                "131431954155271019212845603216673731160",
                "183535690494189594441091063115932690404",
                "245507297666383602103828533269146803425",
                "157828707949454346154026940894384760299",
                "112521102359626494227662584188257380481",
                "188289747144826208295476687990054402274",
                "120707862593781096085401504887170562180",
                "216949313251142731093602010183494324076",
                "131647966769252403739375785601646387539",
                "101871483757360487983839464468205867284",
                "296569621731333118363987656274423091950",
                "290709644905731080305023640037975200110",
                "304714862597954228031985447714258404159",
                "66085333890302857344191873247587174328",
                "43265884222451101080980435490879520887",
                "333072565071025068987908323238703910400",
                "320009293277985699966236971413438814713",
                "145965085577835362970595664873661560566",
                "227592016550289098882706584627094918648",
                "229656092075817248347207764598961186514",
                "3300518503797441812213158588918859997",
                "11793149567308590970194151682564689092",
                "262232748740413180947337484371375162234",
                "86340949401937179010929132361705529874",
                "104676631178541917392748741248801092940",
                "327166573890974978894900962809241573750",
                "108693489893892639694285823141797162773",
                "116800671786638542748319297689362421626",
                "49265632809800838106148761142291041739",
                "300011395731947654830876104010601241748",
                "87074380968164065111550028765479077952",
                "82590460548521573834944361762164437157",
                "221602778868813634764719860588577097202",
                "316284730413684179739642680292961522241",
                "321323257583478210858979807924600412662",
                "318439655719760911107372215547536636183",
                "63762041748865163277415167352534001552",
                "211183461691816067257120744796542140351",
                "226407333250124804926237616140473263298",
                "68574327597664215045460567806827438961",
                "54833253457704908211160753500742573919",
                "27719203314876126500799708364819199696",
                "270226196579505335162348144529937674720",
                "316592606338088400748415785626432221745",
                "282676487081422898159628390238790413903",
                "104132577987651718046643134754013379388",
                "183771235377800286832028658197841534109",
                "293159869458720666822897176714713217516",
                "183407482537902167613714990756642247137",
                "35283942645810103236252932901542726454",
                "312304399588454986320428986659587914107",
                "149048122160093214149877734462975094305",
                "309699985605680854069134285484434055612",
                "191353156174023746471065643372224448497",
                "228699472226662466817768817485213132984",
                "71323348261878733430089033761000555687",
                "222877837019833836852857970164094505061",
                "88765235074606162161146930905841065589",
                "9144598693691478101759817789385395677",
                "217847286658587792964760472321803313944",
                "29175489963452384825082033915787361385",
                "4408043019786047639239230334323661924",
                "189842068062543025589467554846808685520",
                "1744210047202155612583694711754877538",
                "135575330999417474415026093107144826482",
                "151205837120695112387046431163401152833",
                "276899545633694164748088506233720837032",
                "214987588356397284384341266484698031638",
                "333090793963631561883571212254146438446",
                "102801892049205125285674858489895500396",
                "82522847750844066829264762689251178880",
                "27823654693333102020187016763099597006",
                "320549113189610134984688940988612611021",
                "240012610660997607321459552394392051551",
                "52670761255741034486634842545557788406",
                "190519700393662763309879029615044026326",
                "54525313114588312328041249657480999836",
                "197710071905579872305207734737963353092",
                "263562539322969449745102785641650805090",
                "91739743044249914291936828153206295504",
                "316071062446369962883663404468390839471",
                "1876713579470234763013481279031427624",
                "234373327437101924249992059415074650635",
                "262339856740058183469649682324224107067",
                "6819290014365611672915796387309999585",
                "276571235307141975492301254868245017632",
                "237839133733707958986412564900169074424",
                "152888638129006243011829851580831327414",
                "212026407778777252785353347234229688922",
                "332419155096853819670181071840171319929",
                "234278681678639515915875108594456520058",
                "184710605675337775895725662789718505177",
                "61252829163312286703660992305427700062",
                "917464932127782197407757411494308345",
                "135717080815455793966832332456745446252",
                "79758074092798921344775144452329046913",
                "240719642027739345239194224568325736524",
                "273758902531474142246230687150950472801",
                "46344092656359102545420920334453784825",
                "52313493995637146742950664911687854940",
                "181677997641106304906014493649514784681",
                "39547027238224157041618573633391165515",
                "59503780132164714480951872435180838330",
                "270058344936722647476767290738486853975",
                "127756910734785529354693921464684841171",
                "136956619615216478138864470188548750906",
                "229025659082046951158709931566297002269",
                "115197542321549091565853655191309631285",
                "228361136768102451958434775394261381194",
                "34905790965905401086452219952633650187",
                "286303637615574669786721564019218219509",
                "73121719433142426476856505799209859183",
                "76048282923733236878700578226706369941",
                "278857950584386540611490173997284996074",
                "193396289632825021983977451875450691113",
                "155157898392970080082353937968991633805",
                "173519582255315814639097527634271003143",
                "305052988042946421070313166305311198119",
                "160872261284696945024404795689484577413",
                "1355958306602749795488105278556964152",
                "140470677575658483507827410576642657463",
                "95923432853561166235403583498907479122",
                "40023738719733024175751979516062128155",
                "307059241121570913413453078444835491692",
                "321824746553878750075713940698267618482",
                "309485986641332565962123510456677968232",
                "272345688053162927630579846821200979025",
                "75195910210272040976601872145426700548",
                "148307990700902091637395825462779784894",
                "147014156279886858909510650051758562580",
                "238660174302910071433031120831997618387",
                "208543091647634643258191156514820593600",
                "287561653990900672299869789396423616839",
                "224609335426449525523143970626368577265",
                "335898702848492504944182685657621244789",
                "308508890049955099192494616955309925556",
                "201052161498966996214578287423702267283",
                "55099397114817282347607177004510062738",
                "325495542428246900214066879378333697918",
                "233820815068519081400619601601474341968",
                "228862230294503343777051070731165253359",
                "169597112994660035965181635475807049230",
                "139763312396892804868108702775258712431",
                "18513917717999814922619985023996535706",
                "271578120177697455275391971074037483558",
                "189192774398855109678500961357597508068",
                "84815612108575128297802171256650856307",
                "21502196799753593189784721575548696337",
                "208775982188854443127054027899577346812",
                "105203641113750144074754044791680564097",
                "310112505696584831934008371162211486427",
                "285374844968861836072511956336830868387",
                "303599472171609318737875904533047557947",
                "61565683738729418654821535068495540983",
                "227947374850153001773575401145084093092",
                "134330703349141432511553732589569323360",
                "75195910210272040976601872145426700548",
                "203558923229374278828752990248472103701",
                "83816778229273550600901357281805847989",
                "250337729079465301486908970402330007113",
                "85874043568047799682809447435099465343",
                "59849578748031096175193737530423472556",
                "257399278500263828615446071397778584845",
                "63712631933064965338297863854844212714",
                "78984763774968572084397882760041643104",
                "179869406612113975032574107956552064014",
                "123329799133752054810069943247050747268",
                "48495491601900869955319005466436412721",
                "256278271105231064440350561119641775430",
                "158523591339753806627381430707481082120",
                "123837437766095686741287944367503493452",
                "55586247247463864750006627368811722067",
                "306712794187050112824984393734028647963",
                "81311367342478197490534570461159073701",
                "10384796173098224266830488852669285738",
                "67513218194496279950326945359851097003",
                "181206749718214460296517375484370200189",
                "292940993917757859808547576042431038915",
                "185022867239638570158423204097547066565",
                "48347252208020382806690033447904778267",
                "245600729109563209637982618657347485203",
                "70136138322367937661439993015913147258",
                "105436844392448214034551755410749461787",
                "115062358439013627787237665877460665853",
                "258536822026171211109538842956558509100",
                "262453563536474669171732139038998203774",
                "314433388932738312387917453166701825649",
                "148011014991749164113834718651702855979",
                "211097790680457036269452077886961414137",
                "332340774768076439627967536910147025378",
                "197445894904176718712318590198276367515",
                "310218204455537504917128679234474760916",
                "301859314172655255852513063248398404566",
                "205656590445752532031353566520905468531",
                "181847965459748467025590737310931147639",
                "108311659506516710800359247379226486615",
                "75190531018881031504968043854149037473",
                "284453467424623146916306881439900721248",
                "265416729929591398422012329625608017498",
                "155478921186324905815235004575972392150",
                "312138549585818393203623772737492564364",
                "296629561267177944600906621996451695971",
                "101789146767076950590478085490793889322",
                "101970912299924183886825092611245759214",
                "55175166394920713975722437871178108556",
                "178579372365244500121110004715979779055",
                "97631906100493816724448360248374827866",
                "134873431885061391696236112022980980801",
                "271206466000747684358997610730145199164",
                "146430353047065604354046389287182153808",
                "209206726439041007857997488657727110346",
                "61340146334396589521281729911954874335",
                "156409451048540887346709004911541719024",
                "279344226956421435005039364176694066349",
                "168002471106150902091359512158598539862",
                "244603371643824702139107100081976440540",
                "213122642162075737839522323824071149023",
                "22315024398850198426293971122469692028",
                "339814288572357173670966378363953522837",
                "120002788666848887007219908068824376051",
                "249285366904919438761225296928522995203",
                "274034299651343892667137164247877682095",
                "142278430149355398484976617964070575476",
                "74961319306809428273256843169315139462",
                "155122737261391809925799587351039445077",
                "295872734662387570530624569048667488757",
                "144269197431054085802636132924627988660",
                "179003489754050567022136112059202617215",
                "163376580922509824688376718692934920418",
                "197110125576618884517482825931184407654",
                "281735545752890838539258599862357545144",
                "36477420363485848364561385907648357824",
                "124050189618788024262208989043202395055",
                "33543807757154315990966827513793912555",
                "70719149033469202140763214228528757282",
                "176165629947711740357000367492533960590",
                "178456293502922201221105802773325128799",
                "116072447547671853421993394753080771945",
                "85159185373000796387551291978293857294",
                "268434955775367011260812228171319699984",
                "248097940671435335390534685317659685580",
                "139519794914263351277080992555004915577",
                "61752925333516445087712738406215635062",
                "261532016797575938869547985506638343712",
                "330288028610655423708255400272919616044",
                "282013180010070150076202412074513260686",
                "185106174012397431622955792498639396577",
                "260035256039079237363375691650083831928",
                "325948800657550692796003324489621146730",
                "292993984453579881848749338678620406932",
                "305181234726480817747406001868470350004",
                "226259716953923643684767400067332248755",
                "129760807545326470104159505396711071052",
                "156651997020654637431685474680674235896",
                "208401415400129731371408650552650702505",
                "314330367477973503316568008922044880375",
                "156945719265680396083341924008869538843",
                "190630491983433998069812966408879906609",
                "260299425858072933084382470389229773009",
                "71081445141378942956779401154093801208",
                "265252331836773796840450302385907600803",
                "139277351666562565333884670089408338601",
                "290702965135899939210827508486569658279",
                "16717666295724702055624089329185435960",
                "33081560449760766414095998696160931797",
                "20459425786320782000315876007216379376",
                "15497060342839189107374443153886868786",
                "168064609048296942938582221214109828601",
                "336291587636964225492755760208306357168",
                "15954350202235836013582808141035291843",
                "100389032338800887877882397345433915513",
                "301643905583909935373861635724841811071",
                "131647299121401062825106837152185612408",
                "208662449287599232388276354900961527879",
                "12491449048311831353342603420306087837",
                "6672956455819329698768293205506340204",
                "231884963029348658265457652123141184458",
                "329306666342224772688453728494097535580",
                "63562396274442563701261481579473648218",
                "158687664237779265433373976509396195536",
                "60736073326225098353542157927916822610",
                "159055554470867356813452310580776185047",
                "71973892600656436756717149714887794452",
                "133522766715646126867901228160053988905",
                "140209237722427451511879551739003326358",
                "117088171354959207957550534831155414308",
                "255900654678103886443537354502303422912",
                "296889040349448830391713302677503417167",
                "39193336984623146981118976514649038326",
                "315673143086554403845212881720889126219",
                "150270089164112948815844134849755738934",
                "19466361905484695237023186334259595134",
                "124813236863500517053826615104146849730",
                "17773037634670104084203170524094354036",
                "230266530257917704796456262629435739997",
                "333630772612234481140220109076054253354",
                "86840290917603698006448245714002076600",
                "60224766630594419597712086560298210055",
                "240775958401791232075693174596762235607",
                "83823532540821411961214463930459968590",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "80212646744865450307741305536260793601",
                "56304678400035904860412651896454432527",
                "158287538998792423399538922114057755993",
                "310338605315373420950229330880347507782",
                "197635271244331002479753675967181962162",
                "228051355617191705350664843374779272788",
                "110807274676918356743410367012581319980",
                "28082416814896206939363170494987508462",
                "21737552350706474216865425411570552414",
                "143603900430349009436078124551884835197",
                "283528696939154148656850254091089478274",
                "301677284598560243123523310912034850140",
                "168519432382053092593886489027313226026",
                "270837370170699497619616978344511128195",
                "325615819340242902003254007157453867291",
                "80670546353376554006468294770227774191",
                "67937091315908374954408847757962560836",
                "300004453102585288561985595456376197626",
                "246829990512347045597455653382301461372",
                "152315653598385274967021287824654406710",
                "294163452487731950427640192317376126969",
                "105086691778344940605709524663408246266",
                "237411677726482013466003273063639538697",
                "4841168631138911559022130594416000274",
                "173919083945450177987737767689085190249",
                "220544888894075948707466830921289019069",
                "223751900736003717571890721806956674685",
                "228168268669937020165044438556199641218",
                "228743190967961385805940615267440001890",
                "282703443704880122675350008228245404723",
                "4830267298904573473058028446993151396",
                "32981239962394418245129587104347940249",
                "63518457134274858415750709035074521944",
                "264082406745506795785991046200865523484",
                "103397360621517957576200032963760349247",
                "39110627790389090332002754759134033124",
                "92153338371288653687155287080641255757",
                "306522800623611040829394768876856049359",
                "19482764675935062978548688773931801866",
                "280298472943730119276746005610297071895",
                "177464488271311802549766775186399301224",
                "124074547286232620203193260219927336878",
                "43234497210309060381320793077441010406",
                "302027521002557073687641387581051254728",
                "19418623357350561540558369243773171645",
                "254727633487863646367592443229035747615",
                "220880299683214490541086675040151149588",
                "254398905177914021326812736387147915094",
                "51367555964977934293981428893688896492",
                "120564189443694171005560346064302515008",
                "99135184923843849769920943676789148037",
                "139074064443283538926206930578588788175",
                "283834453503604424940714343990037264927",
                "216005190927689846469907313026884213398",
                "83797028027645453632842325580129207861",
                "225729786660892241227901689737070294344",
                "193994830698513442643703005330811828833",
                "33487672130400226797978777044493440041",
                "272909030305608809815804931423995727559",
                "178051347369962757143412344885542929930",
                "301666232247926893512511889459264814103",
                "194462942760841995328218456646877171891",
                "169254510334008575277523482602880375512",
                "326196987625537298692905773038209880627",
                "54893932469439402919397695933817993972",
                "339901518363608930156737771998588364832",
                "111231425905417595571623683678680643811",
                "209654633366009601336423026474989443225",
                "48296751881584233376731369751964700874",
                "184661331373799996605684633092598297535",
                "200058581158732120217921747204096563667",
                "197064836268830613792853062175929904526",
                "67240011475481645328600329425195774989",
                "306622484470863627096764125383085540911",
                "138512571568517702748099185118153878653",
                "20029650980296219351350184911692183874",
                "269621907832989188508263098266484863618",
                "327023021190508205150540967903547530276",
                "132057652690278512848841096644084745817",
                "44378444041464092929407481322344632151",
                "235229926266183400183554586652293794979",
                "240391466502614704977538772630356365776",
                "273799205440924995405721137429304269213",
                "293516093656982200525382775278013211728",
                "70373790736865362817290620496780725048",
                "330599235137159653400418040573264987931",
                "276733369152887200862628036564228703575",
                "80252567135866867194714143198178119319",
                "111929006459310727677081694180387888465",
                "239686128139790571273263836317193022238",
                "39496023817390657705749272000135706865",
                "4653284420745523907702694303059169458",
                "12084076116679581455399947683054420335",
                "180748449434793700640761105134906547380",
                "112914696237816362524877169309207779609",
                "235612268439189478637227522547833173013",
                "263224628560473311407149311921403612007",
                "293949540968280903538352693917672011553",
                "240956428166278390136136879965102045704",
                "15623095771186129603566360827276346579",
                "2925718802927435005951772727124029676",
                "310107820237620379084443372869251242246",
                "69805471448446013628170567463339077314",
                "49340022001239721548846310836327372284",
                "61864233186131422367525600535808418543",
                "108111827719715800633954715432344338381",
                "326486563032327632767731454722906869423",
                "209204613240962747195313906336109730440",
                "53439679446285838177414520022644729089",
                "197524863551282956612858687375302268179",
                "64424032148603409806583976267934185497",
                "288491473621316804476872460263121798398",
                "179968340114633445354628443721749991174",
                "334559078122107660342279797549022945433",
                "145649713997753183468731921888937256900",
                "95272492810255265528997919226374687248",
                "220782206357539159764152564932629549188",
                "140317575466208745869173072833924218366",
                "323331960572026482105844226039825737274",
                "151180713643196167814615395727170405228",
                "194106671654937947584903104797649364709",
                "217319717394805922923185841978219279696",
                "33953272120659119865573275273770225421",
                "103114021550946466796839488871879335786",
                "303222736964795574497280482618285829812",
                "290955461726577601094548591421473183818",
                "245264148084360489907612323192261946551",
                "244150200685673544147193293806890674459",
                "335103539597520931250866527435032541486",
                "101356774340030541864156205288375358087",
                "245909045951669103730137943961118283981",
                "309907008693401277634403366584730315227",
                "227758649607936914245807573054205034560",
                "304877283923412263739660603982686017994",
                "326668631568670299719353781560242445626",
                "17941874609309496201607094329733281504",
                "31284934918454291319733245283240379324",
                "221026510326902708674631715342504471553",
                "102623002550409739218646988175565883079",
                "65018089971916605608302168054880116014",
                "31854103838456671965192692853520431253",
                "95231701591793430002538327580539309363",
                "217993483966322583479956317534718649803",
                "101925241446500023142139714827354102802",
                "209320124575529917271585409053675692281",
                "167145640523384858181611993641634516344",
                "269326352737742728264865487950829937351",
                "183664941534995584237027290394085886642",
                "4651017645409983199495473780890611373",
                "79787060203547034583516819019449315290",
                "202449885388544233864928940574175978629",
                "60974379841852299510278079085052372753",
                "28813424802195059420520484861883003765",
                "239532662711243044225371224216261380533",
                "239014010638514839413057222501465616950",
                "220495773846177344637264359536409030132",
                "74115102614309136002527999638366519275",
                "41079889655526628495451377500760841601",
                "257678634608488689660576450995435631653",
                "131238584224229334081256510399458857033",
                "133034081464558048597338904856831238008",
                "53977892444727562303709636876165279809",
                "64172889005294610135406438423624192195",
                "91173623122443693455468677751018414384",
                "8746217557945573232572907951352621264",
                "289195997208037991764324174341328270692",
                "304639854426660058258599473182478347902",
                "298368613956777658741596508442362379884",
                "291964517398039783726172338647788670230",
                "9914162327493352829243784504515996595",
                "242921012982193885860019838480426210531",
                "228103623691091098235839728979085251205",
                "197630777384205680022369590214842737157",
                "212037452099960930105464361923583699991",
                "18445949568362903198882210961432235486",
                "192230594257596041735594761321110730078",
                "198531585622733184669312891439827489567",
                "67500591251971462668713597039468420716",
                "165648009221839833806363108208959345857",
                "191899887850841900624705216010249358536",
                "8829725495878242046183113764017786817",
                "56885680260307954046737407162315763331",
                "41215158503911837019769035456456179208",
                "162985849819735605598284220751021308426",
                "5138323928698068308590132492791796478",
                "96798379439963124215019674563177991575",
                "131923895086269000333586665457794038101",
                "222863763840007627333066166356367517929",
                "248789232039050918428555443670567703808",
                "17001215695614112717048805297661513433",
                "127100060411923373641340041326636796996",
                "312002084074332811530651159533452248418",
                "83507052096922606876467420031284386810",
                "60428183760848751457176216696123210869",
                "134161393670749592464519061755697155766",
                "130115337208115914856548498614545540558",
                "283436735986896040161866121733841880553",
                "171292328395440959723754845335598768678",
                "25079587089875424499336076723885763495",
                "74998001693301157219474212671234671209",
                "222364969316860251779147417870986244524",
                "311333185009246407565260834815432117052",
                "199782564552220790526480946105877748612",
                "147375136441208239243774170687846139446",
                "263148849945459977448340569920340939411",
                "31136335648558613474066435884862141023",
                "154755488956651627258023220250665008325",
                "263983221542207476244070969441783725048",
                "207603813382433065381393660830323758814"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-0eeabed3",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "254224658123023897417411352382986945989",
            "length": 3952.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@b314f6c3512108d7a656c5caf07c82d1bbbdc0f1",
        "id": "CVE-2022-50396-132007b5",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "291638172212340073411594724416659143249",
                "306789977041115193407640052450059964446",
                "122202260782491470437233425113933054907",
                "33587311108413907793974781845765329216",
                "159024858677792877724486919540879716394",
                "197762749482966730805606209979668614828",
                "285868862415706513501627135087503584373",
                "226049404738204532944816449168049579495",
                "306174016977852837862359307633166420117",
                "18440595328988684318903443876545617498",
                "27474969772959806463379638841637566603"
            ]
        },
        "target": {
            "file": "include/net/tc_wrapper.h"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-1669db03",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "283582866802509933031094852434163379356",
            "length": 173.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_bind_class"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-175e8c4b",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "250305880549541898853236319426775890007",
            "length": 1641.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_dump"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-1e7ae6b6",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "187111357530266137512254553203090204945",
            "length": 201.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_bind_class"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@3abebc503a5148072052c229c6b04b329a420ecd",
        "id": "CVE-2022-50396-2af2f504",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "76016108836454391528709941259642190183",
            "length": 315.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_init"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-2bbd7bef",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "53685351504420663242501063639759790512",
            "length": 663.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_walk"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-2e64739f",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "28398736238945350618849469399337472432",
            "length": 3945.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@c4de6057e7c6654983acb63d939d26ac0d7bbf39",
        "id": "CVE-2022-50396-319d71d5",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "201785323057803814959228234159151298040",
            "length": 727.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c183dc0af472dec33d2c0786a5e356baa8cad19",
        "id": "CVE-2022-50396-3340ddba",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "280509759645403063816048414707961551129",
                "87255314780806408175111838736471439425",
                "85679875509663948891831683073918230205",
                "56595342605300454063590733139261821051",
                "197140838481919109678629052243153417461",
                "281060430661581701164948001020802961771",
                "289820747823174880111657579046727940677",
                "255222507688261606429254752179872732236",
                "77095753098393083471803750769840159166",
                "118683940571493941758014282536269186387",
                "288027546377293825434377168568667725782",
                "217646262001306246430643931547579357464",
                "125008547478381784522288861466088546185",
                "152152782935612753066787383215152240157",
                "295329092466858377006781187090466337964",
                "263121808432530155485435220919417173262",
                "111810418439721695474853884581327141099",
                "268112809851274815389501942141633242199",
                "14063065001968004723226222103302088629",
                "227451388042689280995398368786673650476",
                "298493622905640847433210954913426526197",
                "115751960324797183528581869418564694839",
                "153666517228301816809392401657637867584",
                "63578466610097713994361490197770449472",
                "62964043825328611443040116198555218565",
                "86470885282980506530220888055016439864",
                "117338815668654787364684460301622980072",
                "291364633476553458477897085953230927763",
                "161684844640299307185812364347378207620",
                "144909289665947327995505997723181808854",
                "312574670387073468274570417290452001272",
                "196537381283612601051316266033026052939",
                "234310263376146586672966794850932771598",
                "62605433763190244631192748102844514084",
                "276207426104323091986338060626801888196",
                "80383727438537386502435372843913159091",
                "43418492349102436908068850774128925464",
                "304003027323322737969110185596396496079",
                "259848128524004109290620031372993261300",
                "54463142380830072379687916161461051079",
                "128856904507065486096479776220231303412",
                "202412101349962380642108965490134833576",
                "287864931704080940242946060251227489147",
                "89922103949487054695122035127342888630",
                "187238842718234995941042956228572705488",
                "142996156003025408619391589889819048968",
                "331709960880177880488259812626655473277",
                "131431954155271019212845603216673731160",
                "183535690494189594441091063115932690404",
                "245507297666383602103828533269146803425",
                "157828707949454346154026940894384760299",
                "283538930131534019108979877901353852229",
                "225643833419264330292967643494570894847",
                "98626054595915435078362257206715083574",
                "294872166168322760136725586613057153901",
                "101871483757360487983839464468205867284",
                "296569621731333118363987656274423091950",
                "290709644905731080305023640037975200110",
                "304714862597954228031985447714258404159",
                "66085333890302857344191873247587174328",
                "43265884222451101080980435490879520887",
                "333072565071025068987908323238703910400",
                "320009293277985699966236971413438814713",
                "145965085577835362970595664873661560566",
                "227592016550289098882706584627094918648",
                "229656092075817248347207764598961186514",
                "3300518503797441812213158588918859997",
                "11793149567308590970194151682564689092",
                "262232748740413180947337484371375162234",
                "86340949401937179010929132361705529874",
                "104676631178541917392748741248801092940",
                "327166573890974978894900962809241573750",
                "108693489893892639694285823141797162773",
                "116800671786638542748319297689362421626",
                "49265632809800838106148761142291041739",
                "300011395731947654830876104010601241748",
                "87074380968164065111550028765479077952",
                "82590460548521573834944361762164437157",
                "221602778868813634764719860588577097202",
                "316284730413684179739642680292961522241",
                "321323257583478210858979807924600412662",
                "318439655719760911107372215547536636183",
                "63762041748865163277415167352534001552",
                "211183461691816067257120744796542140351",
                "226407333250124804926237616140473263298",
                "68574327597664215045460567806827438961",
                "54833253457704908211160753500742573919",
                "27719203314876126500799708364819199696",
                "270226196579505335162348144529937674720",
                "316592606338088400748415785626432221745",
                "282676487081422898159628390238790413903",
                "104132577987651718046643134754013379388",
                "183771235377800286832028658197841534109",
                "175148317359697581551093050170006780800",
                "1604800992816325217107206992920667943",
                "182240092005371673907248464399501966150",
                "149048122160093214149877734462975094305",
                "309699985605680854069134285484434055612",
                "191353156174023746471065643372224448497",
                "228699472226662466817768817485213132984",
                "117579264997626106516767798198120584323",
                "6433713483446462853543709615651177072",
                "250804207143020978903068547246742295078",
                "217847286658587792964760472321803313944",
                "29175489963452384825082033915787361385",
                "4408043019786047639239230334323661924",
                "189842068062543025589467554846808685520",
                "1744210047202155612583694711754877538",
                "135575330999417474415026093107144826482",
                "151205837120695112387046431163401152833",
                "276899545633694164748088506233720837032",
                "214987588356397284384341266484698031638",
                "333090793963631561883571212254146438446",
                "102801892049205125285674858489895500396",
                "82522847750844066829264762689251178880",
                "27823654693333102020187016763099597006",
                "320549113189610134984688940988612611021",
                "240012610660997607321459552394392051551",
                "52670761255741034486634842545557788406",
                "190519700393662763309879029615044026326",
                "54525313114588312328041249657480999836",
                "197710071905579872305207734737963353092",
                "263562539322969449745102785641650805090",
                "91739743044249914291936828153206295504",
                "316071062446369962883663404468390839471",
                "1876713579470234763013481279031427624",
                "234373327437101924249992059415074650635",
                "101414581252960855753190690155070628712",
                "139950775483653344658400977418546749288",
                "282939522069123670181145919668344892365",
                "86565913237772589221220875415116617021",
                "152888638129006243011829851580831327414",
                "212026407778777252785353347234229688922",
                "332419155096853819670181071840171319929",
                "234278681678639515915875108594456520058",
                "184710605675337775895725662789718505177",
                "61252829163312286703660992305427700062",
                "917464932127782197407757411494308345",
                "135717080815455793966832332456745446252",
                "79758074092798921344775144452329046913",
                "240719642027739345239194224568325736524",
                "273758902531474142246230687150950472801",
                "46344092656359102545420920334453784825",
                "52313493995637146742950664911687854940",
                "181677997641106304906014493649514784681",
                "39547027238224157041618573633391165515",
                "59503780132164714480951872435180838330",
                "270058344936722647476767290738486853975",
                "127756910734785529354693921464684841171",
                "136956619615216478138864470188548750906",
                "229025659082046951158709931566297002269",
                "115197542321549091565853655191309631285",
                "228361136768102451958434775394261381194",
                "34905790965905401086452219952633650187",
                "286303637615574669786721564019218219509",
                "73121719433142426476856505799209859183",
                "76048282923733236878700578226706369941",
                "278857950584386540611490173997284996074",
                "214789090121278991244165588739683727942",
                "72552822333849722767750006103009444113",
                "304277010264172454436273649533751129483",
                "160872261284696945024404795689484577413",
                "1355958306602749795488105278556964152",
                "140470677575658483507827410576642657463",
                "95923432853561166235403583498907479122",
                "40023738719733024175751979516062128155",
                "307059241121570913413453078444835491692",
                "321824746553878750075713940698267618482",
                "309485986641332565962123510456677968232",
                "272345688053162927630579846821200979025",
                "75195910210272040976601872145426700548",
                "218951357222505120648835518629705615826",
                "70386766582931737168702356172186225444",
                "316582298604304325407681601248870884292",
                "33788905309274213297437397853268300182",
                "64077696228133146142954224034226370449",
                "196885580487433423789386634920299114651",
                "287561653990900672299869789396423616839",
                "224609335426449525523143970626368577265",
                "335898702848492504944182685657621244789",
                "308508890049955099192494616955309925556",
                "201052161498966996214578287423702267283",
                "55099397114817282347607177004510062738",
                "325495542428246900214066879378333697918",
                "233820815068519081400619601601474341968",
                "228862230294503343777051070731165253359",
                "169597112994660035965181635475807049230",
                "192512904758896878985384958236746869799",
                "78604230082750005422843918240163003824",
                "122444940875571414124350009475902540840",
                "232465000580445127605725036537929008334",
                "165315732397598672487327312722774749189",
                "235282092519174036637999473846725808361",
                "178001637397590940138963674150590506234",
                "192337978646193983386681697731418325074",
                "134330703349141432511553732589569323360",
                "75195910210272040976601872145426700548",
                "218951357222505120648835518629705615826",
                "288934520976137196545058733294554014120",
                "216117435038350150789817490398959664754",
                "286474467756974338739485515356905746020",
                "157929803278415469521538547296550113550",
                "179869406612113975032574107956552064014",
                "123329799133752054810069943247050747268",
                "48495491601900869955319005466436412721",
                "256278271105231064440350561119641775430",
                "158523591339753806627381430707481082120",
                "123837437766095686741287944367503493452",
                "55586247247463864750006627368811722067",
                "306712794187050112824984393734028647963",
                "81311367342478197490534570461159073701",
                "10384796173098224266830488852669285738",
                "67513218194496279950326945359851097003",
                "181206749718214460296517375484370200189",
                "292940993917757859808547576042431038915",
                "242958580644104625387693025234712949920",
                "109176729197877659785973813088248894093",
                "268580488595265578677811918591032581365",
                "61853897504725216829126429324690432949",
                "276185356030902314301914685810806432270",
                "252536350492930033961021638695188823341",
                "230338743848230466398156819637699971692",
                "14746900519572704395389568533002044228",
                "317039098920834213908096468956522068319",
                "76167561987511479499867776048397893231",
                "314433388932738312387917453166701825649",
                "148011014991749164113834718651702855979",
                "211097790680457036269452077886961414137",
                "332340774768076439627967536910147025378",
                "197445894904176718712318590198276367515",
                "310218204455537504917128679234474760916",
                "301859314172655255852513063248398404566",
                "127055068699148162825027725201611220712",
                "178972236307655966113727762606439036105",
                "296819844562730531760747184471091325018",
                "128596310167053433923608832467068446312",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "155478921186324905815235004575972392150",
                "312138549585818393203623772737492564364",
                "198723418281996137934226223658180030457",
                "172186648922855250769646318994221585091",
                "218916047433228071860262786694055882142",
                "13934984610615437052867479648838026946",
                "97970380481968691306297002839233908189",
                "107719752375650978997468084891160260107",
                "5839085104617603535125181089325679625",
                "146430353047065604354046389287182153808",
                "209206726439041007857997488657727110346",
                "61340146334396589521281729911954874335",
                "156409451048540887346709004911541719024",
                "279344226956421435005039364176694066349",
                "168002471106150902091359512158598539862",
                "244603371643824702139107100081976440540",
                "213122642162075737839522323824071149023",
                "22315024398850198426293971122469692028",
                "171405329733770861063528951332035607744",
                "260550527547558174124204896502313389948",
                "101264304133960637290358611481510608425",
                "142278430149355398484976617964070575476",
                "74961319306809428273256843169315139462",
                "155122737261391809925799587351039445077",
                "295872734662387570530624569048667488757",
                "144269197431054085802636132924627988660",
                "179003489754050567022136112059202617215",
                "163376580922509824688376718692934920418",
                "197110125576618884517482825931184407654",
                "281735545752890838539258599862357545144",
                "36477420363485848364561385907648357824",
                "124050189618788024262208989043202395055",
                "33543807757154315990966827513793912555",
                "70719149033469202140763214228528757282",
                "176165629947711740357000367492533960590",
                "178456293502922201221105802773325128799",
                "116072447547671853421993394753080771945",
                "85159185373000796387551291978293857294",
                "268434955775367011260812228171319699984",
                "248097940671435335390534685317659685580",
                "139519794914263351277080992555004915577",
                "61752925333516445087712738406215635062",
                "261532016797575938869547985506638343712",
                "330288028610655423708255400272919616044",
                "282013180010070150076202412074513260686",
                "168050969616430031738825108189716782273",
                "190169658735694399257824265377740554411",
                "243615160010194730810813893663933566609",
                "58879717309950469007502063678277590557",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "156651997020654637431685474680674235896",
                "208401415400129731371408650552650702505",
                "314330367477973503316568008922044880375",
                "156945719265680396083341924008869538843",
                "190630491983433998069812966408879906609",
                "260299425858072933084382470389229773009",
                "71081445141378942956779401154093801208",
                "265252331836773796840450302385907600803",
                "139277351666562565333884670089408338601",
                "290702965135899939210827508486569658279",
                "16717666295724702055624089329185435960",
                "33081560449760766414095998696160931797",
                "20459425786320782000315876007216379376",
                "15497060342839189107374443153886868786",
                "168064609048296942938582221214109828601",
                "336291587636964225492755760208306357168",
                "15954350202235836013582808141035291843",
                "100389032338800887877882397345433915513",
                "301643905583909935373861635724841811071",
                "131647299121401062825106837152185612408",
                "208662449287599232388276354900961527879",
                "12491449048311831353342603420306087837",
                "6672956455819329698768293205506340204",
                "231884963029348658265457652123141184458",
                "329306666342224772688453728494097535580",
                "63562396274442563701261481579473648218",
                "158687664237779265433373976509396195536",
                "60736073326225098353542157927916822610",
                "159055554470867356813452310580776185047",
                "71973892600656436756717149714887794452",
                "133522766715646126867901228160053988905",
                "283235570742025185625194300562276398296",
                "25841449932404129724610478872911493846",
                "53668400235300457148034367018888076425",
                "72504140927466995198570603084150364536",
                "130041778226414487121633006505271345565",
                "110306982607864598251684365538121866142",
                "271658460938297260634318367297978718033",
                "17773037634670104084203170524094354036",
                "230266530257917704796456262629435739997",
                "333630772612234481140220109076054253354",
                "57896217706882902282225614452468092131",
                "297374753248636385471241443242632259408",
                "233611397281015314497611956283592944832",
                "129950390042656196085926427472513489175",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "80212646744865450307741305536260793601",
                "56304678400035904860412651896454432527",
                "158287538998792423399538922114057755993",
                "310338605315373420950229330880347507782",
                "56540204965001714242652896030761496784",
                "202661084786907636806690908815761709807",
                "185752458852695908453317309488572800113",
                "295907497875413395401916172261614999968",
                "111309039960133871347975435784476772287",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980",
                "28082416814896206939363170494987508462",
                "333282269755591570342549332393484639251",
                "74818626647526360007366965143585370889",
                "248407809600343301585187534315585741497",
                "251455037606805199624792476559186954141",
                "223751900736003717571890721806956674685",
                "228168268669937020165044438556199641218",
                "228743190967961385805940615267440001890",
                "282703443704880122675350008228245404723",
                "4830267298904573473058028446993151396",
                "32981239962394418245129587104347940249",
                "63518457134274858415750709035074521944",
                "264082406745506795785991046200865523484",
                "103397360621517957576200032963760349247",
                "39110627790389090332002754759134033124",
                "92153338371288653687155287080641255757",
                "306522800623611040829394768876856049359",
                "19482764675935062978548688773931801866",
                "280298472943730119276746005610297071895",
                "177464488271311802549766775186399301224",
                "124074547286232620203193260219927336878",
                "43234497210309060381320793077441010406",
                "302027521002557073687641387581051254728",
                "19418623357350561540558369243773171645",
                "254727633487863646367592443229035747615",
                "220880299683214490541086675040151149588",
                "254398905177914021326812736387147915094",
                "51367555964977934293981428893688896492",
                "120564189443694171005560346064302515008",
                "99135184923843849769920943676789148037",
                "139074064443283538926206930578588788175",
                "283834453503604424940714343990037264927",
                "8135157535958514324587649174697260799",
                "251304262184253736187168532668416123038",
                "83702541552269473360340055029757397896",
                "337739927027570744749859839215348354000",
                "33487672130400226797978777044493440041",
                "272909030305608809815804931423995727559",
                "178051347369962757143412344885542929930",
                "301666232247926893512511889459264814103",
                "194462942760841995328218456646877171891",
                "169254510334008575277523482602880375512",
                "1957859725783965893569486560070032465",
                "182320965903913896965257843153786751037",
                "286769622184767966818513467014931490903",
                "314648511153668338599920290614750375795",
                "103023698570701542792619454905395010797",
                "222359293436320867038312885956511261529",
                "242805933281381293925250203338945307223",
                "27189237593731406920611031204398824614",
                "197246808228780992760175336850560160349",
                "16197172552433754599716670218661415258",
                "289342276244136681910194410881757516578",
                "222747807397119117969960061938907193269",
                "272758079151528950577333797490981120623",
                "132057652690278512848841096644084745817",
                "44378444041464092929407481322344632151",
                "235229926266183400183554586652293794979",
                "240391466502614704977538772630356365776",
                "273799205440924995405721137429304269213",
                "293516093656982200525382775278013211728",
                "62320628712710289595195556755093683005",
                "326952436457875602063831321051517396755",
                "186219296812474152631177784420099742546",
                "138100531007937134616818623964689447484",
                "175677342910666542975205687201452862581",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "250201865143595880343019287650039689567",
                "239686128139790571273263836317193022238",
                "39496023817390657705749272000135706865",
                "4653284420745523907702694303059169458",
                "12084076116679581455399947683054420335",
                "273550907265029464272489770428692049458",
                "20987506157955544587010956827474198361",
                "255489461840254736269224113040398468905",
                "236461357371814718422047452043669182808",
                "57078660995854355144084108680161300545",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "24422440030672256960385563365824004276",
                "217969046789457389098047755746132163057",
                "14256591600184973190985672005949904735",
                "28504927484506219588450745249862483761",
                "213054647208755051069288583231983072060",
                "69805471448446013628170567463339077314",
                "49340022001239721548846310836327372284",
                "61864233186131422367525600535808418543",
                "108111827719715800633954715432344338381",
                "326486563032327632767731454722906869423",
                "94370686632853931828851065825985017145",
                "50280043925435681281416833226692727462",
                "249454443078142447797370812227716451836",
                "288491473621316804476872460263121798398",
                "179968340114633445354628443721749991174",
                "334559078122107660342279797549022945433",
                "145649713997753183468731921888937256900",
                "95272492810255265528997919226374687248",
                "220782206357539159764152564932629549188",
                "140317575466208745869173072833924218366",
                "323331960572026482105844226039825737274",
                "151180713643196167814615395727170405228",
                "194106671654937947584903104797649364709",
                "108543041077380691775269742321964548817",
                "207700718171057804185675962581737817550",
                "301109626485492264414103992367748453340",
                "85376064947456232198492032255357657979",
                "290955461726577601094548591421473183818",
                "245264148084360489907612323192261946551",
                "26739966952768341349912873066123980666",
                "27493200818199785607460288938727102908",
                "195467663381369414569572278937308936993",
                "276712715617111353326607281807654928415",
                "309907008693401277634403366584730315227",
                "227758649607936914245807573054205034560",
                "304877283923412263739660603982686017994",
                "326668631568670299719353781560242445626",
                "8877349465208446800199987474491230795",
                "223009269072645768209125613920204335206",
                "14038377459051940957704836420303741683",
                "135218696439025813827845554830350765188",
                "65018089971916605608302168054880116014",
                "31854103838456671965192692853520431253",
                "95231701591793430002538327580539309363",
                "217993483966322583479956317534718649803",
                "101925241446500023142139714827354102802",
                "209320124575529917271585409053675692281",
                "167145640523384858181611993641634516344",
                "269326352737742728264865487950829937351",
                "183664941534995584237027290394085886642",
                "4651017645409983199495473780890611373",
                "79787060203547034583516819019449315290",
                "202449885388544233864928940574175978629",
                "60974379841852299510278079085052372753",
                "28813424802195059420520484861883003765",
                "239532662711243044225371224216261380533",
                "239014010638514839413057222501465616950",
                "220495773846177344637264359536409030132",
                "74115102614309136002527999638366519275",
                "41079889655526628495451377500760841601",
                "257678634608488689660576450995435631653",
                "131238584224229334081256510399458857033",
                "133034081464558048597338904856831238008",
                "53977892444727562303709636876165279809",
                "64172889005294610135406438423624192195",
                "91173623122443693455468677751018414384",
                "8746217557945573232572907951352621264",
                "289195997208037991764324174341328270692",
                "304639854426660058258599473182478347902",
                "298368613956777658741596508442362379884",
                "291964517398039783726172338647788670230",
                "9914162327493352829243784504515996595",
                "242921012982193885860019838480426210531",
                "228103623691091098235839728979085251205",
                "197630777384205680022369590214842737157",
                "212037452099960930105464361923583699991",
                "18445949568362903198882210961432235486",
                "192230594257596041735594761321110730078",
                "198531585622733184669312891439827489567",
                "67500591251971462668713597039468420716",
                "165648009221839833806363108208959345857",
                "191899887850841900624705216010249358536",
                "8829725495878242046183113764017786817",
                "56885680260307954046737407162315763331",
                "41215158503911837019769035456456179208",
                "280250653811952466936129359383998790313",
                "142453262917633362663259925257513003937",
                "285077393846312906550538396345796549551",
                "304645778847899024069056567686805187949",
                "268866832310402185535275073641702619977",
                "117595381666818833523066205096748436907",
                "45781958212124826475554430363510580873",
                "25362849729947783622343767134674349774",
                "115241432397524198019203982555948698375",
                "222863763840007627333066166356367517929",
                "248789232039050918428555443670567703808",
                "17001215695614112717048805297661513433",
                "127100060411923373641340041326636796996",
                "312002084074332811530651159533452248418",
                "83507052096922606876467420031284386810",
                "60428183760848751457176216696123210869",
                "134161393670749592464519061755697155766",
                "130115337208115914856548498614545540558",
                "283436735986896040161866121733841880553",
                "171292328395440959723754845335598768678",
                "25079587089875424499336076723885763495",
                "74998001693301157219474212671234671209",
                "222364969316860251779147417870986244524",
                "311333185009246407565260834815432117052",
                "199782564552220790526480946105877748612",
                "147375136441208239243774170687846139446",
                "263148849945459977448340569920340939411",
                "31136335648558613474066435884862141023",
                "154755488956651627258023220250665008325",
                "263983221542207476244070969441783725048",
                "207603813382433065381393660830323758814"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-350e3086",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "60867965012210603376014122547379697345",
            "length": 166.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_filter_result_init"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-376bcfe1",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "255671146106000869190688726553626016490",
            "length": 4313.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@3abebc503a5148072052c229c6b04b329a420ecd",
        "id": "CVE-2022-50396-3cf4df69",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "44463434380082339291551558777564535251",
                "320280872889133287426237098081507002211",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@399ab7fe0fa0d846881685fd4e57e9a8ef7559f7",
        "id": "CVE-2022-50396-4457fac0",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "22058486011448248637268396225591369016",
            "length": 432.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_alloc_perfect_hash"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-4685130f",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "114346324348663047794737056095752770018",
            "length": 153.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_rexts_work"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-46d17389",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "53685351504420663242501063639759790512",
            "length": 663.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_walk"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@3abebc503a5148072052c229c6b04b329a420ecd",
        "id": "CVE-2022-50396-524ed60f",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "270210422912981246113679750090681190569",
            "length": 175.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_fexts_work"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-5688a52c",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "76016108836454391528709941259642190183",
            "length": 315.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_init"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-5ebf31db",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "144208992936587990443195497850869299928",
            "length": 105.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "__tcindex_destroy_rexts"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-5f7e39c8",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "250305880549541898853236319426775890007",
            "length": 1641.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_dump"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-6731f4c5",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "111924333392163121277736489893205154892",
            "length": 833.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_walk"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-714acef9",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "57809067770389726715318665973425622539",
            "length": 189.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_rexts"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-75da3dff",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "280509759645403063816048414707961551129",
                "87255314780806408175111838736471439425",
                "85679875509663948891831683073918230205",
                "106726959524410161074059465341348582030",
                "173953278764422259801077115196716493577",
                "283338151931155227626273792764506139005",
                "112843748784262856320062143624922468179",
                "324032481686015241149291932645101263223",
                "289820747823174880111657579046727940677",
                "194530879350142314341334124718996704851",
                "306284707432469219630291255457123898065",
                "132681904985233951894968673662083613603",
                "116673882892893519649744231976698663313",
                "315949362517317337505920832492944381463",
                "16784360042360242181890659813882971703",
                "222684563972809236606037568266265043030",
                "83857582623246311274535970491683548616",
                "152152782935612753066787383215152240157",
                "295329092466858377006781187090466337964",
                "263121808432530155485435220919417173262",
                "111810418439721695474853884581327141099",
                "268112809851274815389501942141633242199",
                "14063065001968004723226222103302088629",
                "227451388042689280995398368786673650476",
                "298493622905640847433210954913426526197",
                "115751960324797183528581869418564694839",
                "153666517228301816809392401657637867584",
                "63578466610097713994361490197770449472",
                "62964043825328611443040116198555218565",
                "86470885282980506530220888055016439864",
                "117338815668654787364684460301622980072",
                "141482297200784107917244286714106493849",
                "338315075300528852708343033596062462962",
                "239984822892279274361877858597604042349",
                "79507836787792920661291813112523753945",
                "312574670387073468274570417290452001272",
                "196537381283612601051316266033026052939",
                "234310263376146586672966794850932771598",
                "262311237359193088397601334913769764237",
                "240950197204853947949224573588835809114",
                "225721488238263902336167360301370178683",
                "62534489959762394338739123369432392256",
                "144544356340282951786934538718533837546",
                "275940544354334416316849374550707434645",
                "5695903217408373765548750635083186482",
                "42211306710638608541439378723967238791",
                "28423085406884141770291320344860113012",
                "186508691857372055579087798599972137768",
                "33788905309274213297437397853268300182",
                "2016783880748508095173305560241337927",
                "277775777158664925694407872796133967975",
                "218211852432135184348102362874033241915",
                "80383727438537386502435372843913159091",
                "43418492349102436908068850774128925464",
                "304003027323322737969110185596396496079",
                "259848128524004109290620031372993261300",
                "54463142380830072379687916161461051079",
                "128856904507065486096479776220231303412",
                "202412101349962380642108965490134833576",
                "287864931704080940242946060251227489147",
                "89922103949487054695122035127342888630",
                "187238842718234995941042956228572705488",
                "142996156003025408619391589889819048968",
                "331709960880177880488259812626655473277",
                "131431954155271019212845603216673731160",
                "183535690494189594441091063115932690404",
                "245507297666383602103828533269146803425",
                "157828707949454346154026940894384760299",
                "283538930131534019108979877901353852229",
                "225643833419264330292967643494570894847",
                "98626054595915435078362257206715083574",
                "294872166168322760136725586613057153901",
                "101871483757360487983839464468205867284",
                "296569621731333118363987656274423091950",
                "290709644905731080305023640037975200110",
                "304714862597954228031985447714258404159",
                "66085333890302857344191873247587174328",
                "43265884222451101080980435490879520887",
                "333072565071025068987908323238703910400",
                "320009293277985699966236971413438814713",
                "145965085577835362970595664873661560566",
                "227592016550289098882706584627094918648",
                "229656092075817248347207764598961186514",
                "3300518503797441812213158588918859997",
                "11793149567308590970194151682564689092",
                "262232748740413180947337484371375162234",
                "86340949401937179010929132361705529874",
                "104676631178541917392748741248801092940",
                "327166573890974978894900962809241573750",
                "108693489893892639694285823141797162773",
                "116800671786638542748319297689362421626",
                "49265632809800838106148761142291041739",
                "300011395731947654830876104010601241748",
                "87074380968164065111550028765479077952",
                "82590460548521573834944361762164437157",
                "221602778868813634764719860588577097202",
                "316284730413684179739642680292961522241",
                "321323257583478210858979807924600412662",
                "318439655719760911107372215547536636183",
                "63762041748865163277415167352534001552",
                "211183461691816067257120744796542140351",
                "226407333250124804926237616140473263298",
                "68574327597664215045460567806827438961",
                "54833253457704908211160753500742573919",
                "27719203314876126500799708364819199696",
                "270226196579505335162348144529937674720",
                "316592606338088400748415785626432221745",
                "282676487081422898159628390238790413903",
                "104132577987651718046643134754013379388",
                "183771235377800286832028658197841534109",
                "293159869458720666822897176714713217516",
                "183407482537902167613714990756642247137",
                "35283942645810103236252932901542726454",
                "312304399588454986320428986659587914107",
                "149048122160093214149877734462975094305",
                "309699985605680854069134285484434055612",
                "191353156174023746471065643372224448497",
                "228699472226662466817768817485213132984",
                "71323348261878733430089033761000555687",
                "222877837019833836852857970164094505061",
                "88765235074606162161146930905841065589",
                "9144598693691478101759817789385395677",
                "217847286658587792964760472321803313944",
                "29175489963452384825082033915787361385",
                "4408043019786047639239230334323661924",
                "189842068062543025589467554846808685520",
                "1744210047202155612583694711754877538",
                "135575330999417474415026093107144826482",
                "151205837120695112387046431163401152833",
                "276899545633694164748088506233720837032",
                "214987588356397284384341266484698031638",
                "333090793963631561883571212254146438446",
                "102801892049205125285674858489895500396",
                "82522847750844066829264762689251178880",
                "27823654693333102020187016763099597006",
                "320549113189610134984688940988612611021",
                "240012610660997607321459552394392051551",
                "52670761255741034486634842545557788406",
                "190519700393662763309879029615044026326",
                "54525313114588312328041249657480999836",
                "197710071905579872305207734737963353092",
                "263562539322969449745102785641650805090",
                "91739743044249914291936828153206295504",
                "316071062446369962883663404468390839471",
                "1876713579470234763013481279031427624",
                "234373327437101924249992059415074650635",
                "262339856740058183469649682324224107067",
                "6819290014365611672915796387309999585",
                "276571235307141975492301254868245017632",
                "237839133733707958986412564900169074424",
                "152888638129006243011829851580831327414",
                "212026407778777252785353347234229688922",
                "332419155096853819670181071840171319929",
                "234278681678639515915875108594456520058",
                "184710605675337775895725662789718505177",
                "61252829163312286703660992305427700062",
                "917464932127782197407757411494308345",
                "135717080815455793966832332456745446252",
                "79758074092798921344775144452329046913",
                "240719642027739345239194224568325736524",
                "273758902531474142246230687150950472801",
                "46344092656359102545420920334453784825",
                "52313493995637146742950664911687854940",
                "181677997641106304906014493649514784681",
                "39547027238224157041618573633391165515",
                "59503780132164714480951872435180838330",
                "270058344936722647476767290738486853975",
                "127756910734785529354693921464684841171",
                "136956619615216478138864470188548750906",
                "229025659082046951158709931566297002269",
                "115197542321549091565853655191309631285",
                "228361136768102451958434775394261381194",
                "34905790965905401086452219952633650187",
                "286303637615574669786721564019218219509",
                "73121719433142426476856505799209859183",
                "76048282923733236878700578226706369941",
                "278857950584386540611490173997284996074",
                "193396289632825021983977451875450691113",
                "155157898392970080082353937968991633805",
                "173519582255315814639097527634271003143",
                "305052988042946421070313166305311198119",
                "160872261284696945024404795689484577413",
                "1355958306602749795488105278556964152",
                "140470677575658483507827410576642657463",
                "95923432853561166235403583498907479122",
                "40023738719733024175751979516062128155",
                "307059241121570913413453078444835491692",
                "321824746553878750075713940698267618482",
                "309485986641332565962123510456677968232",
                "272345688053162927630579846821200979025",
                "75195910210272040976601872145426700548",
                "148307990700902091637395825462779784894",
                "147014156279886858909510650051758562580",
                "238660174302910071433031120831997618387",
                "208543091647634643258191156514820593600",
                "287561653990900672299869789396423616839",
                "224609335426449525523143970626368577265",
                "335898702848492504944182685657621244789",
                "308508890049955099192494616955309925556",
                "201052161498966996214578287423702267283",
                "55099397114817282347607177004510062738",
                "325495542428246900214066879378333697918",
                "233820815068519081400619601601474341968",
                "228862230294503343777051070731165253359",
                "169597112994660035965181635475807049230",
                "139763312396892804868108702775258712431",
                "18513917717999814922619985023996535706",
                "271578120177697455275391971074037483558",
                "189192774398855109678500961357597508068",
                "84815612108575128297802171256650856307",
                "21502196799753593189784721575548696337",
                "208775982188854443127054027899577346812",
                "105203641113750144074754044791680564097",
                "310112505696584831934008371162211486427",
                "285374844968861836072511956336830868387",
                "303599472171609318737875904533047557947",
                "61565683738729418654821535068495540983",
                "227947374850153001773575401145084093092",
                "134330703349141432511553732589569323360",
                "75195910210272040976601872145426700548",
                "203558923229374278828752990248472103701",
                "83816778229273550600901357281805847989",
                "250337729079465301486908970402330007113",
                "85874043568047799682809447435099465343",
                "59849578748031096175193737530423472556",
                "257399278500263828615446071397778584845",
                "63712631933064965338297863854844212714",
                "78984763774968572084397882760041643104",
                "179869406612113975032574107956552064014",
                "123329799133752054810069943247050747268",
                "48495491601900869955319005466436412721",
                "256278271105231064440350561119641775430",
                "158523591339753806627381430707481082120",
                "123837437766095686741287944367503493452",
                "55586247247463864750006627368811722067",
                "306712794187050112824984393734028647963",
                "81311367342478197490534570461159073701",
                "10384796173098224266830488852669285738",
                "67513218194496279950326945359851097003",
                "181206749718214460296517375484370200189",
                "292940993917757859808547576042431038915",
                "185022867239638570158423204097547066565",
                "48347252208020382806690033447904778267",
                "245600729109563209637982618657347485203",
                "70136138322367937661439993015913147258",
                "105436844392448214034551755410749461787",
                "115062358439013627787237665877460665853",
                "258536822026171211109538842956558509100",
                "262453563536474669171732139038998203774",
                "314433388932738312387917453166701825649",
                "148011014991749164113834718651702855979",
                "211097790680457036269452077886961414137",
                "332340774768076439627967536910147025378",
                "197445894904176718712318590198276367515",
                "310218204455537504917128679234474760916",
                "301859314172655255852513063248398404566",
                "205656590445752532031353566520905468531",
                "181847965459748467025590737310931147639",
                "108311659506516710800359247379226486615",
                "75190531018881031504968043854149037473",
                "284453467424623146916306881439900721248",
                "265416729929591398422012329625608017498",
                "155478921186324905815235004575972392150",
                "312138549585818393203623772737492564364",
                "296629561267177944600906621996451695971",
                "101789146767076950590478085490793889322",
                "101970912299924183886825092611245759214",
                "55175166394920713975722437871178108556",
                "178579372365244500121110004715979779055",
                "97631906100493816724448360248374827866",
                "134873431885061391696236112022980980801",
                "271206466000747684358997610730145199164",
                "146430353047065604354046389287182153808",
                "209206726439041007857997488657727110346",
                "61340146334396589521281729911954874335",
                "156409451048540887346709004911541719024",
                "279344226956421435005039364176694066349",
                "168002471106150902091359512158598539862",
                "244603371643824702139107100081976440540",
                "213122642162075737839522323824071149023",
                "22315024398850198426293971122469692028",
                "339814288572357173670966378363953522837",
                "120002788666848887007219908068824376051",
                "249285366904919438761225296928522995203",
                "274034299651343892667137164247877682095",
                "142278430149355398484976617964070575476",
                "74961319306809428273256843169315139462",
                "155122737261391809925799587351039445077",
                "295872734662387570530624569048667488757",
                "144269197431054085802636132924627988660",
                "179003489754050567022136112059202617215",
                "163376580922509824688376718692934920418",
                "197110125576618884517482825931184407654",
                "281735545752890838539258599862357545144",
                "36477420363485848364561385907648357824",
                "124050189618788024262208989043202395055",
                "33543807757154315990966827513793912555",
                "70719149033469202140763214228528757282",
                "176165629947711740357000367492533960590",
                "178456293502922201221105802773325128799",
                "116072447547671853421993394753080771945",
                "85159185373000796387551291978293857294",
                "268434955775367011260812228171319699984",
                "248097940671435335390534685317659685580",
                "139519794914263351277080992555004915577",
                "61752925333516445087712738406215635062",
                "261532016797575938869547985506638343712",
                "330288028610655423708255400272919616044",
                "282013180010070150076202412074513260686",
                "185106174012397431622955792498639396577",
                "260035256039079237363375691650083831928",
                "325948800657550692796003324489621146730",
                "292993984453579881848749338678620406932",
                "305181234726480817747406001868470350004",
                "226259716953923643684767400067332248755",
                "129760807545326470104159505396711071052",
                "156651997020654637431685474680674235896",
                "208401415400129731371408650552650702505",
                "314330367477973503316568008922044880375",
                "156945719265680396083341924008869538843",
                "190630491983433998069812966408879906609",
                "260299425858072933084382470389229773009",
                "71081445141378942956779401154093801208",
                "265252331836773796840450302385907600803",
                "139277351666562565333884670089408338601",
                "290702965135899939210827508486569658279",
                "16717666295724702055624089329185435960",
                "33081560449760766414095998696160931797",
                "20459425786320782000315876007216379376",
                "15497060342839189107374443153886868786",
                "168064609048296942938582221214109828601",
                "336291587636964225492755760208306357168",
                "15954350202235836013582808141035291843",
                "100389032338800887877882397345433915513",
                "301643905583909935373861635724841811071",
                "131647299121401062825106837152185612408",
                "208662449287599232388276354900961527879",
                "12491449048311831353342603420306087837",
                "6672956455819329698768293205506340204",
                "231884963029348658265457652123141184458",
                "329306666342224772688453728494097535580",
                "63562396274442563701261481579473648218",
                "158687664237779265433373976509396195536",
                "60736073326225098353542157927916822610",
                "159055554470867356813452310580776185047",
                "71973892600656436756717149714887794452",
                "133522766715646126867901228160053988905",
                "140209237722427451511879551739003326358",
                "117088171354959207957550534831155414308",
                "255900654678103886443537354502303422912",
                "296889040349448830391713302677503417167",
                "39193336984623146981118976514649038326",
                "315673143086554403845212881720889126219",
                "150270089164112948815844134849755738934",
                "19466361905484695237023186334259595134",
                "124813236863500517053826615104146849730",
                "17773037634670104084203170524094354036",
                "230266530257917704796456262629435739997",
                "333630772612234481140220109076054253354",
                "86840290917603698006448245714002076600",
                "60224766630594419597712086560298210055",
                "240775958401791232075693174596762235607",
                "83823532540821411961214463930459968590",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "80212646744865450307741305536260793601",
                "56304678400035904860412651896454432527",
                "158287538998792423399538922114057755993",
                "310338605315373420950229330880347507782",
                "197635271244331002479753675967181962162",
                "228051355617191705350664843374779272788",
                "110807274676918356743410367012581319980",
                "28082416814896206939363170494987508462",
                "21737552350706474216865425411570552414",
                "143603900430349009436078124551884835197",
                "283528696939154148656850254091089478274",
                "301677284598560243123523310912034850140",
                "168519432382053092593886489027313226026",
                "270837370170699497619616978344511128195",
                "325615819340242902003254007157453867291",
                "80670546353376554006468294770227774191",
                "67937091315908374954408847757962560836",
                "300004453102585288561985595456376197626",
                "246829990512347045597455653382301461372",
                "152315653598385274967021287824654406710",
                "294163452487731950427640192317376126969",
                "105086691778344940605709524663408246266",
                "237411677726482013466003273063639538697",
                "4841168631138911559022130594416000274",
                "173919083945450177987737767689085190249",
                "220544888894075948707466830921289019069",
                "223751900736003717571890721806956674685",
                "228168268669937020165044438556199641218",
                "228743190967961385805940615267440001890",
                "282703443704880122675350008228245404723",
                "4830267298904573473058028446993151396",
                "32981239962394418245129587104347940249",
                "63518457134274858415750709035074521944",
                "264082406745506795785991046200865523484",
                "103397360621517957576200032963760349247",
                "39110627790389090332002754759134033124",
                "92153338371288653687155287080641255757",
                "306522800623611040829394768876856049359",
                "19482764675935062978548688773931801866",
                "280298472943730119276746005610297071895",
                "177464488271311802549766775186399301224",
                "124074547286232620203193260219927336878",
                "43234497210309060381320793077441010406",
                "302027521002557073687641387581051254728",
                "19418623357350561540558369243773171645",
                "254727633487863646367592443229035747615",
                "220880299683214490541086675040151149588",
                "254398905177914021326812736387147915094",
                "51367555964977934293981428893688896492",
                "120564189443694171005560346064302515008",
                "99135184923843849769920943676789148037",
                "139074064443283538926206930578588788175",
                "283834453503604424940714343990037264927",
                "216005190927689846469907313026884213398",
                "83797028027645453632842325580129207861",
                "225729786660892241227901689737070294344",
                "193994830698513442643703005330811828833",
                "33487672130400226797978777044493440041",
                "272909030305608809815804931423995727559",
                "178051347369962757143412344885542929930",
                "301666232247926893512511889459264814103",
                "194462942760841995328218456646877171891",
                "169254510334008575277523482602880375512",
                "326196987625537298692905773038209880627",
                "54893932469439402919397695933817993972",
                "339901518363608930156737771998588364832",
                "111231425905417595571623683678680643811",
                "209654633366009601336423026474989443225",
                "48296751881584233376731369751964700874",
                "184661331373799996605684633092598297535",
                "200058581158732120217921747204096563667",
                "197064836268830613792853062175929904526",
                "67240011475481645328600329425195774989",
                "306622484470863627096764125383085540911",
                "138512571568517702748099185118153878653",
                "20029650980296219351350184911692183874",
                "269621907832989188508263098266484863618",
                "327023021190508205150540967903547530276",
                "132057652690278512848841096644084745817",
                "44378444041464092929407481322344632151",
                "235229926266183400183554586652293794979",
                "240391466502614704977538772630356365776",
                "273799205440924995405721137429304269213",
                "293516093656982200525382775278013211728",
                "62320628712710289595195556755093683005",
                "326952436457875602063831321051517396755",
                "186219296812474152631177784420099742546",
                "138100531007937134616818623964689447484",
                "175677342910666542975205687201452862581",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "250201865143595880343019287650039689567",
                "239686128139790571273263836317193022238",
                "39496023817390657705749272000135706865",
                "4653284420745523907702694303059169458",
                "12084076116679581455399947683054420335",
                "273550907265029464272489770428692049458",
                "20987506157955544587010956827474198361",
                "255489461840254736269224113040398468905",
                "236461357371814718422047452043669182808",
                "57078660995854355144084108680161300545",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "24422440030672256960385563365824004276",
                "240956428166278390136136879965102045704",
                "15623095771186129603566360827276346579",
                "2925718802927435005951772727124029676",
                "310107820237620379084443372869251242246",
                "69805471448446013628170567463339077314",
                "49340022001239721548846310836327372284",
                "61864233186131422367525600535808418543",
                "108111827719715800633954715432344338381",
                "326486563032327632767731454722906869423",
                "209204613240962747195313906336109730440",
                "53439679446285838177414520022644729089",
                "197524863551282956612858687375302268179",
                "64424032148603409806583976267934185497",
                "288491473621316804476872460263121798398",
                "179968340114633445354628443721749991174",
                "334559078122107660342279797549022945433",
                "145649713997753183468731921888937256900",
                "95272492810255265528997919226374687248",
                "220782206357539159764152564932629549188",
                "140317575466208745869173072833924218366",
                "323331960572026482105844226039825737274",
                "151180713643196167814615395727170405228",
                "194106671654937947584903104797649364709",
                "217319717394805922923185841978219279696",
                "33953272120659119865573275273770225421",
                "103114021550946466796839488871879335786",
                "303222736964795574497280482618285829812",
                "290955461726577601094548591421473183818",
                "245264148084360489907612323192261946551",
                "244150200685673544147193293806890674459",
                "335103539597520931250866527435032541486",
                "101356774340030541864156205288375358087",
                "245909045951669103730137943961118283981",
                "309907008693401277634403366584730315227",
                "227758649607936914245807573054205034560",
                "304877283923412263739660603982686017994",
                "326668631568670299719353781560242445626",
                "17941874609309496201607094329733281504",
                "31284934918454291319733245283240379324",
                "221026510326902708674631715342504471553",
                "102623002550409739218646988175565883079",
                "65018089971916605608302168054880116014",
                "31854103838456671965192692853520431253",
                "95231701591793430002538327580539309363",
                "217993483966322583479956317534718649803",
                "101925241446500023142139714827354102802",
                "209320124575529917271585409053675692281",
                "167145640523384858181611993641634516344",
                "269326352737742728264865487950829937351",
                "183664941534995584237027290394085886642",
                "4651017645409983199495473780890611373",
                "79787060203547034583516819019449315290",
                "202449885388544233864928940574175978629",
                "60974379841852299510278079085052372753",
                "28813424802195059420520484861883003765",
                "239532662711243044225371224216261380533",
                "239014010638514839413057222501465616950",
                "220495773846177344637264359536409030132",
                "74115102614309136002527999638366519275",
                "41079889655526628495451377500760841601",
                "257678634608488689660576450995435631653",
                "131238584224229334081256510399458857033",
                "133034081464558048597338904856831238008",
                "53977892444727562303709636876165279809",
                "64172889005294610135406438423624192195",
                "91173623122443693455468677751018414384",
                "8746217557945573232572907951352621264",
                "289195997208037991764324174341328270692",
                "304639854426660058258599473182478347902",
                "298368613956777658741596508442362379884",
                "291964517398039783726172338647788670230",
                "9914162327493352829243784504515996595",
                "242921012982193885860019838480426210531",
                "228103623691091098235839728979085251205",
                "197630777384205680022369590214842737157",
                "212037452099960930105464361923583699991",
                "18445949568362903198882210961432235486",
                "192230594257596041735594761321110730078",
                "198531585622733184669312891439827489567",
                "67500591251971462668713597039468420716",
                "165648009221839833806363108208959345857",
                "191899887850841900624705216010249358536",
                "8829725495878242046183113764017786817",
                "56885680260307954046737407162315763331",
                "41215158503911837019769035456456179208",
                "280250653811952466936129359383998790313",
                "142453262917633362663259925257513003937",
                "285077393846312906550538396345796549551",
                "304645778847899024069056567686805187949",
                "268866832310402185535275073641702619977",
                "117595381666818833523066205096748436907",
                "45781958212124826475554430363510580873",
                "25362849729947783622343767134674349774",
                "115241432397524198019203982555948698375",
                "222863763840007627333066166356367517929",
                "248789232039050918428555443670567703808",
                "17001215695614112717048805297661513433",
                "127100060411923373641340041326636796996",
                "312002084074332811530651159533452248418",
                "83507052096922606876467420031284386810",
                "60428183760848751457176216696123210869",
                "134161393670749592464519061755697155766",
                "130115337208115914856548498614545540558",
                "283436735986896040161866121733841880553",
                "171292328395440959723754845335598768678",
                "25079587089875424499336076723885763495",
                "74998001693301157219474212671234671209",
                "222364969316860251779147417870986244524",
                "311333185009246407565260834815432117052",
                "199782564552220790526480946105877748612",
                "147375136441208239243774170687846139446",
                "263148849945459977448340569920340939411",
                "31136335648558613474066435884862141023",
                "154755488956651627258023220250665008325",
                "263983221542207476244070969441783725048",
                "207603813382433065381393660830323758814"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c183dc0af472dec33d2c0786a5e356baa8cad19",
        "id": "CVE-2022-50396-77f862c5",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "280509759645403063816048414707961551129",
                "87255314780806408175111838736471439425",
                "85679875509663948891831683073918230205",
                "106726959524410161074059465341348582030",
                "173953278764422259801077115196716493577",
                "283338151931155227626273792764506139005",
                "112843748784262856320062143624922468179",
                "324032481686015241149291932645101263223",
                "289820747823174880111657579046727940677",
                "194530879350142314341334124718996704851",
                "306284707432469219630291255457123898065",
                "132681904985233951894968673662083613603",
                "116673882892893519649744231976698663313",
                "315949362517317337505920832492944381463",
                "16784360042360242181890659813882971703",
                "222684563972809236606037568266265043030",
                "83857582623246311274535970491683548616",
                "152152782935612753066787383215152240157",
                "295329092466858377006781187090466337964",
                "263121808432530155485435220919417173262",
                "111810418439721695474853884581327141099",
                "268112809851274815389501942141633242199",
                "14063065001968004723226222103302088629",
                "227451388042689280995398368786673650476",
                "298493622905640847433210954913426526197",
                "115751960324797183528581869418564694839",
                "153666517228301816809392401657637867584",
                "63578466610097713994361490197770449472",
                "62964043825328611443040116198555218565",
                "86470885282980506530220888055016439864",
                "117338815668654787364684460301622980072",
                "141482297200784107917244286714106493849",
                "338315075300528852708343033596062462962",
                "239984822892279274361877858597604042349",
                "79507836787792920661291813112523753945",
                "312574670387073468274570417290452001272",
                "196537381283612601051316266033026052939",
                "234310263376146586672966794850932771598",
                "262311237359193088397601334913769764237",
                "240950197204853947949224573588835809114",
                "225721488238263902336167360301370178683",
                "62534489959762394338739123369432392256",
                "144544356340282951786934538718533837546",
                "275940544354334416316849374550707434645",
                "5695903217408373765548750635083186482",
                "42211306710638608541439378723967238791",
                "28423085406884141770291320344860113012",
                "186508691857372055579087798599972137768",
                "33788905309274213297437397853268300182",
                "2016783880748508095173305560241337927",
                "277775777158664925694407872796133967975",
                "218211852432135184348102362874033241915",
                "80383727438537386502435372843913159091",
                "43418492349102436908068850774128925464",
                "304003027323322737969110185596396496079",
                "259848128524004109290620031372993261300",
                "54463142380830072379687916161461051079",
                "128856904507065486096479776220231303412",
                "202412101349962380642108965490134833576",
                "287864931704080940242946060251227489147",
                "89922103949487054695122035127342888630",
                "187238842718234995941042956228572705488",
                "142996156003025408619391589889819048968",
                "331709960880177880488259812626655473277",
                "131431954155271019212845603216673731160",
                "183535690494189594441091063115932690404",
                "245507297666383602103828533269146803425",
                "157828707949454346154026940894384760299",
                "283538930131534019108979877901353852229",
                "225643833419264330292967643494570894847",
                "98626054595915435078362257206715083574",
                "294872166168322760136725586613057153901",
                "101871483757360487983839464468205867284",
                "296569621731333118363987656274423091950",
                "290709644905731080305023640037975200110",
                "304714862597954228031985447714258404159",
                "66085333890302857344191873247587174328",
                "43265884222451101080980435490879520887",
                "333072565071025068987908323238703910400",
                "320009293277985699966236971413438814713",
                "145965085577835362970595664873661560566",
                "227592016550289098882706584627094918648",
                "229656092075817248347207764598961186514",
                "3300518503797441812213158588918859997",
                "11793149567308590970194151682564689092",
                "262232748740413180947337484371375162234",
                "86340949401937179010929132361705529874",
                "104676631178541917392748741248801092940",
                "327166573890974978894900962809241573750",
                "108693489893892639694285823141797162773",
                "116800671786638542748319297689362421626",
                "49265632809800838106148761142291041739",
                "300011395731947654830876104010601241748",
                "87074380968164065111550028765479077952",
                "82590460548521573834944361762164437157",
                "221602778868813634764719860588577097202",
                "316284730413684179739642680292961522241",
                "321323257583478210858979807924600412662",
                "318439655719760911107372215547536636183",
                "63762041748865163277415167352534001552",
                "211183461691816067257120744796542140351",
                "226407333250124804926237616140473263298",
                "68574327597664215045460567806827438961",
                "54833253457704908211160753500742573919",
                "27719203314876126500799708364819199696",
                "270226196579505335162348144529937674720",
                "316592606338088400748415785626432221745",
                "282676487081422898159628390238790413903",
                "104132577987651718046643134754013379388",
                "183771235377800286832028658197841534109",
                "293159869458720666822897176714713217516",
                "183407482537902167613714990756642247137",
                "35283942645810103236252932901542726454",
                "312304399588454986320428986659587914107",
                "149048122160093214149877734462975094305",
                "309699985605680854069134285484434055612",
                "191353156174023746471065643372224448497",
                "228699472226662466817768817485213132984",
                "71323348261878733430089033761000555687",
                "222877837019833836852857970164094505061",
                "88765235074606162161146930905841065589",
                "9144598693691478101759817789385395677",
                "217847286658587792964760472321803313944",
                "29175489963452384825082033915787361385",
                "4408043019786047639239230334323661924",
                "189842068062543025589467554846808685520",
                "1744210047202155612583694711754877538",
                "135575330999417474415026093107144826482",
                "151205837120695112387046431163401152833",
                "276899545633694164748088506233720837032",
                "214987588356397284384341266484698031638",
                "333090793963631561883571212254146438446",
                "102801892049205125285674858489895500396",
                "82522847750844066829264762689251178880",
                "27823654693333102020187016763099597006",
                "320549113189610134984688940988612611021",
                "240012610660997607321459552394392051551",
                "52670761255741034486634842545557788406",
                "190519700393662763309879029615044026326",
                "54525313114588312328041249657480999836",
                "197710071905579872305207734737963353092",
                "263562539322969449745102785641650805090",
                "91739743044249914291936828153206295504",
                "316071062446369962883663404468390839471",
                "1876713579470234763013481279031427624",
                "234373327437101924249992059415074650635",
                "262339856740058183469649682324224107067",
                "6819290014365611672915796387309999585",
                "276571235307141975492301254868245017632",
                "237839133733707958986412564900169074424",
                "152888638129006243011829851580831327414",
                "212026407778777252785353347234229688922",
                "332419155096853819670181071840171319929",
                "234278681678639515915875108594456520058",
                "184710605675337775895725662789718505177",
                "61252829163312286703660992305427700062",
                "917464932127782197407757411494308345",
                "135717080815455793966832332456745446252",
                "79758074092798921344775144452329046913",
                "240719642027739345239194224568325736524",
                "273758902531474142246230687150950472801",
                "46344092656359102545420920334453784825",
                "52313493995637146742950664911687854940",
                "181677997641106304906014493649514784681",
                "39547027238224157041618573633391165515",
                "59503780132164714480951872435180838330",
                "270058344936722647476767290738486853975",
                "127756910734785529354693921464684841171",
                "136956619615216478138864470188548750906",
                "229025659082046951158709931566297002269",
                "115197542321549091565853655191309631285",
                "228361136768102451958434775394261381194",
                "34905790965905401086452219952633650187",
                "286303637615574669786721564019218219509",
                "73121719433142426476856505799209859183",
                "76048282923733236878700578226706369941",
                "278857950584386540611490173997284996074",
                "193396289632825021983977451875450691113",
                "155157898392970080082353937968991633805",
                "173519582255315814639097527634271003143",
                "305052988042946421070313166305311198119",
                "160872261284696945024404795689484577413",
                "1355958306602749795488105278556964152",
                "140470677575658483507827410576642657463",
                "95923432853561166235403583498907479122",
                "40023738719733024175751979516062128155",
                "307059241121570913413453078444835491692",
                "321824746553878750075713940698267618482",
                "309485986641332565962123510456677968232",
                "272345688053162927630579846821200979025",
                "75195910210272040976601872145426700548",
                "148307990700902091637395825462779784894",
                "147014156279886858909510650051758562580",
                "238660174302910071433031120831997618387",
                "208543091647634643258191156514820593600",
                "287561653990900672299869789396423616839",
                "224609335426449525523143970626368577265",
                "335898702848492504944182685657621244789",
                "308508890049955099192494616955309925556",
                "201052161498966996214578287423702267283",
                "55099397114817282347607177004510062738",
                "325495542428246900214066879378333697918",
                "233820815068519081400619601601474341968",
                "228862230294503343777051070731165253359",
                "169597112994660035965181635475807049230",
                "139763312396892804868108702775258712431",
                "18513917717999814922619985023996535706",
                "271578120177697455275391971074037483558",
                "189192774398855109678500961357597508068",
                "84815612108575128297802171256650856307",
                "21502196799753593189784721575548696337",
                "208775982188854443127054027899577346812",
                "105203641113750144074754044791680564097",
                "310112505696584831934008371162211486427",
                "285374844968861836072511956336830868387",
                "303599472171609318737875904533047557947",
                "61565683738729418654821535068495540983",
                "227947374850153001773575401145084093092",
                "134330703349141432511553732589569323360",
                "75195910210272040976601872145426700548",
                "203558923229374278828752990248472103701",
                "83816778229273550600901357281805847989",
                "250337729079465301486908970402330007113",
                "85874043568047799682809447435099465343",
                "59849578748031096175193737530423472556",
                "257399278500263828615446071397778584845",
                "63712631933064965338297863854844212714",
                "78984763774968572084397882760041643104",
                "179869406612113975032574107956552064014",
                "123329799133752054810069943247050747268",
                "48495491601900869955319005466436412721",
                "256278271105231064440350561119641775430",
                "158523591339753806627381430707481082120",
                "123837437766095686741287944367503493452",
                "55586247247463864750006627368811722067",
                "306712794187050112824984393734028647963",
                "81311367342478197490534570461159073701",
                "10384796173098224266830488852669285738",
                "67513218194496279950326945359851097003",
                "181206749718214460296517375484370200189",
                "292940993917757859808547576042431038915",
                "185022867239638570158423204097547066565",
                "48347252208020382806690033447904778267",
                "245600729109563209637982618657347485203",
                "70136138322367937661439993015913147258",
                "105436844392448214034551755410749461787",
                "115062358439013627787237665877460665853",
                "258536822026171211109538842956558509100",
                "262453563536474669171732139038998203774",
                "314433388932738312387917453166701825649",
                "148011014991749164113834718651702855979",
                "211097790680457036269452077886961414137",
                "332340774768076439627967536910147025378",
                "197445894904176718712318590198276367515",
                "310218204455537504917128679234474760916",
                "301859314172655255852513063248398404566",
                "205656590445752532031353566520905468531",
                "181847965459748467025590737310931147639",
                "108311659506516710800359247379226486615",
                "75190531018881031504968043854149037473",
                "284453467424623146916306881439900721248",
                "265416729929591398422012329625608017498",
                "155478921186324905815235004575972392150",
                "312138549585818393203623772737492564364",
                "296629561267177944600906621996451695971",
                "101789146767076950590478085490793889322",
                "101970912299924183886825092611245759214",
                "55175166394920713975722437871178108556",
                "178579372365244500121110004715979779055",
                "97631906100493816724448360248374827866",
                "134873431885061391696236112022980980801",
                "271206466000747684358997610730145199164",
                "146430353047065604354046389287182153808",
                "209206726439041007857997488657727110346",
                "61340146334396589521281729911954874335",
                "156409451048540887346709004911541719024",
                "279344226956421435005039364176694066349",
                "168002471106150902091359512158598539862",
                "244603371643824702139107100081976440540",
                "213122642162075737839522323824071149023",
                "22315024398850198426293971122469692028",
                "339814288572357173670966378363953522837",
                "120002788666848887007219908068824376051",
                "249285366904919438761225296928522995203",
                "274034299651343892667137164247877682095",
                "142278430149355398484976617964070575476",
                "74961319306809428273256843169315139462",
                "155122737261391809925799587351039445077",
                "295872734662387570530624569048667488757",
                "144269197431054085802636132924627988660",
                "179003489754050567022136112059202617215",
                "163376580922509824688376718692934920418",
                "197110125576618884517482825931184407654",
                "281735545752890838539258599862357545144",
                "36477420363485848364561385907648357824",
                "124050189618788024262208989043202395055",
                "33543807757154315990966827513793912555",
                "70719149033469202140763214228528757282",
                "176165629947711740357000367492533960590",
                "178456293502922201221105802773325128799",
                "116072447547671853421993394753080771945",
                "85159185373000796387551291978293857294",
                "268434955775367011260812228171319699984",
                "248097940671435335390534685317659685580",
                "139519794914263351277080992555004915577",
                "61752925333516445087712738406215635062",
                "261532016797575938869547985506638343712",
                "330288028610655423708255400272919616044",
                "282013180010070150076202412074513260686",
                "185106174012397431622955792498639396577",
                "260035256039079237363375691650083831928",
                "325948800657550692796003324489621146730",
                "292993984453579881848749338678620406932",
                "305181234726480817747406001868470350004",
                "226259716953923643684767400067332248755",
                "129760807545326470104159505396711071052",
                "156651997020654637431685474680674235896",
                "208401415400129731371408650552650702505",
                "314330367477973503316568008922044880375",
                "156945719265680396083341924008869538843",
                "190630491983433998069812966408879906609",
                "260299425858072933084382470389229773009",
                "71081445141378942956779401154093801208",
                "265252331836773796840450302385907600803",
                "139277351666562565333884670089408338601",
                "290702965135899939210827508486569658279",
                "16717666295724702055624089329185435960",
                "33081560449760766414095998696160931797",
                "20459425786320782000315876007216379376",
                "15497060342839189107374443153886868786",
                "168064609048296942938582221214109828601",
                "336291587636964225492755760208306357168",
                "15954350202235836013582808141035291843",
                "100389032338800887877882397345433915513",
                "301643905583909935373861635724841811071",
                "131647299121401062825106837152185612408",
                "208662449287599232388276354900961527879",
                "12491449048311831353342603420306087837",
                "6672956455819329698768293205506340204",
                "231884963029348658265457652123141184458",
                "329306666342224772688453728494097535580",
                "63562396274442563701261481579473648218",
                "158687664237779265433373976509396195536",
                "60736073326225098353542157927916822610",
                "159055554470867356813452310580776185047",
                "71973892600656436756717149714887794452",
                "133522766715646126867901228160053988905",
                "140209237722427451511879551739003326358",
                "117088171354959207957550534831155414308",
                "255900654678103886443537354502303422912",
                "296889040349448830391713302677503417167",
                "39193336984623146981118976514649038326",
                "315673143086554403845212881720889126219",
                "150270089164112948815844134849755738934",
                "19466361905484695237023186334259595134",
                "124813236863500517053826615104146849730",
                "17773037634670104084203170524094354036",
                "230266530257917704796456262629435739997",
                "333630772612234481140220109076054253354",
                "86840290917603698006448245714002076600",
                "60224766630594419597712086560298210055",
                "240775958401791232075693174596762235607",
                "83823532540821411961214463930459968590",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "80212646744865450307741305536260793601",
                "56304678400035904860412651896454432527",
                "158287538998792423399538922114057755993",
                "310338605315373420950229330880347507782",
                "197635271244331002479753675967181962162",
                "228051355617191705350664843374779272788",
                "110807274676918356743410367012581319980",
                "28082416814896206939363170494987508462",
                "21737552350706474216865425411570552414",
                "143603900430349009436078124551884835197",
                "283528696939154148656850254091089478274",
                "301677284598560243123523310912034850140",
                "168519432382053092593886489027313226026",
                "270837370170699497619616978344511128195",
                "325615819340242902003254007157453867291",
                "80670546353376554006468294770227774191",
                "67937091315908374954408847757962560836",
                "300004453102585288561985595456376197626",
                "246829990512347045597455653382301461372",
                "152315653598385274967021287824654406710",
                "294163452487731950427640192317376126969",
                "105086691778344940605709524663408246266",
                "237411677726482013466003273063639538697",
                "4841168631138911559022130594416000274",
                "173919083945450177987737767689085190249",
                "220544888894075948707466830921289019069",
                "223751900736003717571890721806956674685",
                "228168268669937020165044438556199641218",
                "228743190967961385805940615267440001890",
                "282703443704880122675350008228245404723",
                "4830267298904573473058028446993151396",
                "32981239962394418245129587104347940249",
                "63518457134274858415750709035074521944",
                "264082406745506795785991046200865523484",
                "103397360621517957576200032963760349247",
                "39110627790389090332002754759134033124",
                "92153338371288653687155287080641255757",
                "306522800623611040829394768876856049359",
                "19482764675935062978548688773931801866",
                "280298472943730119276746005610297071895",
                "177464488271311802549766775186399301224",
                "124074547286232620203193260219927336878",
                "43234497210309060381320793077441010406",
                "302027521002557073687641387581051254728",
                "19418623357350561540558369243773171645",
                "254727633487863646367592443229035747615",
                "220880299683214490541086675040151149588",
                "254398905177914021326812736387147915094",
                "51367555964977934293981428893688896492",
                "120564189443694171005560346064302515008",
                "99135184923843849769920943676789148037",
                "139074064443283538926206930578588788175",
                "283834453503604424940714343990037264927",
                "216005190927689846469907313026884213398",
                "83797028027645453632842325580129207861",
                "225729786660892241227901689737070294344",
                "193994830698513442643703005330811828833",
                "33487672130400226797978777044493440041",
                "272909030305608809815804931423995727559",
                "178051347369962757143412344885542929930",
                "301666232247926893512511889459264814103",
                "194462942760841995328218456646877171891",
                "169254510334008575277523482602880375512",
                "326196987625537298692905773038209880627",
                "54893932469439402919397695933817993972",
                "339901518363608930156737771998588364832",
                "111231425905417595571623683678680643811",
                "209654633366009601336423026474989443225",
                "48296751881584233376731369751964700874",
                "184661331373799996605684633092598297535",
                "200058581158732120217921747204096563667",
                "197064836268830613792853062175929904526",
                "67240011475481645328600329425195774989",
                "306622484470863627096764125383085540911",
                "138512571568517702748099185118153878653",
                "20029650980296219351350184911692183874",
                "269621907832989188508263098266484863618",
                "327023021190508205150540967903547530276",
                "132057652690278512848841096644084745817",
                "44378444041464092929407481322344632151",
                "235229926266183400183554586652293794979",
                "240391466502614704977538772630356365776",
                "273799205440924995405721137429304269213",
                "293516093656982200525382775278013211728",
                "70373790736865362817290620496780725048",
                "330599235137159653400418040573264987931",
                "276733369152887200862628036564228703575",
                "80252567135866867194714143198178119319",
                "111929006459310727677081694180387888465",
                "239686128139790571273263836317193022238",
                "39496023817390657705749272000135706865",
                "4653284420745523907702694303059169458",
                "12084076116679581455399947683054420335",
                "180748449434793700640761105134906547380",
                "112914696237816362524877169309207779609",
                "235612268439189478637227522547833173013",
                "263224628560473311407149311921403612007",
                "293949540968280903538352693917672011553",
                "240956428166278390136136879965102045704",
                "15623095771186129603566360827276346579",
                "2925718802927435005951772727124029676",
                "310107820237620379084443372869251242246",
                "69805471448446013628170567463339077314",
                "49340022001239721548846310836327372284",
                "61864233186131422367525600535808418543",
                "108111827719715800633954715432344338381",
                "326486563032327632767731454722906869423",
                "209204613240962747195313906336109730440",
                "53439679446285838177414520022644729089",
                "197524863551282956612858687375302268179",
                "64424032148603409806583976267934185497",
                "288491473621316804476872460263121798398",
                "179968340114633445354628443721749991174",
                "334559078122107660342279797549022945433",
                "145649713997753183468731921888937256900",
                "95272492810255265528997919226374687248",
                "220782206357539159764152564932629549188",
                "140317575466208745869173072833924218366",
                "323331960572026482105844226039825737274",
                "151180713643196167814615395727170405228",
                "194106671654937947584903104797649364709",
                "217319717394805922923185841978219279696",
                "33953272120659119865573275273770225421",
                "103114021550946466796839488871879335786",
                "303222736964795574497280482618285829812",
                "290955461726577601094548591421473183818",
                "245264148084360489907612323192261946551",
                "244150200685673544147193293806890674459",
                "335103539597520931250866527435032541486",
                "101356774340030541864156205288375358087",
                "245909045951669103730137943961118283981",
                "309907008693401277634403366584730315227",
                "227758649607936914245807573054205034560",
                "304877283923412263739660603982686017994",
                "326668631568670299719353781560242445626",
                "17941874609309496201607094329733281504",
                "31284934918454291319733245283240379324",
                "221026510326902708674631715342504471553",
                "102623002550409739218646988175565883079",
                "65018089971916605608302168054880116014",
                "31854103838456671965192692853520431253",
                "95231701591793430002538327580539309363",
                "217993483966322583479956317534718649803",
                "101925241446500023142139714827354102802",
                "209320124575529917271585409053675692281",
                "167145640523384858181611993641634516344",
                "269326352737742728264865487950829937351",
                "183664941534995584237027290394085886642",
                "4651017645409983199495473780890611373",
                "79787060203547034583516819019449315290",
                "202449885388544233864928940574175978629",
                "60974379841852299510278079085052372753",
                "28813424802195059420520484861883003765",
                "239532662711243044225371224216261380533",
                "239014010638514839413057222501465616950",
                "220495773846177344637264359536409030132",
                "74115102614309136002527999638366519275",
                "41079889655526628495451377500760841601",
                "257678634608488689660576450995435631653",
                "131238584224229334081256510399458857033",
                "133034081464558048597338904856831238008",
                "53977892444727562303709636876165279809",
                "64172889005294610135406438423624192195",
                "91173623122443693455468677751018414384",
                "8746217557945573232572907951352621264",
                "289195997208037991764324174341328270692",
                "304639854426660058258599473182478347902",
                "298368613956777658741596508442362379884",
                "291964517398039783726172338647788670230",
                "9914162327493352829243784504515996595",
                "242921012982193885860019838480426210531",
                "228103623691091098235839728979085251205",
                "197630777384205680022369590214842737157",
                "212037452099960930105464361923583699991",
                "18445949568362903198882210961432235486",
                "192230594257596041735594761321110730078",
                "198531585622733184669312891439827489567",
                "67500591251971462668713597039468420716",
                "165648009221839833806363108208959345857",
                "191899887850841900624705216010249358536",
                "8829725495878242046183113764017786817",
                "56885680260307954046737407162315763331",
                "41215158503911837019769035456456179208",
                "162985849819735605598284220751021308426",
                "5138323928698068308590132492791796478",
                "96798379439963124215019674563177991575",
                "131923895086269000333586665457794038101",
                "222863763840007627333066166356367517929",
                "248789232039050918428555443670567703808",
                "17001215695614112717048805297661513433",
                "127100060411923373641340041326636796996",
                "312002084074332811530651159533452248418",
                "83507052096922606876467420031284386810",
                "60428183760848751457176216696123210869",
                "134161393670749592464519061755697155766",
                "130115337208115914856548498614545540558",
                "283436735986896040161866121733841880553",
                "171292328395440959723754845335598768678",
                "25079587089875424499336076723885763495",
                "74998001693301157219474212671234671209",
                "222364969316860251779147417870986244524",
                "311333185009246407565260834815432117052",
                "199782564552220790526480946105877748612",
                "147375136441208239243774170687846139446",
                "263148849945459977448340569920340939411",
                "31136335648558613474066435884862141023",
                "154755488956651627258023220250665008325",
                "263983221542207476244070969441783725048",
                "207603813382433065381393660830323758814"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@3abebc503a5148072052c229c6b04b329a420ecd",
        "id": "CVE-2022-50396-798bacfa",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "34571410041191822312468712686035537594",
            "length": 741.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@18c3fa7a7fdbb4d21dafc8a7710ae2c1680930f6",
        "id": "CVE-2022-50396-7a4c41a1",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "299496722037354693927789417488563906183",
            "length": 167.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "__tcindex_partial_destroy"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-7f67a897",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "44463434380082339291551558777564535251",
                "320280872889133287426237098081507002211",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@c4de6057e7c6654983acb63d939d26ac0d7bbf39",
        "id": "CVE-2022-50396-842d25b3",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "128148840402203647277503232082846874077",
            "length": 740.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-84a6c1e6",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "255671146106000869190688726553626016490",
            "length": 4313.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@7c183dc0af472dec33d2c0786a5e356baa8cad19",
        "id": "CVE-2022-50396-86607cc0",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "28398736238945350618849469399337472432",
            "length": 3945.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@facc4405e8b7407e03216207b1d1d640127de0c8",
        "id": "CVE-2022-50396-8719e70e",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "220654007789299817612380815289363415026",
            "length": 663.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_classify"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-87a516fe",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "305590277902973522958123472884839023901",
            "length": 207.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_work"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-8c1ddd77",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "319752661311849156468642925526797534576",
            "length": 1721.0
        },
        "target": {
            "file": "include/net/tc_wrapper.h",
            "function": "tc_classify"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-91c9b7fa",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "254224658123023897417411352382986945989",
            "length": 3952.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@55ac68b53f1cea1926ee2313afc5d66b91daad71",
        "id": "CVE-2022-50396-a1878398",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "60867965012210603376014122547379697345",
            "length": 166.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_filter_result_init"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-a1bf0780",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "182947738495974805370114350031555843239",
            "length": 533.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_alloc_perfect_hash"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-a3811ae3",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "187111357530266137512254553203090204945",
            "length": 201.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_bind_class"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-a7e302ea",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "103595503454320612265764337963812601909",
            "length": 131.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_element"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-ae57ccd5",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "198156697529599237471378890524848381780",
            "length": 185.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_partial_destroy_work"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-b07ec45b",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "28398736238945350618849469399337472432",
            "length": 3945.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@399ab7fe0fa0d846881685fd4e57e9a8ef7559f7",
        "id": "CVE-2022-50396-b17fecf0",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "292109380257248390813677867375431384172",
            "length": 4320.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@18c3fa7a7fdbb4d21dafc8a7710ae2c1680930f6",
        "id": "CVE-2022-50396-b4563eca",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "296819844562730531760747184471091325018",
                "128596310167053433923608832467068446312",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@55ac68b53f1cea1926ee2313afc5d66b91daad71",
        "id": "CVE-2022-50396-bb4a9aa4",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "172513095244537638560775738717054373193",
            "length": 702.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_classify"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-bd0d65c7",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "201785323057803814959228234159151298040",
            "length": 727.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-be3f0d0e",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "281628744116330656705130241115535904864",
            "length": 189.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "__tcindex_destroy"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-c3ef5c0c",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "170016837129282072763484621584775893436",
            "length": 742.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-c4df96e8",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "280509759645403063816048414707961551129",
                "87255314780806408175111838736471439425",
                "85679875509663948891831683073918230205",
                "56595342605300454063590733139261821051",
                "197140838481919109678629052243153417461",
                "281060430661581701164948001020802961771",
                "320087474891870729772582257059021137270",
                "285808395685314041688873758777110183879",
                "323034478664034237459506017203204513313",
                "126106121510361634587756618853739094672",
                "25736338424480915965137628642088670920",
                "234325800607228964037357050131776962187",
                "247145523102920359735638710484222225722",
                "6993726483942074859683086068258147610",
                "45480206123457572296492009381103741244",
                "243003405253188222868528047626204412174",
                "295329092466858377006781187090466337964",
                "263121808432530155485435220919417173262",
                "320003676387832328960861606879447315899",
                "306299061329560692913930663344125364139",
                "5396691777752819881827580168271671551",
                "247145523102920359735638710484222225722",
                "6993726483942074859683086068258147610",
                "320991791949519556836112009296012007425",
                "161751997667110677498770250758503227753",
                "298493622905640847433210954913426526197",
                "115751960324797183528581869418564694839",
                "153666517228301816809392401657637867584",
                "63578466610097713994361490197770449472",
                "62964043825328611443040116198555218565",
                "86470885282980506530220888055016439864",
                "117338815668654787364684460301622980072",
                "111468435287600867909902828713101146221",
                "67032407211338358352245067188814383416",
                "110659226823806503197158202016191649175",
                "322803768362302891552018005911821476054",
                "196537381283612601051316266033026052939",
                "234310263376146586672966794850932771598",
                "62605433763190244631192748102844514084",
                "276207426104323091986338060626801888196",
                "80383727438537386502435372843913159091",
                "43418492349102436908068850774128925464",
                "304003027323322737969110185596396496079",
                "259848128524004109290620031372993261300",
                "54463142380830072379687916161461051079",
                "128856904507065486096479776220231303412",
                "202412101349962380642108965490134833576",
                "287864931704080940242946060251227489147",
                "89922103949487054695122035127342888630",
                "187238842718234995941042956228572705488",
                "142996156003025408619391589889819048968",
                "331709960880177880488259812626655473277",
                "131431954155271019212845603216673731160",
                "183535690494189594441091063115932690404",
                "245507297666383602103828533269146803425",
                "157828707949454346154026940894384760299",
                "283538930131534019108979877901353852229",
                "225643833419264330292967643494570894847",
                "98626054595915435078362257206715083574",
                "294872166168322760136725586613057153901",
                "101871483757360487983839464468205867284",
                "296569621731333118363987656274423091950",
                "290709644905731080305023640037975200110",
                "304714862597954228031985447714258404159",
                "66085333890302857344191873247587174328",
                "43265884222451101080980435490879520887",
                "34440253841860571606059037599818229297",
                "16790118621060741841785892993771260680",
                "202465401344242250751365861880111049874",
                "227088563395504537781497275396311779184",
                "36888569925078183225758541693147679604",
                "194707108196616339833164062690795827962",
                "262232748740413180947337484371375162234",
                "86340949401937179010929132361705529874",
                "104676631178541917392748741248801092940",
                "327166573890974978894900962809241573750",
                "108693489893892639694285823141797162773",
                "116800671786638542748319297689362421626",
                "49265632809800838106148761142291041739",
                "300011395731947654830876104010601241748",
                "87074380968164065111550028765479077952",
                "82590460548521573834944361762164437157",
                "221602778868813634764719860588577097202",
                "316284730413684179739642680292961522241",
                "321323257583478210858979807924600412662",
                "318439655719760911107372215547536636183",
                "63762041748865163277415167352534001552",
                "211183461691816067257120744796542140351",
                "226407333250124804926237616140473263298",
                "68574327597664215045460567806827438961",
                "54833253457704908211160753500742573919",
                "27719203314876126500799708364819199696",
                "270226196579505335162348144529937674720",
                "316592606338088400748415785626432221745",
                "282676487081422898159628390238790413903",
                "104132577987651718046643134754013379388",
                "183771235377800286832028658197841534109",
                "175148317359697581551093050170006780800",
                "1604800992816325217107206992920667943",
                "182240092005371673907248464399501966150",
                "149048122160093214149877734462975094305",
                "309699985605680854069134285484434055612",
                "191353156174023746471065643372224448497",
                "228699472226662466817768817485213132984",
                "117579264997626106516767798198120584323",
                "6433713483446462853543709615651177072",
                "250804207143020978903068547246742295078",
                "217847286658587792964760472321803313944",
                "320323864642928331002795011177325758930",
                "120873528810180199870035874367968003419",
                "15052961478132914230309391021375861669",
                "106697138396037613981752160360503196688",
                "276899545633694164748088506233720837032",
                "317938442248129752138919723426428504951",
                "324824380285406704266931298997063385668",
                "39115635040327366323231415062886432964",
                "98775338794995862872751002338793349431",
                "94456658076462013210632301231225411264",
                "74604397269678658724226490240193731547",
                "221597771570563825839059677679286452539",
                "251789054265301138712583458222214595",
                "331802933909096155464079643356447596025",
                "102801892049205125285674858489895500396",
                "82522847750844066829264762689251178880",
                "27823654693333102020187016763099597006",
                "320549113189610134984688940988612611021",
                "240012610660997607321459552394392051551",
                "52670761255741034486634842545557788406",
                "23926331906394815943948998217233310033",
                "163326253889465320557806082892060582098",
                "26206748405458067299548413806978928989",
                "307629201129255844222213634674827828429",
                "261618453110755648036275556305285876357",
                "1876713579470234763013481279031427624",
                "112077308754859308491781657077720501701",
                "28464426873916322808855612204769102175",
                "112775216341477168937316941886397754701",
                "135562058543866253379355382706091908395",
                "305361123748308489275298283538483986626",
                "315287573579707989573858238182883623885",
                "255351442541702193396875535824522029168",
                "220269554631646020724249411961466594900",
                "198680490122018243525353570131059817870",
                "185452451840035566136469717574594033672",
                "170508835649309714599011162329659090612",
                "152888638129006243011829851580831327414",
                "212026407778777252785353347234229688922",
                "332419155096853819670181071840171319929",
                "234278681678639515915875108594456520058",
                "184710605675337775895725662789718505177",
                "61252829163312286703660992305427700062",
                "917464932127782197407757411494308345",
                "135717080815455793966832332456745446252",
                "79758074092798921344775144452329046913",
                "240719642027739345239194224568325736524",
                "273758902531474142246230687150950472801",
                "46344092656359102545420920334453784825",
                "52313493995637146742950664911687854940",
                "181677997641106304906014493649514784681",
                "39547027238224157041618573633391165515",
                "59503780132164714480951872435180838330",
                "270058344936722647476767290738486853975",
                "127756910734785529354693921464684841171",
                "136956619615216478138864470188548750906",
                "229025659082046951158709931566297002269",
                "115197542321549091565853655191309631285",
                "228361136768102451958434775394261381194",
                "34905790965905401086452219952633650187",
                "309760773370826511757461131242632889873",
                "70980012933451865050899439219716139345",
                "285183154844225391105715797078558958663",
                "272144037587603162160127091824029956464",
                "214789090121278991244165588739683727942",
                "9399691772320001509467549844854131851",
                "186621395975070956765341292004581785896",
                "258500498571482888158928684538579752113",
                "338809811339301317407259872157230335334",
                "140470677575658483507827410576642657463",
                "95923432853561166235403583498907479122",
                "40023738719733024175751979516062128155",
                "49066061465293116566950275381729152015",
                "195078472678751770956062138841088381580",
                "237341555447908053409660891261692211732",
                "57070359789552141273996186831281060396",
                "155919082408037884735510465142148268811",
                "27916722027740065897697904512713783821",
                "150657525002135792410567273264133743183",
                "37884189653468142401521082478529429891",
                "143506295766677304498113155073551433072",
                "292418585998365933881589706685115676971",
                "80035029418862005674368846980334968121",
                "208516876534613159817319657753501875608",
                "33788905309274213297437397853268300182",
                "64077696228133146142954224034226370449",
                "196885580487433423789386634920299114651",
                "287561653990900672299869789396423616839",
                "224609335426449525523143970626368577265",
                "335898702848492504944182685657621244789",
                "308508890049955099192494616955309925556",
                "201052161498966996214578287423702267283",
                "55099397114817282347607177004510062738",
                "325495542428246900214066879378333697918",
                "233820815068519081400619601601474341968",
                "228862230294503343777051070731165253359",
                "169597112994660035965181635475807049230",
                "192512904758896878985384958236746869799",
                "78604230082750005422843918240163003824",
                "122444940875571414124350009475902540840",
                "232465000580445127605725036537929008334",
                "165315732397598672487327312722774749189",
                "83419451995643770617618750226606284714",
                "333818310029209509049321573233515740992",
                "242794577246028673121220896125305980946",
                "294805231170477533160904327170378798300",
                "207148371970289742341083425805967282292",
                "240590767480324561552955419051464047285",
                "286474467756974338739485515356905746020",
                "157929803278415469521538547296550113550",
                "179869406612113975032574107956552064014",
                "123329799133752054810069943247050747268",
                "48495491601900869955319005466436412721",
                "256278271105231064440350561119641775430",
                "158523591339753806627381430707481082120",
                "197125347923992185270502421383547951384",
                "5282085765682090427922147265512096881",
                "69997837938981461017515876725905508463",
                "312855691568130181444199048082886497851",
                "10384796173098224266830488852669285738",
                "67513218194496279950326945359851097003",
                "181206749718214460296517375484370200189",
                "292940993917757859808547576042431038915",
                "242958580644104625387693025234712949920",
                "109176729197877659785973813088248894093",
                "268580488595265578677811918591032581365",
                "61853897504725216829126429324690432949",
                "93157470345850623201026224941765485833",
                "23242931504903265580487223826599382797",
                "281490251944471964251886287879823281160",
                "314433388932738312387917453166701825649",
                "148011014991749164113834718651702855979",
                "211097790680457036269452077886961414137",
                "332340774768076439627967536910147025378",
                "197445894904176718712318590198276367515",
                "310218204455537504917128679234474760916",
                "301859314172655255852513063248398404566",
                "279732097708203099170525704864012066529",
                "275811245765353271312962885645522650083",
                "272358847509451279337826841468804592199",
                "321210886655478046909831850289351603902",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "155478921186324905815235004575972392150",
                "312138549585818393203623772737492564364",
                "198723418281996137934226223658180030457",
                "172186648922855250769646318994221585091",
                "218916047433228071860262786694055882142",
                "2886452094710735787038455938581677375",
                "12998892642466703854595904760682998187",
                "200027636224986063874967053461636152995",
                "79871150605386425978809483067786862398",
                "146430353047065604354046389287182153808",
                "209206726439041007857997488657727110346",
                "61340146334396589521281729911954874335",
                "156409451048540887346709004911541719024",
                "279344226956421435005039364176694066349",
                "168002471106150902091359512158598539862",
                "244603371643824702139107100081976440540",
                "213122642162075737839522323824071149023",
                "22315024398850198426293971122469692028",
                "171405329733770861063528951332035607744",
                "260550527547558174124204896502313389948",
                "101264304133960637290358611481510608425",
                "142278430149355398484976617964070575476",
                "74961319306809428273256843169315139462",
                "155122737261391809925799587351039445077",
                "295872734662387570530624569048667488757",
                "144269197431054085802636132924627988660",
                "179003489754050567022136112059202617215",
                "163376580922509824688376718692934920418",
                "197110125576618884517482825931184407654",
                "281735545752890838539258599862357545144",
                "36477420363485848364561385907648357824",
                "124050189618788024262208989043202395055",
                "33543807757154315990966827513793912555",
                "70719149033469202140763214228528757282",
                "176165629947711740357000367492533960590",
                "178456293502922201221105802773325128799",
                "116072447547671853421993394753080771945",
                "97154861469260327190157240890634980332",
                "126755216988989745830869440223523764539",
                "308542605178484311840897452532682229212",
                "91497513089884820593998288850841401817",
                "61752925333516445087712738406215635062",
                "261532016797575938869547985506638343712",
                "330288028610655423708255400272919616044",
                "282013180010070150076202412074513260686",
                "168050969616430031738825108189716782273",
                "190169658735694399257824265377740554411",
                "243615160010194730810813893663933566609",
                "58879717309950469007502063678277590557",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "156651997020654637431685474680674235896",
                "208401415400129731371408650552650702505",
                "314330367477973503316568008922044880375",
                "156945719265680396083341924008869538843",
                "190630491983433998069812966408879906609",
                "260299425858072933084382470389229773009",
                "71081445141378942956779401154093801208",
                "265252331836773796840450302385907600803",
                "139277351666562565333884670089408338601",
                "290702965135899939210827508486569658279",
                "16717666295724702055624089329185435960",
                "33081560449760766414095998696160931797",
                "20459425786320782000315876007216379376",
                "15497060342839189107374443153886868786",
                "168064609048296942938582221214109828601",
                "336291587636964225492755760208306357168",
                "15954350202235836013582808141035291843",
                "117442902989585517161214884371669222962",
                "45818586725109786229518046829677312626",
                "192173146153696212880150664098072861638",
                "184752535138967903105227675097325843162",
                "12491449048311831353342603420306087837",
                "6672956455819329698768293205506340204",
                "231884963029348658265457652123141184458",
                "329306666342224772688453728494097535580",
                "63562396274442563701261481579473648218",
                "158687664237779265433373976509396195536",
                "60736073326225098353542157927916822610",
                "159055554470867356813452310580776185047",
                "71973892600656436756717149714887794452",
                "133522766715646126867901228160053988905",
                "283235570742025185625194300562276398296",
                "25841449932404129724610478872911493846",
                "53668400235300457148034367018888076425",
                "72504140927466995198570603084150364536",
                "130041778226414487121633006505271345565",
                "110306982607864598251684365538121866142",
                "271658460938297260634318367297978718033",
                "17773037634670104084203170524094354036",
                "230266530257917704796456262629435739997",
                "333630772612234481140220109076054253354",
                "57896217706882902282225614452468092131",
                "297374753248636385471241443242632259408",
                "233611397281015314497611956283592944832",
                "129950390042656196085926427472513489175",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "80212646744865450307741305536260793601",
                "56304678400035904860412651896454432527",
                "158287538998792423399538922114057755993",
                "310338605315373420950229330880347507782",
                "56540204965001714242652896030761496784",
                "202661084786907636806690908815761709807",
                "185752458852695908453317309488572800113",
                "295907497875413395401916172261614999968",
                "111309039960133871347975435784476772287",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980",
                "28082416814896206939363170494987508462",
                "333282269755591570342549332393484639251",
                "74818626647526360007366965143585370889",
                "248407809600343301585187534315585741497",
                "251455037606805199624792476559186954141",
                "223751900736003717571890721806956674685",
                "228168268669937020165044438556199641218",
                "228743190967961385805940615267440001890",
                "282703443704880122675350008228245404723",
                "4830267298904573473058028446993151396",
                "32981239962394418245129587104347940249",
                "63518457134274858415750709035074521944",
                "264082406745506795785991046200865523484",
                "103397360621517957576200032963760349247",
                "39110627790389090332002754759134033124",
                "92153338371288653687155287080641255757",
                "220363202637826191482720888684533932560",
                "211107312727905858639043081417571919096",
                "158866509246928399630010860687258913513",
                "152184792281704400064045417050345802873",
                "124074547286232620203193260219927336878",
                "43234497210309060381320793077441010406",
                "302027521002557073687641387581051254728",
                "19418623357350561540558369243773171645",
                "254727633487863646367592443229035747615",
                "220880299683214490541086675040151149588",
                "254398905177914021326812736387147915094",
                "51367555964977934293981428893688896492",
                "120564189443694171005560346064302515008",
                "99135184923843849769920943676789148037",
                "139074064443283538926206930578588788175",
                "283834453503604424940714343990037264927",
                "215184525436935745819487702535227227585",
                "139513788697332645839614044928431831044",
                "213158008185795206805579488691893964117",
                "22708133501987107137652945466063208187",
                "272909030305608809815804931423995727559",
                "178051347369962757143412344885542929930",
                "301666232247926893512511889459264814103",
                "194462942760841995328218456646877171891",
                "169254510334008575277523482602880375512",
                "1957859725783965893569486560070032465",
                "182320965903913896965257843153786751037",
                "286769622184767966818513467014931490903",
                "314648511153668338599920290614750375795",
                "103023698570701542792619454905395010797",
                "222359293436320867038312885956511261529",
                "242805933281381293925250203338945307223",
                "7031209232653204863509734741818381205",
                "16075449566311432770116347015422506936",
                "254513503262771837981190081848738267728",
                "178304922857719444986093132116911961086",
                "222747807397119117969960061938907193269",
                "272758079151528950577333797490981120623",
                "132057652690278512848841096644084745817",
                "44378444041464092929407481322344632151",
                "235229926266183400183554586652293794979",
                "240391466502614704977538772630356365776",
                "273799205440924995405721137429304269213",
                "293516093656982200525382775278013211728",
                "62320628712710289595195556755093683005",
                "326952436457875602063831321051517396755",
                "186219296812474152631177784420099742546",
                "138100531007937134616818623964689447484",
                "175677342910666542975205687201452862581",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "250201865143595880343019287650039689567",
                "239686128139790571273263836317193022238",
                "39496023817390657705749272000135706865",
                "4653284420745523907702694303059169458",
                "12084076116679581455399947683054420335",
                "273550907265029464272489770428692049458",
                "20987506157955544587010956827474198361",
                "255489461840254736269224113040398468905",
                "236461357371814718422047452043669182808",
                "57078660995854355144084108680161300545",
                "326222031494914881885078271861153275306",
                "301547192379154723604508963080846040681",
                "106081930512030408370198932312238496259",
                "288270363516125540355988638952301582130",
                "24422440030672256960385563365824004276",
                "291864754106212704084549779345272982679",
                "94992892599510513061899731096048956475",
                "14843676617334266383213357990187728576",
                "104299760377050167209608512932003192517",
                "131763970235320192215382771832976672935",
                "119743937947249733565438811632254677660",
                "204897986191038567914876349888043177128",
                "336428411118951316775373027538188648844",
                "148201195562883370923466443615696942770",
                "287396616910338659104737280187918551149",
                "48634310537618340391327310337123793435",
                "299153699433751374044866894432361144429",
                "60110826841481726728546855152509122061",
                "27493200818199785607460288938727102908",
                "195467663381369414569572278937308936993",
                "276712715617111353326607281807654928415",
                "309907008693401277634403366584730315227",
                "227758649607936914245807573054205034560",
                "304877283923412263739660603982686017994",
                "326668631568670299719353781560242445626",
                "8877349465208446800199987474491230795",
                "223009269072645768209125613920204335206",
                "14038377459051940957704836420303741683",
                "135218696439025813827845554830350765188",
                "65018089971916605608302168054880116014",
                "31854103838456671965192692853520431253",
                "95231701591793430002538327580539309363",
                "217993483966322583479956317534718649803",
                "101925241446500023142139714827354102802",
                "209320124575529917271585409053675692281",
                "167145640523384858181611993641634516344",
                "269326352737742728264865487950829937351",
                "183664941534995584237027290394085886642",
                "4651017645409983199495473780890611373",
                "79787060203547034583516819019449315290",
                "202449885388544233864928940574175978629",
                "60974379841852299510278079085052372753",
                "28813424802195059420520484861883003765",
                "239532662711243044225371224216261380533",
                "239014010638514839413057222501465616950",
                "220495773846177344637264359536409030132",
                "74115102614309136002527999638366519275",
                "41079889655526628495451377500760841601",
                "257678634608488689660576450995435631653",
                "131238584224229334081256510399458857033",
                "133034081464558048597338904856831238008",
                "53977892444727562303709636876165279809",
                "64172889005294610135406438423624192195",
                "91173623122443693455468677751018414384",
                "8746217557945573232572907951352621264",
                "289195997208037991764324174341328270692",
                "304639854426660058258599473182478347902",
                "298368613956777658741596508442362379884",
                "291964517398039783726172338647788670230",
                "9914162327493352829243784504515996595",
                "242921012982193885860019838480426210531",
                "228103623691091098235839728979085251205",
                "197630777384205680022369590214842737157",
                "212037452099960930105464361923583699991",
                "18445949568362903198882210961432235486",
                "192230594257596041735594761321110730078",
                "198531585622733184669312891439827489567",
                "67500591251971462668713597039468420716",
                "165648009221839833806363108208959345857",
                "213813052879244032601041376180299528150",
                "248926636131343349082067080763996870090",
                "107323352595556033951594329951356322326",
                "95486114817408321034177408584070808570",
                "264077885718561201282204642071484144592",
                "112341734363768494414632415651199598526",
                "268771112481056496226639754886247912381",
                "54195816316419299295214723451811482676",
                "222863763840007627333066166356367517929",
                "248789232039050918428555443670567703808",
                "17001215695614112717048805297661513433",
                "127100060411923373641340041326636796996",
                "312002084074332811530651159533452248418",
                "83507052096922606876467420031284386810",
                "60428183760848751457176216696123210869",
                "134161393670749592464519061755697155766",
                "130115337208115914856548498614545540558",
                "283436735986896040161866121733841880553",
                "171292328395440959723754845335598768678",
                "25079587089875424499336076723885763495",
                "74998001693301157219474212671234671209",
                "222364969316860251779147417870986244524",
                "311333185009246407565260834815432117052",
                "199782564552220790526480946105877748612",
                "147375136441208239243774170687846139446",
                "263148849945459977448340569920340939411",
                "31136335648558613474066435884862141023",
                "154755488956651627258023220250665008325",
                "263983221542207476244070969441783725048",
                "207603813382433065381393660830323758814"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-c7d40671",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "47979925308741976799541936347043979946",
            "length": 3860.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-c955adc0",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "264607709991125581114174322507789788805",
            "length": 3815.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-cda88966",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "44463434380082339291551558777564535251",
                "320280872889133287426237098081507002211",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@6c55953e232ea668731091d111066521f3b7719b",
        "id": "CVE-2022-50396-cf14d0fe",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "144346124160671705386492225424140377920",
            "length": 209.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy_fexts"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-d2e46b50",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "18614300377825735053409090553200595768",
            "length": 944.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_delete"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-e02fc0c1",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "111924333392163121277736489893205154892",
            "length": 833.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_walk"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-e60ae756",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "318227665832351523086372397726885279329",
            "length": 974.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_delete"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@01d0d2b8b4e3cf2110baba9371c0c3d04ad5c77b",
        "id": "CVE-2022-50396-e7cb24cd",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "210322416188753401067329577952039998570",
            "length": 308.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_destroy"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-ed1f1b3e",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "44463434380082339291551558777564535251",
                "320280872889133287426237098081507002211",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@facc4405e8b7407e03216207b1d1d640127de0c8",
        "id": "CVE-2022-50396-f304aa03",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "189598443181108092967330350241890523433",
            "length": 718.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@53af9c793f644d5841d84d8e0ad83bd7ab47f3e0",
        "id": "CVE-2022-50396-f849431c",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "255671146106000869190688726553626016490",
            "length": 4313.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@372ae77cf11d11fb118cbe2d37def9dd5f826abd",
        "id": "CVE-2022-50396-faa85cd0",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "201785323057803814959228234159151298040",
            "length": 727.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_change"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@3abebc503a5148072052c229c6b04b329a420ecd",
        "id": "CVE-2022-50396-fc827e77",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Line",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "296819844562730531760747184471091325018",
                "128596310167053433923608832467068446312",
                "10267225046815750526320868128550678976",
                "271703886979777113810174986365060651824",
                "324528039478698002214705696712519636258",
                "97815993876876286114336751438192073810",
                "305478283835729274467677188218838959754",
                "28338008370234771222746970816770513983",
                "56540204965001714242652896030761496784",
                "263951280737092813844682741613761780662",
                "68419491994787531895411818909092444992",
                "170573153707786982991662731086851875431",
                "84354920477525353388698912260266059748",
                "270352164268494786271134473189324853280",
                "262193879750217446629618305947993709018",
                "265214044449409854687989399974978541179",
                "23755653588499232735756268389398926420",
                "110807274676918356743410367012581319980"
            ]
        },
        "target": {
            "file": "net/sched/cls_tcindex.c"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@b314f6c3512108d7a656c5caf07c82d1bbbdc0f1",
        "id": "CVE-2022-50396-fe4330bb",
        "deprecated": false,
        "signature_version": "v1"
    },
    {
        "signature_type": "Function",
        "digest": {
            "function_hash": "28398736238945350618849469399337472432",
            "length": 3945.0
        },
        "target": {
            "file": "net/sched/cls_tcindex.c",
            "function": "tcindex_set_parms"
        },
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@6c55953e232ea668731091d111066521f3b7719b",
        "id": "CVE-2022-50396-ff07d0e0",
        "deprecated": false,
        "signature_version": "v1"
    }
]

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.9.0
Fixed
4.14.308
Type
ECOSYSTEM
Events
Introduced
4.15.0
Fixed
4.19.276
Type
ECOSYSTEM
Events
Introduced
4.20.0
Fixed
5.4.229
Type
ECOSYSTEM
Events
Introduced
5.5.0
Fixed
5.4.235
Type
ECOSYSTEM
Events
Introduced
5.5.0
Fixed
5.10.163
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.10.173
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.87
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
5.15.100
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.0.19
Type
ECOSYSTEM
Events
Introduced
6.1.0
Fixed
6.1.5
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.1.18
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.2.5