CVE-2022-49899

Source
https://nvd.nist.gov/vuln/detail/CVE-2022-49899
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-49899.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2022-49899
Downstream
Published
2025-05-01T14:10:45Z
Modified
2025-10-21T11:48:39.263367Z
Severity
  • 5.5 (Medium) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H CVSS Calculator
Summary
fscrypt: stop using keyrings subsystem for fscrypt_master_key
Details

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

fscrypt: stop using keyrings subsystem for fscryptmasterkey

The approach of fs/crypto/ internally managing the fscryptmasterkey structs as the payloads of "struct key" objects contained in a "struct key" keyring has outlived its usefulness. The original idea was to simplify the code by reusing code from the keyrings subsystem. However, several issues have arisen that can't easily be resolved:

  • When a master key struct is destroyed, blkcryptoevictkey() must be called on any per-mode keys embedded in it. (This started being the case when inline encryption support was added.) Yet, the keyrings subsystem can arbitrarily delay the destruction of keys, even past the time the filesystem was unmounted. Therefore, currently there is no easy way to call blkcryptoevictkey() when a master key is destroyed. Currently, this is worked around by holding an extra reference to the filesystem's requestqueue(s). But it was overlooked that the requestqueue reference is not guaranteed to pin the corresponding blkcryptoprofile too; for device-mapper devices that support inline crypto, it doesn't. This can cause a use-after-free.

  • When the last inode that was using an incompletely-removed master key is evicted, the master key removal is completed by removing the key struct from the keyring. Currently this is done via keyinvalidate(). Yet, keyinvalidate() takes the key semaphore. This can deadlock when called from the shrinker, since in fscryptioctladdkey(), memory is allocated with GFPKERNEL under the same semaphore.

  • More generally, the fact that the keyrings subsystem can arbitrarily delay the destruction of keys (via garbage collection delay, or via random processes getting temporary key references) is undesirable, as it means we can't strictly guarantee that all secrets are ever wiped.

  • Doing the master key lookups via the keyrings subsystem results in the key_permission LSM hook being called. fscrypt doesn't want this, as all access control for encrypted files is designed to happen via the files themselves, like any other files. The workaround which SELinux users are using is to change their SELinux policy to grant key search access to all domains. This works, but it is an odd extra step that shouldn't really have to be done.

The fix for all these issues is to change the implementation to what I should have done originally: don't use the keyrings subsystem to keep track of the filesystem's fscryptmasterkey structs. Instead, just store them in a regular kernel data structure, and rework the reference counting, locking, and lifetime accordingly. Retain support for RCU-mode key lookups by using a hash table. Replace fscryptsbfree() with fscryptsbdelete(), which releases the keys synchronously and runs a bit earlier during unmount, so that block devices are still available.

A side effect of this patch is that neither the master keys themselves nor the filesystem keyrings will be listed in /proc/keys anymore. ("Master key users" and the master key users keyrings will still be listed.) However, this was mostly an implementation detail, and it was intended just for debugging purposes. I don't know of anyone using it.

This patch does not change how "master key users" (->mk_users) works; that still uses the keyrings subsystem. That is still needed for key quotas, and changing that isn't necessary to solve the issues listed above. If we decide to change that too, it would be a separate patch.

I've marked this as fixing the original commit that added the fscrypt keyring, but as noted above the most important issue that this patch fixes wasn't introduced until the addition of inline encryption support.

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
22d94f493bfb408fdd764f7b1d0363af2122fba5
Fixed
391cceee6d435e616f68631e68f5b32d480b1e67
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
22d94f493bfb408fdd764f7b1d0363af2122fba5
Fixed
e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
22d94f493bfb408fdd764f7b1d0363af2122fba5
Fixed
68d15d6558a386f46d815a6ac39edecad713a1bf
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
22d94f493bfb408fdd764f7b1d0363af2122fba5
Fixed
d7e7b9af104c7b389a0c21eb26532511bce4b510

Affected versions

v5.*

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.16
v5.10.17
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.8
v5.15.9
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.3
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.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.2
v6.0.3
v6.0.4
v6.0.5
v6.0.6
v6.0.7

Database specific

vanir_signatures

[
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "245646944040865056472756065429437970037",
            "length": 174.0
        },
        "target": {
            "function": "format_mk_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-0117c5d1",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "47515387641097391945876073464971200187",
                "197475690778498987553105098970254940515",
                "139604380225487026882996850188869819968",
                "143771288729236711834922879478662242280",
                "122528570108152370931533490152052923346",
                "116738638666000497530748353399873368108",
                "178109495578332394201982156587844820776",
                "108170888108232956921232381335128142514"
            ]
        },
        "target": {
            "file": "include/linux/fscrypt.h"
        },
        "id": "CVE-2022-49899-0232fda5",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "269371964513290817993791533029128469955",
            "length": 813.0
        },
        "target": {
            "function": "generic_shutdown_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-038b6947",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "268497445385633447701428442414553611363",
            "length": 292.0
        },
        "target": {
            "function": "fscrypt_drop_inode",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-066296d7",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "245646944040865056472756065429437970037",
            "length": 174.0
        },
        "target": {
            "function": "format_mk_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-06b93a6a",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "324135320391604675568879603920151614878",
            "length": 727.0
        },
        "target": {
            "function": "do_add_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-0789367b",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "156019150401579532545658285959071012040",
            "length": 1515.0
        },
        "target": {
            "function": "setup_file_encryption_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-088cc319",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "93469737432243592809540598760084759081",
            "length": 106.0
        },
        "target": {
            "function": "fscrypt_sb_free",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-106e7e1f",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "324135320391604675568879603920151614878",
            "length": 727.0
        },
        "target": {
            "function": "do_add_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-10d95552",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "93469737432243592809540598760084759081",
            "length": 106.0
        },
        "target": {
            "function": "fscrypt_sb_free",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-10e0e621",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "99204582460090158198663458709756880003",
            "length": 130.0
        },
        "target": {
            "function": "fscrypt_key_instantiate",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-11ef3ba8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "324135320391604675568879603920151614878",
            "length": 727.0
        },
        "target": {
            "function": "do_add_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-128ca9a5",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "63551730404419273643983231523226320679",
                "95728139779678903874941698805679704287",
                "98550316415897886328246502377345986093",
                "280771666367539506457988828594829943860"
            ]
        },
        "target": {
            "file": "include/linux/fs.h"
        },
        "id": "CVE-2022-49899-17e370d1",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "38240611039594211724219301234354706467",
            "length": 85.0
        },
        "target": {
            "function": "fscrypt_destroy_prepared_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-1ea4690c",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "7753600796556675322596788644747281918",
            "length": 605.0
        },
        "target": {
            "function": "add_existing_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-20a94823",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "212879498462699642805565033023589363404",
            "length": 221.0
        },
        "target": {
            "function": "find_master_key_user",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-20ae0bcf",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "177130660150042412561864777479109765327",
                "292105158837860538512519351252407314609",
                "213051462183269328991429667427428356156",
                "239548477339692093694588430518972553927",
                "115492475949902653954090406171902876267",
                "11656591044088349484812884007713288449",
                "79196720371004543330906861754565974195",
                "230440319801211919022067066163511364083",
                "312449597349043496488601959358366857094",
                "10395347759280418221517591345369922089",
                "4198401629890097508834991518105093842",
                "151494195739510210112516445071364097956",
                "77685162784353592339964967237453320120",
                "302793946930382214964786383616451418633",
                "337303569445949660762568216328718311272",
                "37989925126704341613188635433801295110"
            ]
        },
        "target": {
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-21ff21e5",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "12091118826502684389259186700899118175",
            "length": 274.0
        },
        "target": {
            "function": "fscrypt_key_describe",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-23b344bd",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "155282363176670145029251482341379372423",
            "length": 1431.0
        },
        "target": {
            "function": "fscrypt_ioctl_get_key_status",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-260dc693",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213849017659467864072463803777990547436",
            "length": 463.0
        },
        "target": {
            "function": "allocate_filesystem_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-2b0e8053",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "274513039500475248718356563067422608537",
            "length": 481.0
        },
        "target": {
            "function": "fscrypt_set_context",
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-2bc7b268",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "327282989187345262384470777617660483809",
                "200818584503553406454446172455192315429",
                "173176496901415379093292515959694132408",
                "142795354223917557376032366843845958216",
                "226864665769882859936450501781004116258",
                "86035551376837323439224699530033767068",
                "66105809883952612219332432555792064821",
                "7277149342592796174666039200011604300"
            ]
        },
        "target": {
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-2bd4d99a",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "7753600796556675322596788644747281918",
            "length": 605.0
        },
        "target": {
            "function": "add_existing_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-2d72cac8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "6140719537796457884876618075720073779",
            "length": 1066.0
        },
        "target": {
            "function": "add_new_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-2d91559b",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "229056839990546533220599534355168351638",
            "length": 1220.0
        },
        "target": {
            "function": "fscrypt_setup_encryption_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-2da348f5",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "129897301837770439138691877663654543016",
            "length": 441.0
        },
        "target": {
            "function": "fscrypt_init_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-2f0b3b62",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "156019150401579532545658285959071012040",
            "length": 1515.0
        },
        "target": {
            "function": "setup_file_encryption_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-35ae0a30",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "193527603779868828828615280107850744498",
            "length": 599.0
        },
        "target": {
            "function": "fscrypt_prepare_setflags",
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-379355b3",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "268497445385633447701428442414553611363",
            "length": 292.0
        },
        "target": {
            "function": "fscrypt_drop_inode",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-399da5b1",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "93469737432243592809540598760084759081",
            "length": 106.0
        },
        "target": {
            "function": "fscrypt_sb_free",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-3df16453",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "55329656630750940063569575911320260001",
            "length": 1106.0
        },
        "target": {
            "function": "setup_file_encryption_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-3dfc1256",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "46532303859831999143079790258579351556",
            "length": 1547.0
        },
        "target": {
            "function": "do_remove_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-4069e689",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "38240611039594211724219301234354706467",
            "length": 85.0
        },
        "target": {
            "function": "fscrypt_destroy_prepared_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-409b3ae9",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "129897301837770439138691877663654543016",
            "length": 441.0
        },
        "target": {
            "function": "fscrypt_init_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-40c0751f",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "287453055505817819457827507382464206666",
            "length": 406.0
        },
        "target": {
            "function": "__put_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-40d4a1e0",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "6140719537796457884876618075720073779",
            "length": 1066.0
        },
        "target": {
            "function": "add_new_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-45206546",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "12091118826502684389259186700899118175",
            "length": 274.0
        },
        "target": {
            "function": "fscrypt_key_describe",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-45fde4b8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213906690743712472354882217373121418051",
            "length": 294.0
        },
        "target": {
            "function": "fscrypt_find_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-4607cf31",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "245646944040865056472756065429437970037",
            "length": 174.0
        },
        "target": {
            "function": "format_mk_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-461c4c1b",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "63551730404419273643983231523226320679",
                "95728139779678903874941698805679704287",
                "98550316415897886328246502377345986093",
                "280771666367539506457988828594829943860"
            ]
        },
        "target": {
            "file": "include/linux/fs.h"
        },
        "id": "CVE-2022-49899-46aff2fc",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "85251412645846822242251995351731772279",
            "length": 834.0
        },
        "target": {
            "function": "generic_shutdown_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-477649f2",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "249483954033246534653806460918531938525",
            "length": 355.0
        },
        "target": {
            "function": "search_fscrypt_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-47cef7fe",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "99204582460090158198663458709756880003",
            "length": 130.0
        },
        "target": {
            "function": "fscrypt_key_instantiate",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-49802701",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "129897301837770439138691877663654543016",
            "length": 441.0
        },
        "target": {
            "function": "fscrypt_init_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-4b6a0595",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "193527603779868828828615280107850744498",
            "length": 599.0
        },
        "target": {
            "function": "fscrypt_prepare_setflags",
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-50140cc8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "99204582460090158198663458709756880003",
            "length": 130.0
        },
        "target": {
            "function": "fscrypt_key_instantiate",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5252c701",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "113428641967258543683971611914316046261",
            "length": 616.0
        },
        "target": {
            "function": "put_crypt_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-5262883a",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213906690743712472354882217373121418051",
            "length": 294.0
        },
        "target": {
            "function": "fscrypt_find_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-574f721e",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "154840686405442299096350504433250818378",
                "4900670684651772916783068706655561368",
                "65186795660129535789763933851108720404",
                "232467632722562188428233576173137159492",
                "242620645238814319846511490687047581455",
                "282597463919702357428911256290799749819",
                "218618321570361393880698823789419989282",
                "84909973010597286682675133401972520470"
            ]
        },
        "target": {
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-581c6e1d",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "155282363176670145029251482341379372423",
            "length": 1431.0
        },
        "target": {
            "function": "fscrypt_ioctl_get_key_status",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5a89ef97",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "6140719537796457884876618075720073779",
            "length": 1066.0
        },
        "target": {
            "function": "add_new_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5c8f3d22",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "167567778651866032414243898610607883622",
                "13173936299481344488617697251962299837",
                "168217877586600983391670922083669616323",
                "256913875441107010104199762887885084703",
                "6962594850617905259091160559472459234",
                "68839623174063719248488404196094548829",
                "123665147069492823073469123486351025719",
                "302600905587912733278588812366127757234",
                "57318743359304453999533036910337514099",
                "104462532166047176209161300099942022171",
                "199446069280160752218100053493914059264",
                "40647390390641305039038991450994917040",
                "245302094769569720231185230510408082452",
                "136329829352740277736711817137875027687",
                "64734370405698756453143281003247451208",
                "273143813162293524065014213619930114323",
                "101163425567431209139268855272816865713",
                "74876439988232606347606508325334660376",
                "76847717340243034878845979323076689443",
                "11910740323198127972096713884101774610",
                "150239392597489894485072613858941757959",
                "144745433412556354140691516652224900933",
                "265060501970458448221550515910519405929",
                "48682659981036895734503402605942352067",
                "122149068030752737623457234064141073462",
                "202725314083148610115086677461604655087",
                "57212425472432803047837521103826131654",
                "191581018362524853684954455794801668725",
                "267581423060891539954942574959388895474",
                "204975977379637110016856281661521873290",
                "140421165596478629180684601066009697393",
                "260769116760913126943802844426748944490",
                "222865776833766529869076434201364371440",
                "314003646736813106630687360222432520618",
                "246172105101472757965955322485979563592",
                "193883987291768735602383276531612274079",
                "236151155226204412944116902352830338534",
                "29002931739917083056389972869898518564",
                "147059358663561549738672689712123068864",
                "311314742179001314939628886514364519862",
                "219124654610533647611688747582833344389",
                "26612088735418535566569653895476725360",
                "146470998741324226247666496318526706688",
                "196593388860090699184983080341551376941",
                "289361437365386699880035947646934739869",
                "330757331294912490626341464470672024212",
                "30228378943981497703208229476490037296",
                "236440647279932398642855430286085251875",
                "269887029495821442007665553508458151278",
                "13794915428610405812065589067012327939",
                "41240067050606705721775645248465371058",
                "164655147535738570927216925156414606136",
                "31339298243643480768487322394285751533",
                "137693548902141240706372552085197123173",
                "70724409270658887025316979427085880003",
                "324658938360461164388103182538409851937",
                "300111166658631871229207000953312997952",
                "82177143716330261701492203383653419472",
                "194790589959680210824830606614941827367",
                "249860977085824573820994139676449922176",
                "96447997387461904414487662048417829327",
                "185863949295625673027511693903584503438",
                "26333692774628645583302466274412747484",
                "111628621407652551954267590176857476671",
                "159285297245895198647383264356660271220",
                "114351593935866565890221031239745009812",
                "199226907153585511905060641869948591032",
                "103552220333324285633120754227821875541",
                "38582798413897608640307439410129931259",
                "134714689948684741385822415480460630436",
                "66935346915919946692289947753682855274",
                "317671934657080036309430919774081405589",
                "297595138736935571960012629393756094835",
                "282432841936287196962362855839702293016",
                "43374857498858478499305015208567004305",
                "229380215431975841498028446045715739554",
                "43932621124309126563525427131575630659",
                "295025031005100280365798156475800456542",
                "185540489410862594817407570844581690522",
                "7763902959907306439794760285816283446",
                "298973932651466197550466917045628504083",
                "290962395733187797577649776474911209385",
                "119517494081947730837929555065453217943",
                "106356778362529493850623538180237581580",
                "5045193114903194501549509443605365442",
                "178638088365106956219856025665258507435",
                "113983385685437409489609152572618074382",
                "205854003261631382861289511904401772640",
                "56159247173244510869583492566908287119",
                "57323471039896034428078345066785837672",
                "267665240025824235863839456430179927527",
                "229118174785205567293073826568326273517",
                "268669572296609061396022381747741057741",
                "216946380537466342358813997083339180770",
                "86813236707628616401091500685110785238",
                "176363539701035224848918262522975191652",
                "63380353095778602535913690953994270725",
                "326390864217448032016833644779421359020",
                "299001961199401525298257793442787017765",
                "108726361322565520827816670590045574330",
                "48813131919757122481348401367528864318",
                "181039087117659899511349468627166441472",
                "339110732506629260568605949851444787063",
                "86051226616605593126012874433816042128",
                "51731020242727392852982837862695353852",
                "328637871852435319251764392950327957075",
                "250854152388034384264974969894379197116",
                "245106409130954730205898391012687950190",
                "8556183952323222724745662809193362450",
                "238870745313084406880318233484274622053",
                "276111412829751724117770060468218016273",
                "289837499671764526294524312565732193753",
                "6766387963274854189021033315620492003",
                "254388698397590728051360873722191506673",
                "250141758012154400253587925961249259431",
                "58303394805335095239039604906634429040",
                "266052868762322079736865366530110870846",
                "322625147171965635060602984202223027567",
                "309262562601061820805588639336841875063",
                "194756480377393457187357263892159025442",
                "99351039634355194946772519372003886005",
                "5993170945297703905288783857051678164",
                "206778189962954037842440720069295285296",
                "291410756191933262403531486805407116484",
                "298571734166846355449991035237407893657",
                "273844606356577594287522057908813249672",
                "220957410317713186830053972187835042885",
                "89578717332346725046915889466730162261",
                "236965857166500568619676694108829376427",
                "224461993484318032976186235651425387328",
                "314524982989239918443736361163587630670",
                "119364660603253950938458915035092076928",
                "156731406346896273168910044824212218731",
                "332012412044660658537813357801876880437",
                "212492403949471969198028626986664149598",
                "335131869708188257059766374598562254531",
                "154784615896445082129761814730258083468",
                "31718855717813691178733517577641529898",
                "128966788327751899169351728390794791197",
                "86249633253284247755873364440439955233",
                "187119866168758610504806549929371129353",
                "171416826067904942537622225879980875678",
                "10897576564769598313009769955797253031",
                "226085569579469394854312104241099871426",
                "1607446007105995648479687102130943225",
                "252552327936201999578354193253778751208",
                "181457145060162587293982905292279086434",
                "135290309254899588847534170393179519133",
                "1248899760703516869986653567474200635",
                "269106455503608995671602379417501425219",
                "33095823586993986254295954490642957837",
                "90751582380849571234974563679862750891",
                "263111229853489289789632500701495075587",
                "231624478248550127895480668363538898607",
                "339780779706524943114381334137824789730",
                "206189430026296056592649976991939984396",
                "329656085948801181071807532106846296221",
                "204584324241963254957706457311300319901",
                "183354599741056641843711827734636674364",
                "163337288736209127247717008324232130549",
                "223398930174601903934484468075568454850",
                "324527191132791556266004372885434751092",
                "254935318541298191278153687793753101579",
                "204387742629595755264519500799390421749",
                "22000011611961772157736847555473011352",
                "177165428088372352443823359003350737929",
                "318180526405105467923092825373560685619",
                "109265368001181490241689602337715800534",
                "78209564523790320516976984754296464860",
                "78303542264583541131811296896991460045",
                "323781180531494190806559049721377007399",
                "233932800701424866950067851281256315083",
                "35395162849042696281633171629212003878",
                "38368599966198204295227551048139223984",
                "311409315945141648004776935092614982492",
                "87603979317683662960001938096107227019",
                "300685211387582318798034339669155803218",
                "238474093594795553356151817121992210016",
                "78710135645512878873842742807925216898",
                "151906304601564549124288353344497587735",
                "209030696351118019286462041746000291155",
                "107888403486071090535524442020619234747",
                "2206877648628027279232240233180145635",
                "246579968889617353855361812676103584124",
                "27524991479462036812287182684895637936",
                "96236182116094789607235835186971444247",
                "154552416995686288693578779815141309895",
                "271214153809043137568653042158632886259",
                "85156091053665203541758010222617922711",
                "201582865394626091899674795840700335949",
                "167282319740720219176173749696823917747",
                "275819417380654235796445982715011196855",
                "124251040630367767437752868997054497088",
                "287137542195546609044166675437138082321",
                "135546698491099481736089755845335295154",
                "142978885979739460004564616990870128237",
                "241915794242964060582681361330277314726",
                "167929647376567112579230847306944330838",
                "303464103898677120494652980181062056502",
                "61377017373068103075501217653980569697",
                "37187926547790903994693986106878668833",
                "80192749187911404327195536984218473609",
                "287109496594851517113329221274198038565",
                "61595032357861542062198676736367697497",
                "164250522320484737805332435750480061439",
                "265509659207326398391338336981854377526",
                "94215919677305699902709333034304460197",
                "110933410757998350149420226277714461965",
                "26306905694109098104086603032170376166",
                "117960877382109129371197115550700739373",
                "219875125839235455096048133049487474465",
                "132796054012266120312986081010058617469",
                "224089773090265539232821531765000059023",
                "106095621847413192460556345808066028340",
                "287726406658660194984397646845110515572",
                "85419891755386563074138567442888314731",
                "317158470762426919352211059943350602644",
                "320264835877714298886409739196694561089",
                "67852459083918681344884420981481309172",
                "97733239825930286075615570910547746917",
                "296434928340197704203022480899779149158",
                "124652094844571217567294335454363979814",
                "204235572817662104289768859669642720014",
                "93329329057447663771296721107381656892",
                "62740973847101193309065925192777106498",
                "181336890298956459377066644043731684511",
                "54625312746819071348854900530502954576",
                "29195588948734028560009205482140492364",
                "82712809789365493016922275423005591455",
                "252208555820253117031874712652867100951",
                "13607296896236984930045136785360193551",
                "276760579151726963167588277335753999634",
                "17502976647854557506604664680589355527",
                "319324453973589884857073296526179374602",
                "219261387660476279556039470211556345829",
                "28449014869687117800405162050380385464",
                "44930765286773371015042662963919198969",
                "96162496425454331317891742203489085562",
                "52719156768808323490199075428864682686",
                "273168880678799303024485669600030828335",
                "96769913007981664129817879179852964503",
                "189669727014282453384237449122101858343",
                "151495117771784262001562442610297302757",
                "327392710623381068642452156681388453028",
                "275955142818417507581222270930400070903",
                "126472841288110558835731597457958648691",
                "336915074165626122064000109046478210059",
                "152106601705921092123461913394223545508",
                "21524984605357808818520645504957104016",
                "329508282151808433283478851376646171787",
                "27518443368885736348912957777510409732",
                "107966841541032976587842673001829697074",
                "220274090880471476613703278204838841796",
                "307650640731896193404172640766456477997",
                "227782445224723735455370611234960452901",
                "294739849046361818831428495954755007722",
                "184526069006589783841506637848636365414",
                "236843172868386385710373494751216832372",
                "220653956030508870023343647072381377977",
                "65918827946262603501898471522297791340",
                "169492986433929292581935351567754628324",
                "73565630535972915700465789201885331334",
                "167321973646978827470588841138069096213",
                "22919692197258397398160870961612541569",
                "91268723571481408936745033631088257041",
                "212134393761672165783614440985567609256",
                "62371378225872198569746595898583432749",
                "6352436499548318261414224989165962379",
                "306180413091461771919953825006948403736",
                "127581493207101126326429892036845013892",
                "257717573472715286837259650969465126749",
                "177424643193609069451737315983604040620",
                "151529234920995545582169684694719559976",
                "115567885443772703395518582444324473214",
                "90092205950333015144852219611300915185",
                "238246830705173347793249567529525627853",
                "89987172072997214339689927657671561805",
                "259451916059812394878593152459537711001",
                "78458897118272739693398044836033729141",
                "107668809176012350765772118109981016051",
                "65387476692363439176602829470121731334",
                "172213624607726503079656256011380996147",
                "313714000588236575048422239366780725795",
                "178424018241105618727845709767314405767",
                "292283485077467855657803380100004122079",
                "122097769245335961224821544263119297130",
                "184890379009624831117881441208229805393",
                "188862220664387948064107830379973466943",
                "114242950203600731100153440192897808490",
                "223149482873159535581984516866173073790",
                "243641063344918141944907389931242002350",
                "9452692155646000380446460758634029340",
                "91104679591685914070096580716339327950",
                "156192862845757949613256787106968769611",
                "250047540935739059907286261226733808533",
                "94404498795478040762906020361068518422",
                "211037655142582223640501557772821845344",
                "318158105920685187792467891537853873508",
                "249017082096099351828162468022266720322",
                "321383081069342959043763570899076537731",
                "269493219333723321803125394894770747630",
                "237546468802228600582618856941248520625",
                "80505645425502779890226990793546401808",
                "300974485676396065290127716163306621717",
                "220170019075233042375105106418304556137",
                "115852539520153586022895108059549297439",
                "312250513610802137109421097672472872573",
                "207473697244536095474339749435471189119",
                "188325151280658352271268660153596353396",
                "283479645761105144949989723255033774238",
                "245131957862247425200245300223937665308",
                "282658700611726252656095208014373365060",
                "237761501598370626565197415329753408200",
                "302867147615135623338221914182319848989",
                "169294777220824587327633924736274342283",
                "5827543221058392048423138072943379769",
                "231522718341179243766671038298409302784",
                "187985635004960072331566623642421448977"
            ]
        },
        "target": {
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5cec38d1",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "12091118826502684389259186700899118175",
            "length": 274.0
        },
        "target": {
            "function": "fscrypt_key_describe",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5cf2d04b",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "55329656630750940063569575911320260001",
            "length": 1106.0
        },
        "target": {
            "function": "setup_file_encryption_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-5dc0b1e6",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "155282363176670145029251482341379372423",
            "length": 1431.0
        },
        "target": {
            "function": "fscrypt_ioctl_get_key_status",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-5df5d250",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "249483954033246534653806460918531938525",
            "length": 355.0
        },
        "target": {
            "function": "search_fscrypt_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-62442f95",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "212879498462699642805565033023589363404",
            "length": 221.0
        },
        "target": {
            "function": "find_master_key_user",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-6271644e",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "229056839990546533220599534355168351638",
            "length": 1220.0
        },
        "target": {
            "function": "fscrypt_setup_encryption_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-63deb6d9",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "78694491802997794116085920853008052751",
            "length": 363.0
        },
        "target": {
            "function": "free_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-63fed199",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "177130660150042412561864777479109765327",
                "292105158837860538512519351252407314609",
                "213051462183269328991429667427428356156",
                "239548477339692093694588430518972553927",
                "115492475949902653954090406171902876267",
                "11656591044088349484812884007713288449",
                "79196720371004543330906861754565974195",
                "230440319801211919022067066163511364083",
                "312449597349043496488601959358366857094",
                "10395347759280418221517591345369922089",
                "4198401629890097508834991518105093842",
                "151494195739510210112516445071364097956",
                "77685162784353592339964967237453320120",
                "302793946930382214964786383616451418633",
                "337303569445949660762568216328718311272",
                "37989925126704341613188635433801295110"
            ]
        },
        "target": {
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-6402ceaa",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "300593412706824674425435331789126530535",
            "length": 614.0
        },
        "target": {
            "function": "fscrypt_verify_key_added",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-67050c32",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "116770770131775372096111067159059823194",
                "132223736067756203662142899736999326434",
                "65186795660129535789763933851108720404",
                "232467632722562188428233576173137159492",
                "242620645238814319846511490687047581455",
                "282597463919702357428911256290799749819",
                "218618321570361393880698823789419989282",
                "84909973010597286682675133401972520470"
            ]
        },
        "target": {
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-69290fd1",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "193527603779868828828615280107850744498",
            "length": 599.0
        },
        "target": {
            "function": "fscrypt_prepare_setflags",
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-69771e73",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213849017659467864072463803777990547436",
            "length": 463.0
        },
        "target": {
            "function": "allocate_filesystem_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-69b597e2",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "7753600796556675322596788644747281918",
            "length": 605.0
        },
        "target": {
            "function": "add_existing_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-71002a73",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "38240611039594211724219301234354706467",
            "length": 85.0
        },
        "target": {
            "function": "fscrypt_destroy_prepared_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-71ad0502",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "327282989187345262384470777617660483809",
                "200818584503553406454446172455192315429",
                "173176496901415379093292515959694132408",
                "142795354223917557376032366843845958216",
                "226864665769882859936450501781004116258",
                "86035551376837323439224699530033767068",
                "66105809883952612219332432555792064821",
                "7277149342592796174666039200011604300"
            ]
        },
        "target": {
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-725cca3f",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213849017659467864072463803777990547436",
            "length": 463.0
        },
        "target": {
            "function": "allocate_filesystem_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-727d7344",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "218469426446565321285445808549513949872",
            "length": 155.0
        },
        "target": {
            "function": "format_fs_keyring_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-73afb6e1",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213906690743712472354882217373121418051",
            "length": 294.0
        },
        "target": {
            "function": "fscrypt_find_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-76e20614",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "286269668881155918564433999479029190614",
                "98045176181095878344436327125182429411",
                "54356577323204215580921374826617451751",
                "141637658291626138103193550815343622940",
                "47774056923766830083294876096119329509",
                "69142020316854051080961797839658344964",
                "329183801710135483571481965728623629501",
                "106721456905571210965701481874914342977",
                "227523868560815776512298743323040525713",
                "227374206369501539105118882362964339442",
                "195378478740157763573253504893774288318",
                "176213606840633771603130872648636629696",
                "236475463223651201644489532624028426522",
                "294206243807712541205902501829806414522",
                "298466691044076851311539394237306436583",
                "296565977497904329470208304612155874300",
                "229503646821142654153559255637875339376",
                "209147947225431907288730144037680621158",
                "169671069589646676276575465837928514941",
                "316720625272024932557359052859170157238",
                "329041469580372469246247115050829107739",
                "298372682348182102211090609712591401799",
                "27382699896035479048416245190238287507",
                "117315410385380977606137980505978091820",
                "212011344298355779483397889616628645114",
                "94404498795478040762906020361068518422",
                "272291819026815503110381474095913147430",
                "155577138843099208235899209663161104924",
                "174418132698048497708175950536030747964",
                "64702451253127238921093015591698234887",
                "146904966245949503205927024100331072206",
                "279208343329459083667886233576184543335",
                "332534154958657789632586714143637502458",
                "46730917838397218325727698779642051404",
                "6371932033480916181031009079001463891",
                "321814826673467422522233967133685495501",
                "88054230444784179663551683592476207127",
                "199898866387582632364917539724851481691",
                "24009486719308800141685625893938989704",
                "46814166009171320136900807955730666091",
                "27920618624219242220878323642304385833",
                "288431111443222080967407108874030139401",
                "61224286875737797342149203811651136008",
                "29079292327251046796505788153716793019",
                "88083385400739112924072536944388241374",
                "175003653982350715584740539835093219051",
                "297062354313727350466717546420170072821",
                "262443872183355338606978497402599253127",
                "80184429145297356008237076574713126184",
                "176344795465271944875419591350813689506",
                "29116361958189097384791438263047016826",
                "138544608192868952672836043876770207648",
                "74153487391428464432840224884440666568",
                "100119564656792993449967708110848774582",
                "145965275028141100368981625272129393323",
                "315637687675973064783200158653269511229",
                "77031009321530593606398820281122296069",
                "137379284985702149542239760602700141498",
                "303959306939312380401805062899361175324",
                "140706664095395681098266419844911508063",
                "88066948539276232637368957618194430554",
                "235554589428638203702906955953663482747",
                "204642112563913984928933193613589173987",
                "28888900449840844499817853280743577179",
                "271181162226062602805459479507785007454",
                "296837829083027642470208880846471884161",
                "33588475452418043809027168911126613476",
                "308140477313851288459547774857016284639",
                "172106018864628758549931265101516562722",
                "287465560010052695588745518128499714479",
                "224558393076812456673461806405117778295",
                "63114447185059668613339437686600563164",
                "203701961604363665751032335661633768441",
                "258654247168736899934407742579589678912",
                "328441688670567047763148019992608999104",
                "149936031393119548755909913336707040886",
                "93649034536088527322375782762650405630",
                "230371922210273556316894242107286417365",
                "164210402060765839460089893409710485960",
                "228254577691149758095635499592813063790",
                "6049978788110095747893427019518124210",
                "330003087957570493395498370432826909963",
                "228094008677553837186998580134424262191",
                "181905508172332835448571215430631687389",
                "188630097354856188817936232786413236138"
            ]
        },
        "target": {
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-7c6ec531",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "167567778651866032414243898610607883622",
                "13173936299481344488617697251962299837",
                "168217877586600983391670922083669616323",
                "256913875441107010104199762887885084703",
                "6962594850617905259091160559472459234",
                "68839623174063719248488404196094548829",
                "123665147069492823073469123486351025719",
                "302600905587912733278588812366127757234",
                "57318743359304453999533036910337514099",
                "104462532166047176209161300099942022171",
                "199446069280160752218100053493914059264",
                "40647390390641305039038991450994917040",
                "245302094769569720231185230510408082452",
                "136329829352740277736711817137875027687",
                "64734370405698756453143281003247451208",
                "273143813162293524065014213619930114323",
                "101163425567431209139268855272816865713",
                "74876439988232606347606508325334660376",
                "76847717340243034878845979323076689443",
                "11910740323198127972096713884101774610",
                "150239392597489894485072613858941757959",
                "144745433412556354140691516652224900933",
                "265060501970458448221550515910519405929",
                "48682659981036895734503402605942352067",
                "122149068030752737623457234064141073462",
                "202725314083148610115086677461604655087",
                "57212425472432803047837521103826131654",
                "191581018362524853684954455794801668725",
                "267581423060891539954942574959388895474",
                "204975977379637110016856281661521873290",
                "140421165596478629180684601066009697393",
                "260769116760913126943802844426748944490",
                "222865776833766529869076434201364371440",
                "314003646736813106630687360222432520618",
                "246172105101472757965955322485979563592",
                "193883987291768735602383276531612274079",
                "236151155226204412944116902352830338534",
                "29002931739917083056389972869898518564",
                "147059358663561549738672689712123068864",
                "311314742179001314939628886514364519862",
                "219124654610533647611688747582833344389",
                "26612088735418535566569653895476725360",
                "146470998741324226247666496318526706688",
                "196593388860090699184983080341551376941",
                "289361437365386699880035947646934739869",
                "330757331294912490626341464470672024212",
                "30228378943981497703208229476490037296",
                "236440647279932398642855430286085251875",
                "269887029495821442007665553508458151278",
                "13794915428610405812065589067012327939",
                "41240067050606705721775645248465371058",
                "164655147535738570927216925156414606136",
                "31339298243643480768487322394285751533",
                "137693548902141240706372552085197123173",
                "70724409270658887025316979427085880003",
                "324658938360461164388103182538409851937",
                "300111166658631871229207000953312997952",
                "82177143716330261701492203383653419472",
                "194790589959680210824830606614941827367",
                "249860977085824573820994139676449922176",
                "96447997387461904414487662048417829327",
                "185863949295625673027511693903584503438",
                "26333692774628645583302466274412747484",
                "111628621407652551954267590176857476671",
                "159285297245895198647383264356660271220",
                "114351593935866565890221031239745009812",
                "199226907153585511905060641869948591032",
                "103552220333324285633120754227821875541",
                "38582798413897608640307439410129931259",
                "134714689948684741385822415480460630436",
                "66935346915919946692289947753682855274",
                "317671934657080036309430919774081405589",
                "297595138736935571960012629393756094835",
                "282432841936287196962362855839702293016",
                "43374857498858478499305015208567004305",
                "229380215431975841498028446045715739554",
                "43932621124309126563525427131575630659",
                "295025031005100280365798156475800456542",
                "185540489410862594817407570844581690522",
                "7763902959907306439794760285816283446",
                "298973932651466197550466917045628504083",
                "290962395733187797577649776474911209385",
                "119517494081947730837929555065453217943",
                "106356778362529493850623538180237581580",
                "5045193114903194501549509443605365442",
                "178638088365106956219856025665258507435",
                "113983385685437409489609152572618074382",
                "205854003261631382861289511904401772640",
                "56159247173244510869583492566908287119",
                "57323471039896034428078345066785837672",
                "267665240025824235863839456430179927527",
                "229118174785205567293073826568326273517",
                "268669572296609061396022381747741057741",
                "216946380537466342358813997083339180770",
                "86813236707628616401091500685110785238",
                "176363539701035224848918262522975191652",
                "63380353095778602535913690953994270725",
                "326390864217448032016833644779421359020",
                "299001961199401525298257793442787017765",
                "108726361322565520827816670590045574330",
                "48813131919757122481348401367528864318",
                "181039087117659899511349468627166441472",
                "339110732506629260568605949851444787063",
                "86051226616605593126012874433816042128",
                "51731020242727392852982837862695353852",
                "328637871852435319251764392950327957075",
                "250854152388034384264974969894379197116",
                "245106409130954730205898391012687950190",
                "8556183952323222724745662809193362450",
                "238870745313084406880318233484274622053",
                "276111412829751724117770060468218016273",
                "289837499671764526294524312565732193753",
                "6766387963274854189021033315620492003",
                "254388698397590728051360873722191506673",
                "250141758012154400253587925961249259431",
                "58303394805335095239039604906634429040",
                "266052868762322079736865366530110870846",
                "322625147171965635060602984202223027567",
                "309262562601061820805588639336841875063",
                "194756480377393457187357263892159025442",
                "99351039634355194946772519372003886005",
                "5993170945297703905288783857051678164",
                "206778189962954037842440720069295285296",
                "291410756191933262403531486805407116484",
                "298571734166846355449991035237407893657",
                "273844606356577594287522057908813249672",
                "220957410317713186830053972187835042885",
                "89578717332346725046915889466730162261",
                "236965857166500568619676694108829376427",
                "224461993484318032976186235651425387328",
                "314524982989239918443736361163587630670",
                "119364660603253950938458915035092076928",
                "156731406346896273168910044824212218731",
                "332012412044660658537813357801876880437",
                "212492403949471969198028626986664149598",
                "335131869708188257059766374598562254531",
                "154784615896445082129761814730258083468",
                "31718855717813691178733517577641529898",
                "128966788327751899169351728390794791197",
                "86249633253284247755873364440439955233",
                "187119866168758610504806549929371129353",
                "171416826067904942537622225879980875678",
                "10897576564769598313009769955797253031",
                "226085569579469394854312104241099871426",
                "1607446007105995648479687102130943225",
                "252552327936201999578354193253778751208",
                "181457145060162587293982905292279086434",
                "135290309254899588847534170393179519133",
                "1248899760703516869986653567474200635",
                "269106455503608995671602379417501425219",
                "33095823586993986254295954490642957837",
                "90751582380849571234974563679862750891",
                "263111229853489289789632500701495075587",
                "231624478248550127895480668363538898607",
                "339780779706524943114381334137824789730",
                "206189430026296056592649976991939984396",
                "329656085948801181071807532106846296221",
                "204584324241963254957706457311300319901",
                "183354599741056641843711827734636674364",
                "163337288736209127247717008324232130549",
                "223398930174601903934484468075568454850",
                "324527191132791556266004372885434751092",
                "254935318541298191278153687793753101579",
                "204387742629595755264519500799390421749",
                "22000011611961772157736847555473011352",
                "177165428088372352443823359003350737929",
                "318180526405105467923092825373560685619",
                "109265368001181490241689602337715800534",
                "78209564523790320516976984754296464860",
                "78303542264583541131811296896991460045",
                "323781180531494190806559049721377007399",
                "233932800701424866950067851281256315083",
                "35395162849042696281633171629212003878",
                "38368599966198204295227551048139223984",
                "311409315945141648004776935092614982492",
                "87603979317683662960001938096107227019",
                "300685211387582318798034339669155803218",
                "238474093594795553356151817121992210016",
                "78710135645512878873842742807925216898",
                "151906304601564549124288353344497587735",
                "209030696351118019286462041746000291155",
                "107888403486071090535524442020619234747",
                "2206877648628027279232240233180145635",
                "246579968889617353855361812676103584124",
                "27524991479462036812287182684895637936",
                "96236182116094789607235835186971444247",
                "154552416995686288693578779815141309895",
                "271214153809043137568653042158632886259",
                "85156091053665203541758010222617922711",
                "201582865394626091899674795840700335949",
                "167282319740720219176173749696823917747",
                "275819417380654235796445982715011196855",
                "124251040630367767437752868997054497088",
                "287137542195546609044166675437138082321",
                "135546698491099481736089755845335295154",
                "142978885979739460004564616990870128237",
                "241915794242964060582681361330277314726",
                "167929647376567112579230847306944330838",
                "303464103898677120494652980181062056502",
                "61377017373068103075501217653980569697",
                "37187926547790903994693986106878668833",
                "80192749187911404327195536984218473609",
                "287109496594851517113329221274198038565",
                "61595032357861542062198676736367697497",
                "164250522320484737805332435750480061439",
                "265509659207326398391338336981854377526",
                "94215919677305699902709333034304460197",
                "110933410757998350149420226277714461965",
                "26306905694109098104086603032170376166",
                "117960877382109129371197115550700739373",
                "219875125839235455096048133049487474465",
                "132796054012266120312986081010058617469",
                "224089773090265539232821531765000059023",
                "106095621847413192460556345808066028340",
                "287726406658660194984397646845110515572",
                "85419891755386563074138567442888314731",
                "317158470762426919352211059943350602644",
                "320264835877714298886409739196694561089",
                "67852459083918681344884420981481309172",
                "97733239825930286075615570910547746917",
                "296434928340197704203022480899779149158",
                "124652094844571217567294335454363979814",
                "204235572817662104289768859669642720014",
                "93329329057447663771296721107381656892",
                "62740973847101193309065925192777106498",
                "181336890298956459377066644043731684511",
                "54625312746819071348854900530502954576",
                "29195588948734028560009205482140492364",
                "82712809789365493016922275423005591455",
                "252208555820253117031874712652867100951",
                "13607296896236984930045136785360193551",
                "276760579151726963167588277335753999634",
                "17502976647854557506604664680589355527",
                "319324453973589884857073296526179374602",
                "219261387660476279556039470211556345829",
                "28449014869687117800405162050380385464",
                "44930765286773371015042662963919198969",
                "96162496425454331317891742203489085562",
                "52719156768808323490199075428864682686",
                "273168880678799303024485669600030828335",
                "96769913007981664129817879179852964503",
                "189669727014282453384237449122101858343",
                "151495117771784262001562442610297302757",
                "327392710623381068642452156681388453028",
                "275955142818417507581222270930400070903",
                "126472841288110558835731597457958648691",
                "336915074165626122064000109046478210059",
                "152106601705921092123461913394223545508",
                "21524984605357808818520645504957104016",
                "329508282151808433283478851376646171787",
                "27518443368885736348912957777510409732",
                "107966841541032976587842673001829697074",
                "220274090880471476613703278204838841796",
                "307650640731896193404172640766456477997",
                "227782445224723735455370611234960452901",
                "294739849046361818831428495954755007722",
                "184526069006589783841506637848636365414",
                "236843172868386385710373494751216832372",
                "220653956030508870023343647072381377977",
                "65918827946262603501898471522297791340",
                "169492986433929292581935351567754628324",
                "73565630535972915700465789201885331334",
                "167321973646978827470588841138069096213",
                "22919692197258397398160870961612541569",
                "91268723571481408936745033631088257041",
                "212134393761672165783614440985567609256",
                "62371378225872198569746595898583432749",
                "6352436499548318261414224989165962379",
                "306180413091461771919953825006948403736",
                "127581493207101126326429892036845013892",
                "257717573472715286837259650969465126749",
                "177424643193609069451737315983604040620",
                "151529234920995545582169684694719559976",
                "115567885443772703395518582444324473214",
                "90092205950333015144852219611300915185",
                "238246830705173347793249567529525627853",
                "89987172072997214339689927657671561805",
                "259451916059812394878593152459537711001",
                "78458897118272739693398044836033729141",
                "107668809176012350765772118109981016051",
                "65387476692363439176602829470121731334",
                "172213624607726503079656256011380996147",
                "313714000588236575048422239366780725795",
                "178424018241105618727845709767314405767",
                "292283485077467855657803380100004122079",
                "122097769245335961224821544263119297130",
                "184890379009624831117881441208229805393",
                "188862220664387948064107830379973466943",
                "114242950203600731100153440192897808490",
                "223149482873159535581984516866173073790",
                "243641063344918141944907389931242002350",
                "9452692155646000380446460758634029340",
                "91104679591685914070096580716339327950",
                "156192862845757949613256787106968769611",
                "250047540935739059907286261226733808533",
                "94404498795478040762906020361068518422",
                "211037655142582223640501557772821845344",
                "318158105920685187792467891537853873508",
                "249017082096099351828162468022266720322",
                "321383081069342959043763570899076537731",
                "269493219333723321803125394894770747630",
                "237546468802228600582618856941248520625",
                "80505645425502779890226990793546401808",
                "300974485676396065290127716163306621717",
                "220170019075233042375105106418304556137",
                "115852539520153586022895108059549297439",
                "312250513610802137109421097672472872573",
                "207473697244536095474339749435471189119",
                "188325151280658352271268660153596353396",
                "283479645761105144949989723255033774238",
                "245131957862247425200245300223937665308",
                "282658700611726252656095208014373365060",
                "237761501598370626565197415329753408200",
                "302867147615135623338221914182319848989",
                "169294777220824587327633924736274342283",
                "5827543221058392048423138072943379769",
                "231522718341179243766671038298409302784",
                "187985635004960072331566623642421448977"
            ]
        },
        "target": {
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-7d987ed7",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "300593412706824674425435331789126530535",
            "length": 614.0
        },
        "target": {
            "function": "fscrypt_verify_key_added",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-7de09527",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "78694491802997794116085920853008052751",
            "length": 363.0
        },
        "target": {
            "function": "free_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-83f897c8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "12091118826502684389259186700899118175",
            "length": 274.0
        },
        "target": {
            "function": "fscrypt_key_describe",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-847c22eb",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "56902995868730673033047129248808529106",
            "length": 906.0
        },
        "target": {
            "function": "generic_shutdown_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-8bfaeba6",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "287453055505817819457827507382464206666",
            "length": 406.0
        },
        "target": {
            "function": "__put_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-8c610987",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "249483954033246534653806460918531938525",
            "length": 355.0
        },
        "target": {
            "function": "search_fscrypt_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-8d13bff5",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "56902995868730673033047129248808529106",
            "length": 906.0
        },
        "target": {
            "function": "generic_shutdown_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-8dc15c40",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "286269668881155918564433999479029190614",
                "98045176181095878344436327125182429411",
                "54356577323204215580921374826617451751",
                "141637658291626138103193550815343622940",
                "47774056923766830083294876096119329509",
                "69142020316854051080961797839658344964",
                "329183801710135483571481965728623629501",
                "106721456905571210965701481874914342977",
                "227523868560815776512298743323040525713",
                "227374206369501539105118882362964339442",
                "195378478740157763573253504893774288318",
                "176213606840633771603130872648636629696",
                "236475463223651201644489532624028426522",
                "294206243807712541205902501829806414522",
                "298466691044076851311539394237306436583",
                "296565977497904329470208304612155874300",
                "147472004737886431461937550341748395560",
                "94875821042153927283891432654270543577",
                "145492649311815539092394685074628787563",
                "316720625272024932557359052859170157238",
                "329041469580372469246247115050829107739",
                "298372682348182102211090609712591401799",
                "27382699896035479048416245190238287507",
                "117315410385380977606137980505978091820",
                "212011344298355779483397889616628645114",
                "94404498795478040762906020361068518422",
                "272291819026815503110381474095913147430",
                "155577138843099208235899209663161104924",
                "174418132698048497708175950536030747964",
                "64702451253127238921093015591698234887",
                "146904966245949503205927024100331072206",
                "279208343329459083667886233576184543335",
                "332534154958657789632586714143637502458",
                "46730917838397218325727698779642051404",
                "6371932033480916181031009079001463891",
                "321814826673467422522233967133685495501",
                "88054230444784179663551683592476207127",
                "199898866387582632364917539724851481691",
                "24009486719308800141685625893938989704",
                "46814166009171320136900807955730666091",
                "27920618624219242220878323642304385833",
                "288431111443222080967407108874030139401",
                "61224286875737797342149203811651136008",
                "29079292327251046796505788153716793019",
                "88083385400739112924072536944388241374",
                "175003653982350715584740539835093219051",
                "297062354313727350466717546420170072821",
                "262443872183355338606978497402599253127",
                "80184429145297356008237076574713126184",
                "176344795465271944875419591350813689506",
                "29116361958189097384791438263047016826",
                "138544608192868952672836043876770207648",
                "74153487391428464432840224884440666568",
                "100119564656792993449967708110848774582",
                "145965275028141100368981625272129393323",
                "315637687675973064783200158653269511229",
                "77031009321530593606398820281122296069",
                "137379284985702149542239760602700141498",
                "303959306939312380401805062899361175324",
                "140706664095395681098266419844911508063",
                "88066948539276232637368957618194430554",
                "235554589428638203702906955953663482747",
                "204642112563913984928933193613589173987",
                "28888900449840844499817853280743577179",
                "271181162226062602805459479507785007454",
                "296837829083027642470208880846471884161",
                "33588475452418043809027168911126613476",
                "308140477313851288459547774857016284639",
                "172106018864628758549931265101516562722",
                "287465560010052695588745518128499714479",
                "224558393076812456673461806405117778295",
                "63114447185059668613339437686600563164",
                "203701961604363665751032335661633768441",
                "258654247168736899934407742579589678912",
                "328441688670567047763148019992608999104",
                "149936031393119548755909913336707040886",
                "93649034536088527322375782762650405630",
                "230371922210273556316894242107286417365",
                "164210402060765839460089893409710485960",
                "228254577691149758095635499592813063790",
                "6049978788110095747893427019518124210",
                "330003087957570493395498370432826909963",
                "228094008677553837186998580134424262191",
                "181905508172332835448571215430631687389",
                "188630097354856188817936232786413236138"
            ]
        },
        "target": {
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-9564ad6e",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "324981822340896226053141039889261362870",
                "291238446695375724273969859843490625374",
                "262356378426476817716569229319442627819",
                "283737670636226804836858495182371273380",
                "168041290263694962145298799766805955098",
                "16073295003377649152785113817431653811",
                "141917614668772765844701559250833082784",
                "76074828722213511216142997117697022405",
                "208634805292265434343422098035108105637",
                "127804217133432620265607800777760148827",
                "230763296541775527976906877663459990473",
                "63805804348442681004025513184727822485",
                "102286384701481577298012852071917685490",
                "236601753713154920401181245582419482620",
                "89303577652551536392012162851316822395",
                "85900973964576349370426431044340400752",
                "99303509091623571323134818543905432243",
                "294085084166970562894589981505277775817"
            ]
        },
        "target": {
            "file": "fs/crypto/fscrypt_private.h"
        },
        "id": "CVE-2022-49899-958eb523",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "300593412706824674425435331789126530535",
            "length": 614.0
        },
        "target": {
            "function": "fscrypt_verify_key_added",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-96f846a8",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "47515387641097391945876073464971200187",
                "197475690778498987553105098970254940515",
                "53069208560125403050581342255317019657",
                "112272578476512015389255578679250448495",
                "122528570108152370931533490152052923346",
                "116738638666000497530748353399873368108",
                "178109495578332394201982156587844820776",
                "108170888108232956921232381335128142514"
            ]
        },
        "target": {
            "file": "include/linux/fscrypt.h"
        },
        "id": "CVE-2022-49899-99ad019a",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "218469426446565321285445808549513949872",
            "length": 155.0
        },
        "target": {
            "function": "format_fs_keyring_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-9a834b2e",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213906690743712472354882217373121418051",
            "length": 294.0
        },
        "target": {
            "function": "fscrypt_find_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-9bf1c858",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "327282989187345262384470777617660483809",
                "200818584503553406454446172455192315429",
                "173176496901415379093292515959694132408",
                "142795354223917557376032366843845958216",
                "226864665769882859936450501781004116258",
                "10537393029647183693408045234004409987",
                "135418884177695004565879479844389147800",
                "18755802020508589746695022346092107466"
            ]
        },
        "target": {
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-9e0b84d7",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "287453055505817819457827507382464206666",
            "length": 406.0
        },
        "target": {
            "function": "__put_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-a37147e1",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "63551730404419273643983231523226320679",
                "95728139779678903874941698805679704287",
                "98550316415897886328246502377345986093",
                "280771666367539506457988828594829943860"
            ]
        },
        "target": {
            "file": "include/linux/fs.h"
        },
        "id": "CVE-2022-49899-a5c3ec6c",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "177130660150042412561864777479109765327",
                "292105158837860538512519351252407314609",
                "213051462183269328991429667427428356156",
                "239548477339692093694588430518972553927",
                "115492475949902653954090406171902876267",
                "11656591044088349484812884007713288449",
                "79196720371004543330906861754565974195",
                "230440319801211919022067066163511364083",
                "312449597349043496488601959358366857094",
                "10395347759280418221517591345369922089",
                "4198401629890097508834991518105093842",
                "151494195739510210112516445071364097956",
                "77685162784353592339964967237453320120",
                "302793946930382214964786383616451418633",
                "337303569445949660762568216328718311272",
                "37989925126704341613188635433801295110"
            ]
        },
        "target": {
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-a98645a4",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "155282363176670145029251482341379372423",
            "length": 1431.0
        },
        "target": {
            "function": "fscrypt_ioctl_get_key_status",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-abf8bcbd",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "218469426446565321285445808549513949872",
            "length": 155.0
        },
        "target": {
            "function": "format_fs_keyring_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-abfd2bd0",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "99204582460090158198663458709756880003",
            "length": 130.0
        },
        "target": {
            "function": "fscrypt_key_instantiate",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-ad22c662",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "167567778651866032414243898610607883622",
                "13173936299481344488617697251962299837",
                "168217877586600983391670922083669616323",
                "256913875441107010104199762887885084703",
                "6962594850617905259091160559472459234",
                "68839623174063719248488404196094548829",
                "123665147069492823073469123486351025719",
                "302600905587912733278588812366127757234",
                "57318743359304453999533036910337514099",
                "104462532166047176209161300099942022171",
                "199446069280160752218100053493914059264",
                "40647390390641305039038991450994917040",
                "245302094769569720231185230510408082452",
                "136329829352740277736711817137875027687",
                "64734370405698756453143281003247451208",
                "273143813162293524065014213619930114323",
                "101163425567431209139268855272816865713",
                "74876439988232606347606508325334660376",
                "76847717340243034878845979323076689443",
                "11910740323198127972096713884101774610",
                "150239392597489894485072613858941757959",
                "144745433412556354140691516652224900933",
                "265060501970458448221550515910519405929",
                "48682659981036895734503402605942352067",
                "122149068030752737623457234064141073462",
                "202725314083148610115086677461604655087",
                "57212425472432803047837521103826131654",
                "191581018362524853684954455794801668725",
                "267581423060891539954942574959388895474",
                "204975977379637110016856281661521873290",
                "140421165596478629180684601066009697393",
                "260769116760913126943802844426748944490",
                "222865776833766529869076434201364371440",
                "314003646736813106630687360222432520618",
                "246172105101472757965955322485979563592",
                "193883987291768735602383276531612274079",
                "236151155226204412944116902352830338534",
                "29002931739917083056389972869898518564",
                "147059358663561549738672689712123068864",
                "311314742179001314939628886514364519862",
                "219124654610533647611688747582833344389",
                "26612088735418535566569653895476725360",
                "146470998741324226247666496318526706688",
                "196593388860090699184983080341551376941",
                "289361437365386699880035947646934739869",
                "330757331294912490626341464470672024212",
                "30228378943981497703208229476490037296",
                "236440647279932398642855430286085251875",
                "269887029495821442007665553508458151278",
                "13794915428610405812065589067012327939",
                "41240067050606705721775645248465371058",
                "164655147535738570927216925156414606136",
                "31339298243643480768487322394285751533",
                "137693548902141240706372552085197123173",
                "70724409270658887025316979427085880003",
                "324658938360461164388103182538409851937",
                "300111166658631871229207000953312997952",
                "82177143716330261701492203383653419472",
                "194790589959680210824830606614941827367",
                "249860977085824573820994139676449922176",
                "96447997387461904414487662048417829327",
                "185863949295625673027511693903584503438",
                "26333692774628645583302466274412747484",
                "111628621407652551954267590176857476671",
                "159285297245895198647383264356660271220",
                "114351593935866565890221031239745009812",
                "199226907153585511905060641869948591032",
                "103552220333324285633120754227821875541",
                "38582798413897608640307439410129931259",
                "134714689948684741385822415480460630436",
                "66935346915919946692289947753682855274",
                "317671934657080036309430919774081405589",
                "297595138736935571960012629393756094835",
                "282432841936287196962362855839702293016",
                "43374857498858478499305015208567004305",
                "229380215431975841498028446045715739554",
                "43932621124309126563525427131575630659",
                "295025031005100280365798156475800456542",
                "185540489410862594817407570844581690522",
                "7763902959907306439794760285816283446",
                "298973932651466197550466917045628504083",
                "290962395733187797577649776474911209385",
                "119517494081947730837929555065453217943",
                "106356778362529493850623538180237581580",
                "5045193114903194501549509443605365442",
                "178638088365106956219856025665258507435",
                "113983385685437409489609152572618074382",
                "205854003261631382861289511904401772640",
                "56159247173244510869583492566908287119",
                "57323471039896034428078345066785837672",
                "267665240025824235863839456430179927527",
                "229118174785205567293073826568326273517",
                "268669572296609061396022381747741057741",
                "216946380537466342358813997083339180770",
                "86813236707628616401091500685110785238",
                "176363539701035224848918262522975191652",
                "63380353095778602535913690953994270725",
                "326390864217448032016833644779421359020",
                "299001961199401525298257793442787017765",
                "108726361322565520827816670590045574330",
                "48813131919757122481348401367528864318",
                "181039087117659899511349468627166441472",
                "339110732506629260568605949851444787063",
                "86051226616605593126012874433816042128",
                "51731020242727392852982837862695353852",
                "328637871852435319251764392950327957075",
                "250854152388034384264974969894379197116",
                "245106409130954730205898391012687950190",
                "8556183952323222724745662809193362450",
                "238870745313084406880318233484274622053",
                "276111412829751724117770060468218016273",
                "289837499671764526294524312565732193753",
                "6766387963274854189021033315620492003",
                "254388698397590728051360873722191506673",
                "250141758012154400253587925961249259431",
                "58303394805335095239039604906634429040",
                "266052868762322079736865366530110870846",
                "322625147171965635060602984202223027567",
                "309262562601061820805588639336841875063",
                "194756480377393457187357263892159025442",
                "99351039634355194946772519372003886005",
                "5993170945297703905288783857051678164",
                "206778189962954037842440720069295285296",
                "291410756191933262403531486805407116484",
                "298571734166846355449991035237407893657",
                "273844606356577594287522057908813249672",
                "220957410317713186830053972187835042885",
                "89578717332346725046915889466730162261",
                "236965857166500568619676694108829376427",
                "224461993484318032976186235651425387328",
                "314524982989239918443736361163587630670",
                "119364660603253950938458915035092076928",
                "156731406346896273168910044824212218731",
                "332012412044660658537813357801876880437",
                "212492403949471969198028626986664149598",
                "335131869708188257059766374598562254531",
                "154784615896445082129761814730258083468",
                "31718855717813691178733517577641529898",
                "128966788327751899169351728390794791197",
                "86249633253284247755873364440439955233",
                "187119866168758610504806549929371129353",
                "171416826067904942537622225879980875678",
                "10897576564769598313009769955797253031",
                "226085569579469394854312104241099871426",
                "1607446007105995648479687102130943225",
                "252552327936201999578354193253778751208",
                "181457145060162587293982905292279086434",
                "135290309254899588847534170393179519133",
                "1248899760703516869986653567474200635",
                "269106455503608995671602379417501425219",
                "33095823586993986254295954490642957837",
                "90751582380849571234974563679862750891",
                "263111229853489289789632500701495075587",
                "231624478248550127895480668363538898607",
                "339780779706524943114381334137824789730",
                "206189430026296056592649976991939984396",
                "329656085948801181071807532106846296221",
                "204584324241963254957706457311300319901",
                "183354599741056641843711827734636674364",
                "163337288736209127247717008324232130549",
                "223398930174601903934484468075568454850",
                "324527191132791556266004372885434751092",
                "254935318541298191278153687793753101579",
                "204387742629595755264519500799390421749",
                "22000011611961772157736847555473011352",
                "177165428088372352443823359003350737929",
                "318180526405105467923092825373560685619",
                "109265368001181490241689602337715800534",
                "78209564523790320516976984754296464860",
                "78303542264583541131811296896991460045",
                "323781180531494190806559049721377007399",
                "233932800701424866950067851281256315083",
                "35395162849042696281633171629212003878",
                "38368599966198204295227551048139223984",
                "311409315945141648004776935092614982492",
                "87603979317683662960001938096107227019",
                "300685211387582318798034339669155803218",
                "238474093594795553356151817121992210016",
                "78710135645512878873842742807925216898",
                "151906304601564549124288353344497587735",
                "209030696351118019286462041746000291155",
                "107888403486071090535524442020619234747",
                "2206877648628027279232240233180145635",
                "246579968889617353855361812676103584124",
                "27524991479462036812287182684895637936",
                "96236182116094789607235835186971444247",
                "154552416995686288693578779815141309895",
                "271214153809043137568653042158632886259",
                "85156091053665203541758010222617922711",
                "201582865394626091899674795840700335949",
                "167282319740720219176173749696823917747",
                "275819417380654235796445982715011196855",
                "124251040630367767437752868997054497088",
                "287137542195546609044166675437138082321",
                "135546698491099481736089755845335295154",
                "142978885979739460004564616990870128237",
                "241915794242964060582681361330277314726",
                "167929647376567112579230847306944330838",
                "303464103898677120494652980181062056502",
                "61377017373068103075501217653980569697",
                "37187926547790903994693986106878668833",
                "80192749187911404327195536984218473609",
                "287109496594851517113329221274198038565",
                "61595032357861542062198676736367697497",
                "164250522320484737805332435750480061439",
                "265509659207326398391338336981854377526",
                "94215919677305699902709333034304460197",
                "110933410757998350149420226277714461965",
                "26306905694109098104086603032170376166",
                "117960877382109129371197115550700739373",
                "219875125839235455096048133049487474465",
                "132796054012266120312986081010058617469",
                "224089773090265539232821531765000059023",
                "106095621847413192460556345808066028340",
                "287726406658660194984397646845110515572",
                "85419891755386563074138567442888314731",
                "317158470762426919352211059943350602644",
                "320264835877714298886409739196694561089",
                "67852459083918681344884420981481309172",
                "97733239825930286075615570910547746917",
                "296434928340197704203022480899779149158",
                "124652094844571217567294335454363979814",
                "204235572817662104289768859669642720014",
                "93329329057447663771296721107381656892",
                "62740973847101193309065925192777106498",
                "181336890298956459377066644043731684511",
                "54625312746819071348854900530502954576",
                "29195588948734028560009205482140492364",
                "82712809789365493016922275423005591455",
                "252208555820253117031874712652867100951",
                "13607296896236984930045136785360193551",
                "276760579151726963167588277335753999634",
                "17502976647854557506604664680589355527",
                "319324453973589884857073296526179374602",
                "219261387660476279556039470211556345829",
                "28449014869687117800405162050380385464",
                "44930765286773371015042662963919198969",
                "96162496425454331317891742203489085562",
                "52719156768808323490199075428864682686",
                "273168880678799303024485669600030828335",
                "96769913007981664129817879179852964503",
                "189669727014282453384237449122101858343",
                "151495117771784262001562442610297302757",
                "327392710623381068642452156681388453028",
                "275955142818417507581222270930400070903",
                "126472841288110558835731597457958648691",
                "336915074165626122064000109046478210059",
                "152106601705921092123461913394223545508",
                "21524984605357808818520645504957104016",
                "329508282151808433283478851376646171787",
                "27518443368885736348912957777510409732",
                "107966841541032976587842673001829697074",
                "220274090880471476613703278204838841796",
                "307650640731896193404172640766456477997",
                "227782445224723735455370611234960452901",
                "294739849046361818831428495954755007722",
                "184526069006589783841506637848636365414",
                "236843172868386385710373494751216832372",
                "220653956030508870023343647072381377977",
                "65918827946262603501898471522297791340",
                "169492986433929292581935351567754628324",
                "73565630535972915700465789201885331334",
                "167321973646978827470588841138069096213",
                "22919692197258397398160870961612541569",
                "91268723571481408936745033631088257041",
                "212134393761672165783614440985567609256",
                "62371378225872198569746595898583432749",
                "6352436499548318261414224989165962379",
                "306180413091461771919953825006948403736",
                "127581493207101126326429892036845013892",
                "257717573472715286837259650969465126749",
                "177424643193609069451737315983604040620",
                "151529234920995545582169684694719559976",
                "115567885443772703395518582444324473214",
                "90092205950333015144852219611300915185",
                "238246830705173347793249567529525627853",
                "89987172072997214339689927657671561805",
                "259451916059812394878593152459537711001",
                "78458897118272739693398044836033729141",
                "107668809176012350765772118109981016051",
                "65387476692363439176602829470121731334",
                "172213624607726503079656256011380996147",
                "313714000588236575048422239366780725795",
                "178424018241105618727845709767314405767",
                "292283485077467855657803380100004122079",
                "122097769245335961224821544263119297130",
                "184890379009624831117881441208229805393",
                "188862220664387948064107830379973466943",
                "114242950203600731100153440192897808490",
                "223149482873159535581984516866173073790",
                "243641063344918141944907389931242002350",
                "9452692155646000380446460758634029340",
                "91104679591685914070096580716339327950",
                "156192862845757949613256787106968769611",
                "250047540935739059907286261226733808533",
                "94404498795478040762906020361068518422",
                "211037655142582223640501557772821845344",
                "318158105920685187792467891537853873508",
                "249017082096099351828162468022266720322",
                "321383081069342959043763570899076537731",
                "269493219333723321803125394894770747630",
                "237546468802228600582618856941248520625",
                "80505645425502779890226990793546401808",
                "300974485676396065290127716163306621717",
                "220170019075233042375105106418304556137",
                "115852539520153586022895108059549297439",
                "312250513610802137109421097672472872573",
                "207473697244536095474339749435471189119",
                "188325151280658352271268660153596353396",
                "283479645761105144949989723255033774238",
                "245131957862247425200245300223937665308",
                "282658700611726252656095208014373365060",
                "237761501598370626565197415329753408200",
                "302867147615135623338221914182319848989",
                "169294777220824587327633924736274342283",
                "5827543221058392048423138072943379769",
                "231522718341179243766671038298409302784",
                "187985635004960072331566623642421448977"
            ]
        },
        "target": {
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-b0d9af12",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "154840686405442299096350504433250818378",
                "4900670684651772916783068706655561368",
                "65186795660129535789763933851108720404",
                "232467632722562188428233576173137159492",
                "242620645238814319846511490687047581455",
                "282597463919702357428911256290799749819",
                "218618321570361393880698823789419989282",
                "84909973010597286682675133401972520470"
            ]
        },
        "target": {
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-b471f22d",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "167567778651866032414243898610607883622",
                "13173936299481344488617697251962299837",
                "168217877586600983391670922083669616323",
                "256913875441107010104199762887885084703",
                "6962594850617905259091160559472459234",
                "68839623174063719248488404196094548829",
                "123665147069492823073469123486351025719",
                "302600905587912733278588812366127757234",
                "57318743359304453999533036910337514099",
                "104462532166047176209161300099942022171",
                "199446069280160752218100053493914059264",
                "40647390390641305039038991450994917040",
                "245302094769569720231185230510408082452",
                "136329829352740277736711817137875027687",
                "64734370405698756453143281003247451208",
                "273143813162293524065014213619930114323",
                "101163425567431209139268855272816865713",
                "74876439988232606347606508325334660376",
                "76847717340243034878845979323076689443",
                "11910740323198127972096713884101774610",
                "150239392597489894485072613858941757959",
                "144745433412556354140691516652224900933",
                "265060501970458448221550515910519405929",
                "48682659981036895734503402605942352067",
                "122149068030752737623457234064141073462",
                "202725314083148610115086677461604655087",
                "57212425472432803047837521103826131654",
                "191581018362524853684954455794801668725",
                "267581423060891539954942574959388895474",
                "204975977379637110016856281661521873290",
                "140421165596478629180684601066009697393",
                "260769116760913126943802844426748944490",
                "222865776833766529869076434201364371440",
                "314003646736813106630687360222432520618",
                "246172105101472757965955322485979563592",
                "193883987291768735602383276531612274079",
                "236151155226204412944116902352830338534",
                "29002931739917083056389972869898518564",
                "147059358663561549738672689712123068864",
                "311314742179001314939628886514364519862",
                "219124654610533647611688747582833344389",
                "26612088735418535566569653895476725360",
                "146470998741324226247666496318526706688",
                "196593388860090699184983080341551376941",
                "289361437365386699880035947646934739869",
                "330757331294912490626341464470672024212",
                "30228378943981497703208229476490037296",
                "236440647279932398642855430286085251875",
                "269887029495821442007665553508458151278",
                "13794915428610405812065589067012327939",
                "41240067050606705721775645248465371058",
                "164655147535738570927216925156414606136",
                "31339298243643480768487322394285751533",
                "137693548902141240706372552085197123173",
                "70724409270658887025316979427085880003",
                "324658938360461164388103182538409851937",
                "300111166658631871229207000953312997952",
                "82177143716330261701492203383653419472",
                "194790589959680210824830606614941827367",
                "249860977085824573820994139676449922176",
                "96447997387461904414487662048417829327",
                "185863949295625673027511693903584503438",
                "26333692774628645583302466274412747484",
                "111628621407652551954267590176857476671",
                "159285297245895198647383264356660271220",
                "114351593935866565890221031239745009812",
                "199226907153585511905060641869948591032",
                "103552220333324285633120754227821875541",
                "38582798413897608640307439410129931259",
                "134714689948684741385822415480460630436",
                "66935346915919946692289947753682855274",
                "317671934657080036309430919774081405589",
                "297595138736935571960012629393756094835",
                "282432841936287196962362855839702293016",
                "43374857498858478499305015208567004305",
                "229380215431975841498028446045715739554",
                "43932621124309126563525427131575630659",
                "295025031005100280365798156475800456542",
                "185540489410862594817407570844581690522",
                "7763902959907306439794760285816283446",
                "298973932651466197550466917045628504083",
                "290962395733187797577649776474911209385",
                "119517494081947730837929555065453217943",
                "106356778362529493850623538180237581580",
                "5045193114903194501549509443605365442",
                "178638088365106956219856025665258507435",
                "113983385685437409489609152572618074382",
                "205854003261631382861289511904401772640",
                "56159247173244510869583492566908287119",
                "57323471039896034428078345066785837672",
                "267665240025824235863839456430179927527",
                "229118174785205567293073826568326273517",
                "268669572296609061396022381747741057741",
                "216946380537466342358813997083339180770",
                "86813236707628616401091500685110785238",
                "176363539701035224848918262522975191652",
                "63380353095778602535913690953994270725",
                "326390864217448032016833644779421359020",
                "299001961199401525298257793442787017765",
                "108726361322565520827816670590045574330",
                "48813131919757122481348401367528864318",
                "181039087117659899511349468627166441472",
                "339110732506629260568605949851444787063",
                "86051226616605593126012874433816042128",
                "51731020242727392852982837862695353852",
                "328637871852435319251764392950327957075",
                "250854152388034384264974969894379197116",
                "245106409130954730205898391012687950190",
                "8556183952323222724745662809193362450",
                "238870745313084406880318233484274622053",
                "276111412829751724117770060468218016273",
                "289837499671764526294524312565732193753",
                "6766387963274854189021033315620492003",
                "254388698397590728051360873722191506673",
                "250141758012154400253587925961249259431",
                "58303394805335095239039604906634429040",
                "266052868762322079736865366530110870846",
                "322625147171965635060602984202223027567",
                "309262562601061820805588639336841875063",
                "194756480377393457187357263892159025442",
                "99351039634355194946772519372003886005",
                "5993170945297703905288783857051678164",
                "206778189962954037842440720069295285296",
                "291410756191933262403531486805407116484",
                "298571734166846355449991035237407893657",
                "273844606356577594287522057908813249672",
                "220957410317713186830053972187835042885",
                "89578717332346725046915889466730162261",
                "236965857166500568619676694108829376427",
                "224461993484318032976186235651425387328",
                "314524982989239918443736361163587630670",
                "119364660603253950938458915035092076928",
                "156731406346896273168910044824212218731",
                "332012412044660658537813357801876880437",
                "212492403949471969198028626986664149598",
                "335131869708188257059766374598562254531",
                "154784615896445082129761814730258083468",
                "31718855717813691178733517577641529898",
                "128966788327751899169351728390794791197",
                "86249633253284247755873364440439955233",
                "187119866168758610504806549929371129353",
                "171416826067904942537622225879980875678",
                "10897576564769598313009769955797253031",
                "226085569579469394854312104241099871426",
                "1607446007105995648479687102130943225",
                "252552327936201999578354193253778751208",
                "181457145060162587293982905292279086434",
                "135290309254899588847534170393179519133",
                "1248899760703516869986653567474200635",
                "269106455503608995671602379417501425219",
                "33095823586993986254295954490642957837",
                "90751582380849571234974563679862750891",
                "263111229853489289789632500701495075587",
                "231624478248550127895480668363538898607",
                "339780779706524943114381334137824789730",
                "206189430026296056592649976991939984396",
                "329656085948801181071807532106846296221",
                "204584324241963254957706457311300319901",
                "183354599741056641843711827734636674364",
                "163337288736209127247717008324232130549",
                "223398930174601903934484468075568454850",
                "324527191132791556266004372885434751092",
                "254935318541298191278153687793753101579",
                "204387742629595755264519500799390421749",
                "22000011611961772157736847555473011352",
                "177165428088372352443823359003350737929",
                "318180526405105467923092825373560685619",
                "109265368001181490241689602337715800534",
                "78209564523790320516976984754296464860",
                "78303542264583541131811296896991460045",
                "323781180531494190806559049721377007399",
                "233932800701424866950067851281256315083",
                "35395162849042696281633171629212003878",
                "38368599966198204295227551048139223984",
                "311409315945141648004776935092614982492",
                "87603979317683662960001938096107227019",
                "300685211387582318798034339669155803218",
                "238474093594795553356151817121992210016",
                "78710135645512878873842742807925216898",
                "151906304601564549124288353344497587735",
                "209030696351118019286462041746000291155",
                "107888403486071090535524442020619234747",
                "2206877648628027279232240233180145635",
                "246579968889617353855361812676103584124",
                "27524991479462036812287182684895637936",
                "96236182116094789607235835186971444247",
                "154552416995686288693578779815141309895",
                "271214153809043137568653042158632886259",
                "85156091053665203541758010222617922711",
                "201582865394626091899674795840700335949",
                "167282319740720219176173749696823917747",
                "275819417380654235796445982715011196855",
                "124251040630367767437752868997054497088",
                "287137542195546609044166675437138082321",
                "135546698491099481736089755845335295154",
                "142978885979739460004564616990870128237",
                "241915794242964060582681361330277314726",
                "167929647376567112579230847306944330838",
                "303464103898677120494652980181062056502",
                "61377017373068103075501217653980569697",
                "37187926547790903994693986106878668833",
                "80192749187911404327195536984218473609",
                "287109496594851517113329221274198038565",
                "61595032357861542062198676736367697497",
                "164250522320484737805332435750480061439",
                "265509659207326398391338336981854377526",
                "94215919677305699902709333034304460197",
                "110933410757998350149420226277714461965",
                "26306905694109098104086603032170376166",
                "117960877382109129371197115550700739373",
                "219875125839235455096048133049487474465",
                "132796054012266120312986081010058617469",
                "224089773090265539232821531765000059023",
                "106095621847413192460556345808066028340",
                "287726406658660194984397646845110515572",
                "85419891755386563074138567442888314731",
                "317158470762426919352211059943350602644",
                "320264835877714298886409739196694561089",
                "67852459083918681344884420981481309172",
                "97733239825930286075615570910547746917",
                "296434928340197704203022480899779149158",
                "124652094844571217567294335454363979814",
                "204235572817662104289768859669642720014",
                "93329329057447663771296721107381656892",
                "62740973847101193309065925192777106498",
                "181336890298956459377066644043731684511",
                "54625312746819071348854900530502954576",
                "29195588948734028560009205482140492364",
                "82712809789365493016922275423005591455",
                "252208555820253117031874712652867100951",
                "13607296896236984930045136785360193551",
                "276760579151726963167588277335753999634",
                "17502976647854557506604664680589355527",
                "319324453973589884857073296526179374602",
                "219261387660476279556039470211556345829",
                "28449014869687117800405162050380385464",
                "44930765286773371015042662963919198969",
                "96162496425454331317891742203489085562",
                "52719156768808323490199075428864682686",
                "273168880678799303024485669600030828335",
                "96769913007981664129817879179852964503",
                "189669727014282453384237449122101858343",
                "151495117771784262001562442610297302757",
                "327392710623381068642452156681388453028",
                "275955142818417507581222270930400070903",
                "126472841288110558835731597457958648691",
                "336915074165626122064000109046478210059",
                "152106601705921092123461913394223545508",
                "21524984605357808818520645504957104016",
                "329508282151808433283478851376646171787",
                "27518443368885736348912957777510409732",
                "107966841541032976587842673001829697074",
                "220274090880471476613703278204838841796",
                "307650640731896193404172640766456477997",
                "227782445224723735455370611234960452901",
                "294739849046361818831428495954755007722",
                "184526069006589783841506637848636365414",
                "236843172868386385710373494751216832372",
                "220653956030508870023343647072381377977",
                "65918827946262603501898471522297791340",
                "169492986433929292581935351567754628324",
                "73565630535972915700465789201885331334",
                "167321973646978827470588841138069096213",
                "22919692197258397398160870961612541569",
                "91268723571481408936745033631088257041",
                "212134393761672165783614440985567609256",
                "62371378225872198569746595898583432749",
                "6352436499548318261414224989165962379",
                "306180413091461771919953825006948403736",
                "127581493207101126326429892036845013892",
                "257717573472715286837259650969465126749",
                "177424643193609069451737315983604040620",
                "151529234920995545582169684694719559976",
                "115567885443772703395518582444324473214",
                "90092205950333015144852219611300915185",
                "238246830705173347793249567529525627853",
                "89987172072997214339689927657671561805",
                "259451916059812394878593152459537711001",
                "78458897118272739693398044836033729141",
                "107668809176012350765772118109981016051",
                "65387476692363439176602829470121731334",
                "172213624607726503079656256011380996147",
                "313714000588236575048422239366780725795",
                "178424018241105618727845709767314405767",
                "292283485077467855657803380100004122079",
                "122097769245335961224821544263119297130",
                "184890379009624831117881441208229805393",
                "188862220664387948064107830379973466943",
                "114242950203600731100153440192897808490",
                "223149482873159535581984516866173073790",
                "243641063344918141944907389931242002350",
                "9452692155646000380446460758634029340",
                "91104679591685914070096580716339327950",
                "156192862845757949613256787106968769611",
                "250047540935739059907286261226733808533",
                "94404498795478040762906020361068518422",
                "211037655142582223640501557772821845344",
                "318158105920685187792467891537853873508",
                "249017082096099351828162468022266720322",
                "321383081069342959043763570899076537731",
                "269493219333723321803125394894770747630",
                "237546468802228600582618856941248520625",
                "80505645425502779890226990793546401808",
                "300974485676396065290127716163306621717",
                "220170019075233042375105106418304556137",
                "115852539520153586022895108059549297439",
                "312250513610802137109421097672472872573",
                "207473697244536095474339749435471189119",
                "188325151280658352271268660153596353396",
                "283479645761105144949989723255033774238",
                "245131957862247425200245300223937665308",
                "282658700611726252656095208014373365060",
                "237761501598370626565197415329753408200",
                "302867147615135623338221914182319848989",
                "169294777220824587327633924736274342283",
                "5827543221058392048423138072943379769",
                "231522718341179243766671038298409302784",
                "187985635004960072331566623642421448977"
            ]
        },
        "target": {
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-b503054f",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "268497445385633447701428442414553611363",
            "length": 292.0
        },
        "target": {
            "function": "fscrypt_drop_inode",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-b51d24c9",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "78694491802997794116085920853008052751",
            "length": 363.0
        },
        "target": {
            "function": "free_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-b5a74b63",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "229056839990546533220599534355168351638",
            "length": 1220.0
        },
        "target": {
            "function": "fscrypt_setup_encryption_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-b7291042",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "93469737432243592809540598760084759081",
            "length": 106.0
        },
        "target": {
            "function": "fscrypt_sb_free",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-b85f75b6",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "113428641967258543683971611914316046261",
            "length": 616.0
        },
        "target": {
            "function": "put_crypt_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-b9461ebb",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "6140719537796457884876618075720073779",
            "length": 1066.0
        },
        "target": {
            "function": "add_new_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-bb860a4f",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "46532303859831999143079790258579351556",
            "length": 1547.0
        },
        "target": {
            "function": "do_remove_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-bc6fc58a",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "63551730404419273643983231523226320679",
                "95728139779678903874941698805679704287",
                "98550316415897886328246502377345986093",
                "280771666367539506457988828594829943860"
            ]
        },
        "target": {
            "file": "include/linux/fs.h"
        },
        "id": "CVE-2022-49899-bde0aba3",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "268497445385633447701428442414553611363",
            "length": 292.0
        },
        "target": {
            "function": "fscrypt_drop_inode",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-bf101c6c",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "218469426446565321285445808549513949872",
            "length": 155.0
        },
        "target": {
            "function": "format_fs_keyring_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-bf5c8527",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "177130660150042412561864777479109765327",
                "292105158837860538512519351252407314609",
                "213051462183269328991429667427428356156",
                "239548477339692093694588430518972553927",
                "115492475949902653954090406171902876267",
                "11656591044088349484812884007713288449",
                "79196720371004543330906861754565974195",
                "230440319801211919022067066163511364083",
                "312449597349043496488601959358366857094",
                "10395347759280418221517591345369922089",
                "4198401629890097508834991518105093842",
                "151494195739510210112516445071364097956",
                "77685162784353592339964967237453320120",
                "302793946930382214964786383616451418633",
                "337303569445949660762568216328718311272",
                "37989925126704341613188635433801295110"
            ]
        },
        "target": {
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-c05a7d12",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "38240611039594211724219301234354706467",
            "length": 85.0
        },
        "target": {
            "function": "fscrypt_destroy_prepared_key",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-c0bf8b5e",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "324981822340896226053141039889261362870",
                "291238446695375724273969859843490625374",
                "262356378426476817716569229319442627819",
                "283737670636226804836858495182371273380",
                "168041290263694962145298799766805955098",
                "16073295003377649152785113817431653811",
                "141917614668772765844701559250833082784",
                "76074828722213511216142997117697022405",
                "208634805292265434343422098035108105637",
                "127804217133432620265607800777760148827",
                "230763296541775527976906877663459990473",
                "63805804348442681004025513184727822485",
                "102286384701481577298012852071917685490",
                "236601753713154920401181245582419482620",
                "89303577652551536392012162851316822395",
                "85900973964576349370426431044340400752",
                "99303509091623571323134818543905432243",
                "224445717237882032445715594308734604042"
            ]
        },
        "target": {
            "file": "fs/crypto/fscrypt_private.h"
        },
        "id": "CVE-2022-49899-c1b846b0",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "7753600796556675322596788644747281918",
            "length": 605.0
        },
        "target": {
            "function": "add_existing_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-c23fad1b",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "113428641967258543683971611914316046261",
            "length": 616.0
        },
        "target": {
            "function": "put_crypt_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-c3dd6aa4",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "47515387641097391945876073464971200187",
                "197475690778498987553105098970254940515",
                "139604380225487026882996850188869819968",
                "143771288729236711834922879478662242280",
                "122528570108152370931533490152052923346",
                "116738638666000497530748353399873368108",
                "178109495578332394201982156587844820776",
                "108170888108232956921232381335128142514"
            ]
        },
        "target": {
            "file": "include/linux/fscrypt.h"
        },
        "id": "CVE-2022-49899-c5351cfd",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "287453055505817819457827507382464206666",
            "length": 406.0
        },
        "target": {
            "function": "__put_super",
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-c614eb89",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "249483954033246534653806460918531938525",
            "length": 355.0
        },
        "target": {
            "function": "search_fscrypt_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-c6af219d",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "212879498462699642805565033023589363404",
            "length": 221.0
        },
        "target": {
            "function": "find_master_key_user",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-c6da3586",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "324135320391604675568879603920151614878",
            "length": 727.0
        },
        "target": {
            "function": "do_add_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-c9d3bafc",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "286269668881155918564433999479029190614",
                "98045176181095878344436327125182429411",
                "54356577323204215580921374826617451751",
                "141637658291626138103193550815343622940",
                "47774056923766830083294876096119329509",
                "69142020316854051080961797839658344964",
                "329183801710135483571481965728623629501",
                "106721456905571210965701481874914342977",
                "227523868560815776512298743323040525713",
                "227374206369501539105118882362964339442",
                "195378478740157763573253504893774288318",
                "176213606840633771603130872648636629696",
                "236475463223651201644489532624028426522",
                "294206243807712541205902501829806414522",
                "298466691044076851311539394237306436583",
                "296565977497904329470208304612155874300",
                "147472004737886431461937550341748395560",
                "94875821042153927283891432654270543577",
                "145492649311815539092394685074628787563",
                "316720625272024932557359052859170157238",
                "329041469580372469246247115050829107739",
                "298372682348182102211090609712591401799",
                "27382699896035479048416245190238287507",
                "117315410385380977606137980505978091820",
                "212011344298355779483397889616628645114",
                "94404498795478040762906020361068518422",
                "272291819026815503110381474095913147430",
                "155577138843099208235899209663161104924",
                "174418132698048497708175950536030747964",
                "64702451253127238921093015591698234887",
                "146904966245949503205927024100331072206",
                "279208343329459083667886233576184543335",
                "332534154958657789632586714143637502458",
                "46730917838397218325727698779642051404",
                "6371932033480916181031009079001463891",
                "321814826673467422522233967133685495501",
                "88054230444784179663551683592476207127",
                "199898866387582632364917539724851481691",
                "24009486719308800141685625893938989704",
                "46814166009171320136900807955730666091",
                "27920618624219242220878323642304385833",
                "288431111443222080967407108874030139401",
                "61224286875737797342149203811651136008",
                "29079292327251046796505788153716793019",
                "88083385400739112924072536944388241374",
                "175003653982350715584740539835093219051",
                "297062354313727350466717546420170072821",
                "262443872183355338606978497402599253127",
                "80184429145297356008237076574713126184",
                "176344795465271944875419591350813689506",
                "29116361958189097384791438263047016826",
                "138544608192868952672836043876770207648",
                "74153487391428464432840224884440666568",
                "100119564656792993449967708110848774582",
                "145965275028141100368981625272129393323",
                "315637687675973064783200158653269511229",
                "77031009321530593606398820281122296069",
                "137379284985702149542239760602700141498",
                "303959306939312380401805062899361175324",
                "140706664095395681098266419844911508063",
                "88066948539276232637368957618194430554",
                "235554589428638203702906955953663482747",
                "204642112563913984928933193613589173987",
                "28888900449840844499817853280743577179",
                "271181162226062602805459479507785007454",
                "296837829083027642470208880846471884161",
                "33588475452418043809027168911126613476",
                "308140477313851288459547774857016284639",
                "172106018864628758549931265101516562722",
                "287465560010052695588745518128499714479",
                "224558393076812456673461806405117778295",
                "63114447185059668613339437686600563164",
                "203701961604363665751032335661633768441",
                "258654247168736899934407742579589678912",
                "328441688670567047763148019992608999104",
                "149936031393119548755909913336707040886",
                "93649034536088527322375782762650405630",
                "230371922210273556316894242107286417365",
                "164210402060765839460089893409710485960",
                "228254577691149758095635499592813063790",
                "6049978788110095747893427019518124210",
                "330003087957570493395498370432826909963",
                "228094008677553837186998580134424262191",
                "181905508172332835448571215430631687389",
                "188630097354856188817936232786413236138"
            ]
        },
        "target": {
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-c9f14357",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "327282989187345262384470777617660483809",
                "200818584503553406454446172455192315429",
                "173176496901415379093292515959694132408",
                "142795354223917557376032366843845958216",
                "226864665769882859936450501781004116258",
                "86035551376837323439224699530033767068",
                "66105809883952612219332432555792064821",
                "7277149342592796174666039200011604300"
            ]
        },
        "target": {
            "file": "fs/super.c"
        },
        "id": "CVE-2022-49899-cd567304",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "47515387641097391945876073464971200187",
                "197475690778498987553105098970254940515",
                "53069208560125403050581342255317019657",
                "112272578476512015389255578679250448495",
                "122528570108152370931533490152052923346",
                "116738638666000497530748353399873368108",
                "178109495578332394201982156587844820776",
                "108170888108232956921232381335128142514"
            ]
        },
        "target": {
            "file": "include/linux/fscrypt.h"
        },
        "id": "CVE-2022-49899-ce312e72",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "116770770131775372096111067159059823194",
                "132223736067756203662142899736999326434",
                "65186795660129535789763933851108720404",
                "232467632722562188428233576173137159492",
                "242620645238814319846511490687047581455",
                "282597463919702357428911256290799749819",
                "218618321570361393880698823789419989282",
                "84909973010597286682675133401972520470"
            ]
        },
        "target": {
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-cf3941e1",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "193527603779868828828615280107850744498",
            "length": 599.0
        },
        "target": {
            "function": "fscrypt_prepare_setflags",
            "file": "fs/crypto/hooks.c"
        },
        "id": "CVE-2022-49899-cfcfd2e0",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "279254916751206843470660529208805555273",
            "length": 590.0
        },
        "target": {
            "function": "fscrypt_set_context",
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-d16bd66d",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "324981822340896226053141039889261362870",
                "291238446695375724273969859843490625374",
                "262356378426476817716569229319442627819",
                "283737670636226804836858495182371273380",
                "168041290263694962145298799766805955098",
                "16073295003377649152785113817431653811",
                "141917614668772765844701559250833082784",
                "76074828722213511216142997117697022405",
                "208634805292265434343422098035108105637",
                "127804217133432620265607800777760148827",
                "230763296541775527976906877663459990473",
                "63805804348442681004025513184727822485",
                "102286384701481577298012852071917685490",
                "236601753713154920401181245582419482620",
                "89303577652551536392012162851316822395",
                "85900973964576349370426431044340400752",
                "99303509091623571323134818543905432243",
                "294085084166970562894589981505277775817"
            ]
        },
        "target": {
            "file": "fs/crypto/fscrypt_private.h"
        },
        "id": "CVE-2022-49899-d46d1b03",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "245646944040865056472756065429437970037",
            "length": 174.0
        },
        "target": {
            "function": "format_mk_description",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-d4f8e162",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "324981822340896226053141039889261362870",
                "291238446695375724273969859843490625374",
                "262356378426476817716569229319442627819",
                "283737670636226804836858495182371273380",
                "168041290263694962145298799766805955098",
                "16073295003377649152785113817431653811",
                "141917614668772765844701559250833082784",
                "76074828722213511216142997117697022405",
                "208634805292265434343422098035108105637",
                "127804217133432620265607800777760148827",
                "230763296541775527976906877663459990473",
                "63805804348442681004025513184727822485",
                "102286384701481577298012852071917685490",
                "236601753713154920401181245582419482620",
                "89303577652551536392012162851316822395",
                "85900973964576349370426431044340400752",
                "99303509091623571323134818543905432243",
                "224445717237882032445715594308734604042"
            ]
        },
        "target": {
            "file": "fs/crypto/fscrypt_private.h"
        },
        "id": "CVE-2022-49899-d6ad5ba0",
        "deprecated": false,
        "signature_type": "Line"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "46532303859831999143079790258579351556",
            "length": 1547.0
        },
        "target": {
            "function": "do_remove_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-d749bb6e",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "274513039500475248718356563067422608537",
            "length": 481.0
        },
        "target": {
            "function": "fscrypt_set_context",
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-d7af81d2",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "46532303859831999143079790258579351556",
            "length": 1547.0
        },
        "target": {
            "function": "do_remove_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-d7e29f9c",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@e6f4fd85ef1ee6ab356bfbd64df28c1cb73aee7e",
        "signature_version": "v1",
        "digest": {
            "function_hash": "279254916751206843470660529208805555273",
            "length": 590.0
        },
        "target": {
            "function": "fscrypt_set_context",
            "file": "fs/crypto/policy.c"
        },
        "id": "CVE-2022-49899-db7bbc48",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "212879498462699642805565033023589363404",
            "length": 221.0
        },
        "target": {
            "function": "find_master_key_user",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-e0a76f0d",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "300593412706824674425435331789126530535",
            "length": 614.0
        },
        "target": {
            "function": "fscrypt_verify_key_added",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-eebe5027",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "213849017659467864072463803777990547436",
            "length": 463.0
        },
        "target": {
            "function": "allocate_filesystem_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-f0303316",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@68d15d6558a386f46d815a6ac39edecad713a1bf",
        "signature_version": "v1",
        "digest": {
            "function_hash": "229056839990546533220599534355168351638",
            "length": 1220.0
        },
        "target": {
            "function": "fscrypt_setup_encryption_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-f2b9a567",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "78694491802997794116085920853008052751",
            "length": 363.0
        },
        "target": {
            "function": "free_master_key",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-f5d13963",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@391cceee6d435e616f68631e68f5b32d480b1e67",
        "signature_version": "v1",
        "digest": {
            "function_hash": "113428641967258543683971611914316046261",
            "length": 616.0
        },
        "target": {
            "function": "put_crypt_info",
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-f928e099",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "function_hash": "129897301837770439138691877663654543016",
            "length": 441.0
        },
        "target": {
            "function": "fscrypt_init_keyring",
            "file": "fs/crypto/keyring.c"
        },
        "id": "CVE-2022-49899-f99d31f7",
        "deprecated": false,
        "signature_type": "Function"
    },
    {
        "source": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git@d7e7b9af104c7b389a0c21eb26532511bce4b510",
        "signature_version": "v1",
        "digest": {
            "threshold": 0.9,
            "line_hashes": [
                "286269668881155918564433999479029190614",
                "98045176181095878344436327125182429411",
                "54356577323204215580921374826617451751",
                "141637658291626138103193550815343622940",
                "47774056923766830083294876096119329509",
                "69142020316854051080961797839658344964",
                "329183801710135483571481965728623629501",
                "106721456905571210965701481874914342977",
                "227523868560815776512298743323040525713",
                "227374206369501539105118882362964339442",
                "195378478740157763573253504893774288318",
                "176213606840633771603130872648636629696",
                "236475463223651201644489532624028426522",
                "294206243807712541205902501829806414522",
                "298466691044076851311539394237306436583",
                "296565977497904329470208304612155874300",
                "229503646821142654153559255637875339376",
                "209147947225431907288730144037680621158",
                "169671069589646676276575465837928514941",
                "316720625272024932557359052859170157238",
                "329041469580372469246247115050829107739",
                "298372682348182102211090609712591401799",
                "27382699896035479048416245190238287507",
                "117315410385380977606137980505978091820",
                "212011344298355779483397889616628645114",
                "94404498795478040762906020361068518422",
                "272291819026815503110381474095913147430",
                "155577138843099208235899209663161104924",
                "174418132698048497708175950536030747964",
                "64702451253127238921093015591698234887",
                "146904966245949503205927024100331072206",
                "279208343329459083667886233576184543335",
                "332534154958657789632586714143637502458",
                "46730917838397218325727698779642051404",
                "6371932033480916181031009079001463891",
                "321814826673467422522233967133685495501",
                "88054230444784179663551683592476207127",
                "199898866387582632364917539724851481691",
                "24009486719308800141685625893938989704",
                "46814166009171320136900807955730666091",
                "27920618624219242220878323642304385833",
                "288431111443222080967407108874030139401",
                "61224286875737797342149203811651136008",
                "29079292327251046796505788153716793019",
                "88083385400739112924072536944388241374",
                "175003653982350715584740539835093219051",
                "297062354313727350466717546420170072821",
                "262443872183355338606978497402599253127",
                "80184429145297356008237076574713126184",
                "176344795465271944875419591350813689506",
                "29116361958189097384791438263047016826",
                "138544608192868952672836043876770207648",
                "74153487391428464432840224884440666568",
                "100119564656792993449967708110848774582",
                "145965275028141100368981625272129393323",
                "315637687675973064783200158653269511229",
                "77031009321530593606398820281122296069",
                "137379284985702149542239760602700141498",
                "303959306939312380401805062899361175324",
                "140706664095395681098266419844911508063",
                "88066948539276232637368957618194430554",
                "235554589428638203702906955953663482747",
                "204642112563913984928933193613589173987",
                "28888900449840844499817853280743577179",
                "271181162226062602805459479507785007454",
                "296837829083027642470208880846471884161",
                "33588475452418043809027168911126613476",
                "308140477313851288459547774857016284639",
                "172106018864628758549931265101516562722",
                "287465560010052695588745518128499714479",
                "224558393076812456673461806405117778295",
                "63114447185059668613339437686600563164",
                "203701961604363665751032335661633768441",
                "258654247168736899934407742579589678912",
                "328441688670567047763148019992608999104",
                "149936031393119548755909913336707040886",
                "93649034536088527322375782762650405630",
                "230371922210273556316894242107286417365",
                "164210402060765839460089893409710485960",
                "228254577691149758095635499592813063790",
                "6049978788110095747893427019518124210",
                "330003087957570493395498370432826909963",
                "228094008677553837186998580134424262191",
                "181905508172332835448571215430631687389",
                "188630097354856188817936232786413236138"
            ]
        },
        "target": {
            "file": "fs/crypto/keysetup.c"
        },
        "id": "CVE-2022-49899-fb0ef04c",
        "deprecated": false,
        "signature_type": "Line"
    }
]

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.4.0
Fixed
5.10.154
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.78
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.0.8