{"schema_version":"1.9.0","id":"CVE-2023-52933","published":"2025-03-27T16:37:14.230Z","modified":"2026-08-12T03:51:32.947972306Z","related":["ALSA-2025:9880","SUSE-SU-2025:1176-1","SUSE-SU-2025:1183-1","SUSE-SU-2025:1195-1","SUSE-SU-2025:1241-1","SUSE-SU-2025:1293-1"],"summary":"Squashfs: fix handling and sanity checking of xattr_ids count","details":"In the Linux kernel, the following vulnerability has been resolved:\n\nSquashfs: fix handling and sanity checking of xattr_ids count\n\nA Sysbot [1] corrupted filesystem exposes two flaws in the handling and\nsanity checking of the xattr_ids count in the filesystem.  Both of these\nflaws cause computation overflow due to incorrect typing.\n\nIn the corrupted filesystem the xattr_ids value is 4294967071, which\nstored in a signed variable becomes the negative number -225.\n\nFlaw 1 (64-bit systems only):\n\nThe signed integer xattr_ids variable causes sign extension.\n\nThis causes variable overflow in the SQUASHFS_XATTR_*(A) macros.  The\nvariable is first multiplied by sizeof(struct squashfs_xattr_id) where the\ntype of the sizeof operator is \"unsigned long\".\n\nOn a 64-bit system this is 64-bits in size, and causes the negative number\nto be sign extended and widened to 64-bits and then become unsigned.  This\nproduces the very large number 18446744073709548016 or 2^64 - 3600.  This\nnumber when rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and\ndivided by SQUASHFS_METADATA_SIZE overflows and produces a length of 0\n(stored in len).\n\nFlaw 2 (32-bit systems only):\n\nOn a 32-bit system the integer variable is not widened by the unsigned\nlong type of the sizeof operator (32-bits), and the signedness of the\nvariable has no effect due it always being treated as unsigned.\n\nThe above corrupted xattr_ids value of 4294967071, when multiplied\noverflows and produces the number 4294963696 or 2^32 - 3400.  This number\nwhen rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and divided by\nSQUASHFS_METADATA_SIZE overflows again and produces a length of 0.\n\nThe effect of the 0 length computation:\n\nIn conjunction with the corrupted xattr_ids field, the filesystem also has\na corrupted xattr_table_start value, where it matches the end of\nfilesystem value of 850.\n\nThis causes the following sanity check code to fail because the\nincorrectly computed len of 0 matches the incorrect size of the table\nreported by the superblock (0 bytes).\n\n    len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids);\n    indexes = SQUASHFS_XATTR_BLOCKS(*xattr_ids);\n\n    /*\n     * The computed size of the index table (len bytes) should exactly\n     * match the table start and end points\n    */\n    start = table_start + sizeof(*id_table);\n    end = msblk->bytes_used;\n\n    if (len != (end - start))\n            return ERR_PTR(-EINVAL);\n\nChanging the xattr_ids variable to be \"usigned int\" fixes the flaw on a\n64-bit system.  This relies on the fact the computation is widened by the\nunsigned long type of the sizeof operator.\n\nCasting the variable to u64 in the above macro fixes this flaw on a 32-bit\nsystem.\n\nIt also means 64-bit systems do not implicitly rely on the type of the\nsizeof operator to widen the computation.\n\n[1] https://lore.kernel.org/lkml/000000000000cd44f005f1a0f17f@google.com/","affected":[{"ranges":[{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"ff49cace7b8cf00d27665f7536a863d406963d06"},{"fixed":"7fe583c9bec10cd4b76231c51b37f3e4ca646e01"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"a8717b34003f4f7353b23826617ad872f85d85d8"},{"fixed":"b38c3e9e0adc01956cc3e5a52e4d3f92f79d88e2"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"3654a0ed0bdc6d70502bfc7c9fec9f1e243dfcad"},{"fixed":"1369322c1de52c7b9b988b95c9903110a4566778"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"bddcce15cd1fb9675ddd46a76d8fe2d0a571313b"},{"fixed":"5c4d4a83bf1a862d80c1efff1c6e3ce33b501e2e"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"506220d2ba21791314af569211ffd8870b8208fa"},{"fixed":"997bed0f3cde78a3e639d624985bf4a95cf767e6"},{"fixed":"a7da7d01ac5ce9b369a1ac70e1197999cc6c9686"},{"fixed":"f65c4bbbd682b0877b669828b4e033b8d5d0a2dc"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"0"},{"last_affected":"91d4f4d0d7bcd6abd9f9288ff40f4edc716f3d4b"},{"last_affected":"eca93bf20f70e0f78c8c28720951942f61a49117"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"4.14.222"},{"fixed":"4.14.306"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"4.19.176"},{"fixed":"4.19.273"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"5.4.98"},{"fixed":"5.4.232"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"5.10.16"},{"fixed":"5.10.168"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"4.4.258"},{"fixed":"4.5"}]},{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"4.9.258"},{"fixed":"4.10"}]}],"versions":["v4.14.305","v4.14.304","v4.14.303","v4.14.302","v4.14.301","v4.14.300","v4.14.299","v4.14.298","v4.14.297","v4.14.296","v4.14.295","v4.14.294","v4.14.293","v4.14.292","v4.14.291","v4.14.290","v4.14.289","v4.14.288","v4.14.287","v4.14.286","v4.14.285","v4.14.284","v4.14.283","v4.14.282","v4.14.281","v4.14.280","v4.14.279","v4.14.278","v4.14.277","v4.14.276","v4.14.275","v4.14.274","v4.14.273","v4.14.272","v4.14.271","v4.14.270","v4.14.269","v4.14.268","v4.14.267","v4.14.266","v4.14.265","v4.14.264","v4.14.263","v4.14.262","v4.14.261","v4.14.260","v4.14.259","v4.14.258","v4.14.257","v4.14.256","v4.14.255","v4.14.254","v4.14.253","v4.14.252","v4.14.251","v4.14.250","v4.14.249","v4.14.248","v4.14.247","v4.14.246","v4.14.245","v4.14.244","v4.14.243","v4.14.242","v4.14.241","v4.14.240","v4.14.239","v4.14.238","v4.14.237","v4.14.236","v4.14.235","v4.14.234","v4.14.233","v4.14.232","v4.14.231","v4.14.230","v4.14.229","v4.14.228","v4.14.227","v4.14.226","v4.14.225","v4.14.224","v4.14.223","v4.14.222","v4.19.272","v4.19.271","v4.19.270","v4.19.269","v4.19.268","v4.19.267","v4.19.266","v4.19.265","v4.19.264","v4.19.263","v4.19.262","v4.19.261","v4.19.260","v4.19.259","v4.19.258","v4.19.257","v4.19.256","v4.19.255","v4.19.254","v4.19.253","v4.19.252","v4.19.251","v4.19.250","v4.19.249","v4.19.248","v4.19.247","v4.19.246","v4.19.245","v4.19.244","v4.19.243","v4.19.242","v4.19.241","v4.19.240","v4.19.239","v4.19.238","v4.19.237","v4.19.236","v4.19.235","v4.19.234","v4.19.233","v4.19.232","v4.19.231","v4.19.230","v4.19.229","v4.19.228","v4.19.227","v4.19.226","v4.19.225","v4.19.224","v4.19.223","v4.19.222","v4.19.221","v4.19.220","v4.19.219","v4.19.218","v4.19.217","v4.19.216","v4.19.215","v4.19.214","v4.19.213","v4.19.212","v4.19.211","v4.19.210","v4.19.209","v4.19.208","v4.19.207","v4.19.206","v4.19.205","v4.19.204","v4.19.203","v4.19.202","v4.19.201","v4.19.200","v4.19.199","v4.19.198","v4.19.197","v4.19.196","v4.19.195","v4.19.194","v4.19.193","v4.19.192","v4.19.191","v4.19.190","v4.19.189","v4.19.188","v4.19.187","v4.19.186","v4.19.185","v4.19.184","v4.19.183","v4.19.182","v4.19.181","v4.19.180","v4.19.179","v4.19.178","v4.19.177","v4.19.176","v5.4.231","v5.4.230","v5.4.229","v5.4.228","v5.4.227","v5.4.226","v5.4.225","v5.4.224","v5.4.223","v5.4.222","v5.4.221","v5.4.220","v5.4.219","v5.4.218","v5.4.217","v5.4.216","v5.4.215","v5.4.214","v5.4.213","v5.4.212","v5.4.211","v5.4.210","v5.4.209","v5.4.208","v5.4.207","v5.4.206","v5.4.205","v5.4.204","v5.4.203","v5.4.202","v5.4.201","v5.4.200","v5.4.199","v5.4.198","v5.4.197","v5.4.196","v5.4.195","v5.4.194","v5.4.193","v5.4.192","v5.4.191","v5.4.190","v5.4.189","v5.4.188","v5.4.187","v5.4.186","v5.4.185","v5.4.184","v5.4.183","v5.4.182","v5.4.181","v5.4.180","v5.4.179","v5.4.178","v5.4.177","v5.4.176","v5.4.175","v5.4.174","v5.4.173","v5.4.172","v5.4.171","v5.4.170","v5.4.169","v5.4.168","v5.4.167","v5.4.166","v5.4.165","v5.4.164","v5.4.163","v5.4.162","v5.4.161","v5.4.160","v5.4.159","v5.4.158","v5.4.157","v5.4.156","v5.4.155","v5.4.154","v5.4.153","v5.4.152","v5.4.151","v5.4.150","v5.4.149","v5.4.148","v5.4.147","v5.4.146","v5.4.145","v5.4.144","v5.4.143","v5.4.142","v5.4.141","v5.4.140","v5.4.139","v5.4.138","v5.4.137","v5.4.136","v5.4.135","v5.4.134","v5.4.133","v5.4.132","v5.4.131","v5.4.130","v5.4.129","v5.4.128","v5.4.127","v5.4.126","v5.4.125","v5.4.124","v5.4.123","v5.4.122","v5.4.121","v5.4.120","v5.4.119","v5.4.118","v5.4.117","v5.4.116","v5.4.115","v5.4.114","v5.4.113","v5.4.112","v5.4.111","v5.4.110","v5.4.109","v5.4.108","v5.4.107","v5.4.106","v5.4.105","v5.4.104","v5.4.103","v5.4.102","v5.4.101","v5.4.100","v5.4.99","v5.4.98","v5.10.167","v5.10.166","v5.10.165","v5.10.164","v5.10.163","v5.10.162","v5.10.161","v5.10.160","v5.10.159","v5.10.158","v5.10.157","v5.10.156","v5.10.155","v5.10.154","v5.10.153","v5.10.152","v5.10.151","v5.10.150","v5.10.149","v5.10.148","v5.10.147","v5.10.146","v5.10.145","v5.10.144","v5.10.143","v5.10.142","v5.10.141","v5.10.140","v5.10.139","v5.10.138","v5.10.137","v5.10.136","v5.10.135","v5.10.134","v5.10.133","v5.10.132","v5.10.131","v5.10.130","v5.10.129","v5.10.128","v5.10.127","v5.10.126","v5.10.125","v5.10.124","v5.10.123","v5.10.122","v5.10.121","v5.10.120","v5.10.119","v5.10.118","v5.10.117","v5.10.116","v5.10.115","v5.10.114","v5.10.113","v5.10.112","v5.10.111","v5.10.110","v5.10.109","v5.10.108","v5.10.107","v5.10.106","v5.10.105","v5.10.104","v5.10.103","v5.10.102","v5.10.101","v5.10.100","v5.10.99","v5.10.98","v5.10.97","v5.10.96","v5.10.95","v5.10.94","v5.10.93","v5.10.92","v5.10.91","v5.10.90","v5.10.89","v5.10.88","v5.10.87","v5.10.86","v5.10.85","v5.10.84","v5.10.83","v5.10.82","v5.10.81","v5.10.80","v5.10.79","v5.10.78","v5.10.77","v5.10.76","v5.10.75","v5.10.74","v5.10.73","v5.10.72","v5.10.71","v5.10.70","v5.10.69","v5.10.68","v5.10.67","v5.10.66","v5.10.65","v5.10.64","v5.10.63","v5.10.62","v5.10.61","v5.10.60","v5.10.59","v5.10.58","v5.10.57","v5.10.56","v5.10.55","v5.10.54","v5.10.53","v5.10.52","v5.10.51","v5.10.50","v5.10.49","v5.10.48","v5.10.47","v5.10.46","v5.10.45","v5.10.44","v5.10.43","v5.10.42","v5.10.41","v5.10.40","v5.10.39","v5.10.38","v5.10.37","v5.10.36","v5.10.35","v5.10.34","v5.10.33","v5.10.32","v5.10.31","v5.10.30","v5.10.29","v5.10.28","v5.10.27","v5.10.26","v5.10.25","v5.10.24","v5.10.23","v5.10.22","v5.10.21","v5.10.20","v5.10.19","v5.10.18","v5.10.17","v5.10.16","v4.9.257","v4.4.257","v4.9.256","v4.4.256","v4.9.255","v4.4.255","v4.9.254","v4.4.254","v4.9.253","v4.4.253","v4.9.252","v4.4.252","v4.9.251","v4.4.251","v4.9.250","v4.4.250","v4.9.249","v4.4.249","v4.9.248","v4.4.248","v4.9.247","v4.4.247","v4.9.246","v4.4.246","v4.9.245","v4.4.245","v4.9.244","v4.4.244","v4.9.243","v4.4.243","v4.9.242","v4.4.242","v4.9.241","v4.4.241","v4.9.240","v4.4.240","v4.4.239","v4.9.239","v4.9.238","v4.4.238","v4.9.237","v4.4.237","v4.9.236","v4.4.236","v4.9.235","v4.4.235","v4.9.234","v4.4.234","v4.9.233","v4.4.233","v4.9.232","v4.4.232","v4.9.231","v4.4.231","v4.9.230","v4.4.230","v4.9.229","v4.4.229","v4.9.228","v4.4.228","v4.9.227","v4.4.227","v4.9.226","v4.4.226","v4.9.225","v4.4.225","v4.9.224","v4.4.224","v4.9.223","v4.4.223","v4.9.222","v4.4.222","v4.9.221","v4.4.221","v4.9.220","v4.4.220","v4.9.219","v4.4.219","v4.9.218","v4.4.218","v4.4.217","v4.9.217","v4.9.216","v4.4.216","v4.9.215","v4.4.215","v4.9.214","v4.4.214","v4.9.213","v4.4.213","v4.9.212","v4.4.212","v4.9.211","v4.4.211","v4.9.210","v4.4.210","v4.9.209","v4.4.209","v4.9.208","v4.4.208","v4.9.207","v4.4.207","v4.9.206","v4.4.206","v4.9.205","v4.4.205","v4.9.204","v4.4.204","v4.9.203","v4.4.203","v4.4.202","v4.9.202","v4.9.201","v4.4.201","v4.9.200","v4.4.200","v4.9.199","v4.4.199","v4.9.198","v4.4.198","v4.9.197","v4.4.197","v4.9.196","v4.4.196","v4.4.195","v4.9.195","v4.9.194","v4.4.194","v4.9.193","v4.4.193","v4.9.192","v4.4.192","v4.9.191","v4.4.191","v4.9.190","v4.4.190","v4.4.189","v4.9.189","v4.9.188","v4.4.188","v4.9.187","v4.4.187","v4.4.186","v4.9.186","v4.4.185","v4.9.185","v4.4.184","v4.9.184","v4.9.183","v4.4.183","v4.4.182","v4.9.182","v4.4.181","v4.9.181","v4.4.180","v4.9.180","v4.9.179","v4.9.178","v4.9.177","v4.4.179","v4.9.176","v4.9.175","v4.9.174","v4.9.173","v4.9.172","v4.9.171","v4.9.170","v4.4.178","v4.9.169","v4.9.168","v4.9.167","v4.9.166","v4.4.177","v4.9.165","v4.9.164","v4.4.176","v4.9.163","v4.9.162","v4.9.161","v4.9.160","v4.9.159","v4.4.175","v4.9.158","v4.4.174","v4.9.157","v4.9.156","v4.9.155","v4.4.173","v4.4.172","v4.9.154","v4.9.153","v4.4.171","v4.9.152","v4.9.151","v4.4.170","v4.9.150","v4.4.169","v4.9.149","v4.9.148","v4.9.147","v4.9.146","v4.4.168","v4.4.167","v4.9.145","v4.4.166","v4.9.144","v4.9.143","v4.9.142","v4.4.165","v4.9.141","v4.9.140","v4.4.164","v4.9.139","v4.9.138","v4.4.163","v4.9.137","v4.9.136","v4.9.135","v4.4.162","v4.4.161","v4.9.134","v4.9.133","v4.9.132","v4.4.160","v4.9.131","v4.4.159","v4.9.130","v4.4.158","v4.9.129","v4.9.128","v4.4.157","v4.4.156","v4.9.127","v4.9.126","v4.4.155","v4.4.154","v4.9.125","v4.9.124","v4.4.153","v4.4.152","v4.4.151","v4.9.123","v4.4.150","v4.9.122","v4.9.121","v4.4.149","v4.9.120","v4.4.148","v4.9.119","v4.4.147","v4.4.146","v4.9.118","v4.4.145","v4.9.117","v4.9.116","v4.9.115","v4.4.144","v4.9.114","v4.4.143","v4.9.113","v4.4.142","v4.4.141","v4.9.112","v4.4.140","v4.9.111","v4.4.139","v4.9.110","v4.4.138","v4.9.109","v4.4.137","v4.9.108","v4.9.107","v4.4.136","v4.4.135","v4.9.106","v4.9.105","v4.9.104","v4.4.134","v4.9.103","v4.4.133","v4.4.132","v4.9.102","v4.9.101","v4.9.100","v4.9.99","v4.4.131","v4.9.98","v4.4.130","v4.9.97","v4.9.96","v4.4.129","v4.9.95","v4.4.128","v4.9.94","v4.4.127","v4.9.93","v4.9.92","v4.4.126","v4.4.125","v4.9.91","v4.4.124","v4.9.90","v4.9.89","v4.4.123","v4.4.122","v4.9.88","v4.9.87","v4.4.121","v4.9.86","v4.4.120","v4.9.85","v4.4.119","v4.9.84","v4.4.118","v4.9.83","v4.4.117","v4.4.116","v4.9.82","v4.9.81","v4.4.115","v4.9.80","v4.9.79","v4.4.114","v4.9.78","v4.4.113","v4.9.77","v4.4.112","v4.9.76","v4.4.111","v4.9.75","v4.4.110","v4.9.74","v4.4.109","v4.9.73","v4.4.108","v4.9.72","v4.9.71","v4.4.107","v4.9.70","v4.4.106","v4.9.69","v4.4.105","v4.9.68","v4.9.67","v4.4.104","v4.9.66","v4.4.103","v4.9.65","v4.4.102","v4.4.101","v4.9.64","v4.4.100","v4.9.63","v4.4.99","v4.9.62","v4.4.98","v4.4.97","v4.9.61","v4.9.60","v4.4.96","v4.9.59","v4.4.95","v4.9.58","v4.4.94","v4.9.57","v4.4.93","v4.9.56","v4.4.92","v4.9.55","v4.9.54","v4.4.91","v4.9.53","v4.4.90","v4.9.52","v4.4.89","v4.9.51","v4.4.88","v4.9.50","v4.9.49","v4.4.87","v4.9.48","v4.9.47","v4.4.86","v4.9.46","v4.4.85","v4.9.45","v4.4.84","v4.9.44","v4.4.83","v4.9.43","v4.4.82","v4.9.42","v4.4.81","v4.4.80","v4.9.41","v4.4.79","v4.9.40","v4.9.39","v4.4.78","v4.4.77","v4.9.38","v4.9.37","v4.4.76","v4.9.36","v4.9.35","v4.4.75","v4.9.34","v4.4.74","v4.4.73","v4.9.33","v4.9.32","v4.4.72","v4.9.31","v4.4.71","v4.9.30","v4.4.70","v4.9.29","v4.4.69","v4.9.28","v4.4.68","v4.9.27","v4.4.67","v4.9.26","v4.4.66","v4.9.25","v4.4.65","v4.4.64","v4.9.24","v4.4.63","v4.9.23","v4.4.62","v4.4.61","v4.9.22","v4.9.21","v4.4.60","v4.4.59","v4.9.20","v4.9.19","v4.4.58","v4.9.18","v4.4.57","v4.9.17","v4.4.56","v4.9.16","v4.4.55","v4.9.15","v4.4.54","v4.9.14","v4.4.53","v4.9.13","v4.4.52","v4.9","v4.9.12","v4.4.51","v4.9.11","v4.4.50","v4.4.49","v4.9.10","v4.9.9","v4.4.48","v4.9.8","v4.4.47","v4.9.7","v4.4.46","v4.9.6","v4.4.45","v4.9.5","v4.4.44","v4.9.4","v4.4.43","v4.9.3","v4.4.42","v4.9.2","v4.4.41","v4.9.1","v4.4.40","v4.4.39","v4.9-rc7","v4.9-rc6","v4.9-rc8","v4.4.38","v4.9-rc1","v4.4.37","v4.9-rc5","v4.4.36","v4.9-rc3","v4.4.35","v4.9-rc4","v4.4.34","v4.9-rc2","v4.4.33","v4.4.32","v4.4.31","v4.4.30","v4.8","v4.4.29","v4.4.28","v4.4.27","v4.4.26","v4.4.25","v4.4.24","v4.4.23","v4.8-rc8","v4.8-rc2","v4.8-rc1","v4.8-rc7","v4.4.22","v4.8-rc6","v4.8-rc5","v4.4.21","v4.8-rc4","v4.4.20","v4.8-rc3","v4.7","v4.4.19","v4.4.18","v4.4.17","v4.4.16","v4.7-rc4","v4.7-rc2","v4.4.15","v4.7-rc1","v4.7-rc7","v4.7-rc6","v4.7-rc3","v4.4.14","v4.7-rc5","v4.4.13","v4.6","v4.6-rc1","v4.4.12","v4.4.11","v4.6-rc6","v4.6-rc4","v4.6-rc7","v4.4.10","v4.6-rc5","v4.5-rc4","v4.6-rc2","v4.4.9","v4.6-rc3","v4.4.8","v4.5","v4.4.7","v4.4.6","v4.4","v4.5-rc1","v4.5-rc6","v4.4.5","v4.5-rc2","v4.5-rc7","v4.5-rc5","v4.4.4","v4.5-rc3","v4.4.3","v4.4.2","v4.4.1","v4.4-rc1","v4.4-rc2","v4.4-rc8","v4.4-rc3","v4.4-rc7","v4.4-rc5","v4.4-rc6","v4.4-rc4","v4.3","v4.3-rc1","v4.3-rc6","v4.3-rc4","v4.3-rc2","v4.3-rc7","v4.3-rc5","v4.3-rc3","v4.2","v4.2-rc2","v4.2-rc1","v4.2-rc8","v4.2-rc4","v4.2-rc6","v4.2-rc7","v4.0-rc5","v4.2-rc5","v4.2-rc3","v4.1-rc2","v4.1","v4.1-rc1","v4.1-rc8","v4.1-rc7","v4.1-rc6","v4.1-rc3","v4.1-rc4","v4.0","v4.1-rc5","v4.0-rc1","v4.0-rc2","v4.0-rc7","v4.0-rc3","v4.0-rc6","v4.0-rc4","v3.19","v3.19-rc7","v3.19-rc5","v3.19-rc1","v3.19-rc6","v3.19-rc4","v3.18-rc1","v3.19-rc3","v3.19-rc2","v3.18","v3.18-rc7","v3.18-rc6","v3.18-rc2","v3.18-rc3","v3.18-rc4","v3.18-rc5","v3.17","v3.17-rc1","v3.17-rc7","v3.17-rc2","v3.17-rc4","v3.16","v3.17-rc5","v3.17-rc6","v3.17-rc3","v3.16-rc7","v3.16-rc1","v3.16-rc3","v3.16-rc5","v3.16-rc6","v3.16-rc2","v3.16-rc4","v3.13","v3.15","v3.15-rc5","v3.15-rc8","v3.15-rc1","v3.15-rc6","v3.15-rc3","v3.15-rc7","v3.15-rc2","v3.15-rc4","v3.14","v3.14-rc4","v3.14-rc8","v3.14-rc7","v3.14-rc6","v3.14-rc1","v3.14-rc2","v3.14-rc5","v3.14-rc3","v3.13-rc6","v3.13-rc8","v3.12","v3.13-rc7","v3.13-rc1","v3.13-rc4","v3.13-rc3","v3.13-rc5","v3.13-rc2","v3.12-rc7","v3.12-rc3","v3.12-rc6","v3.12-rc1","v3.12-rc5","v3.11","v3.12-rc2","v3.12-rc4","v3.11-rc7","v3.11-rc2","v3.11-rc5","v3.11-rc1","v3.11-rc3","v3.11-rc4","v3.11-rc6","v3.10-rc2","v3.10","v3.10-rc7","v3.10-rc6","v3.10-rc1","v3.10-rc5","v3.10-rc3","v3.10-rc4","v3.9","v3.9-rc2","v3.9-rc7","v3.9-rc8","v3.9-rc3","v3.9-rc6","v3.9-rc5","v3.9-rc4","v3.9-rc1","v3.8","v3.8-rc7","v3.8-rc6","v3.8-rc5","v3.8-rc2","v3.8-rc1","v3.8-rc3","v3.8-rc4","v3.7","v3.7-rc1","v3.6","v3.7-rc6","v3.7-rc7","v3.7-rc3","v3.7-rc8","v3.7-rc2","v3.7-rc4","v3.7-rc5","v3.6-rc7","v3.6-rc1","v3.5-rc3","v3.6-rc6","v3.6-rc5","v3.5","v3.6-rc3","v3.6-rc4","v3.6-rc2","v3.4-rc4","v3.5-rc7","v3.5-rc5","v3.5-rc6","v3.5-rc2","v3.5-rc1","v3.5-rc4","v3.4","v3.4-rc2","v3.4-rc1","v3.4-rc7","v3.4-rc6","v3.4-rc3","v3.4-rc5","v3.3","v3.3-rc6","v3.3-rc3","v3.3-rc7","v3.3-rc2","v3.3-rc5","v3.2","v3.3-rc4","v3.3-rc1","v3.2-rc4","v3.2-rc7","v3.2-rc6","v3.2-rc5","v3.2-rc3","v3.1","v3.2-rc2","v3.2-rc1","v3.1-rc1","v3.1-rc9","v3.1-rc8","v3.1-rc10","v3.1-rc7","v3.1-rc3","v3.1-rc2","v3.1-rc4","v3.1-rc5","v3.0","v3.1-rc6","v3.0-rc7","v3.0-rc4","v3.0-rc6","v3.0-rc5","v3.0-rc3","v3.0-rc1","v2.6.39","v3.0-rc2","v2.6.38","v2.6.39-rc2","v2.6.39-rc7","v2.6.39-rc5","v2.6.39-rc1","v2.6.38-rc7","v2.6.39-rc6","v2.6.39-rc4","v2.6.39-rc3","v2.6.37","v2.6.38-rc1","v2.6.38-rc8","v2.6.38-rc2","v2.6.38-rc6","v2.6.38-rc5","v2.6.38-rc4","v2.6.38-rc3","v2.6.37-rc4","v2.6.37-rc2","v2.6.36","v2.6.37-rc5","v2.6.37-rc8","v2.6.37-rc7","v2.6.37-rc6","v2.6.37-rc1","v2.6.37-rc3","v2.6.36-rc6","v2.6.35-rc4","v2.6.36-rc8","v2.6.35","v2.6.36-rc7","v2.6.36-rc3","v2.6.36-rc5","v2.6.36-rc4","v2.6.36-rc2","v2.6.36-rc1","v2.6.35-rc5","v2.6.35-rc6","v2.6.34","v2.6.35-rc3","v2.6.35-rc1","v2.6.35-rc2","v2.6.34-rc7","v2.6.34-rc6","v2.6.34-rc5","v2.6.34-rc4","v2.6.34-rc3","v2.6.34-rc2","v2.6.34-rc1","v2.6.33","v2.6.33-rc6","v2.6.33-rc8","v2.6.33-rc4","v2.6.33-rc5","v2.6.33-rc3","v2.6.33-rc7","v2.6.33-rc2","v2.6.32","v2.6.33-rc1","v2.6.32-rc8","v2.6.32-rc7","v2.6.32-rc6","v2.6.31","v2.6.32-rc5","v2.6.32-rc4","v2.6.32-rc2","v2.6.32-rc1","v2.6.32-rc3","v2.6.31-rc9","v2.6.31-rc1","v2.6.31-rc7","v2.6.31-rc8","v2.6.31-rc6","v2.6.30-rc6","v2.6.30","v2.6.31-rc4","v2.6.31-rc5","v2.6.31-rc3","v2.6.31-rc2","v2.6.30-rc7","v2.6.30-rc8","v2.6.30-rc5","v2.6.30-rc3","v2.6.30-rc4","v2.6.30-rc1","v2.6.30-rc2","v2.6.29","v2.6.29-rc8","v2.6.29-rc7","v2.6.29-rc5","v2.6.29-rc1","v2.6.29-rc6","v2.6.29-rc4","v2.6.29-rc3","v2.6.29-rc2","v2.6.28","v2.6.28-rc7","v2.6.28-rc9","v2.6.28-rc8","v2.6.28-rc6","v2.6.28-rc5","v2.6.28-rc4","v2.6.28-rc2","v2.6.28-rc3","v2.6.28-rc1","v2.6.27","v2.6.27-rc7","v2.6.27-rc9","v2.6.27-rc8","v2.6.27-rc5","v2.6.27-rc6","v2.6.27-rc4","v2.6.27-rc1","v2.6.27-rc3","v2.6.27-rc2","v2.6.26","v2.6.26-rc9","v2.6.26-rc8","v2.6.26-rc3","v2.6.26-rc7","v2.6.26-rc6","v2.6.26-rc5","v2.6.26-rc4","v2.6.26-rc2","v2.6.26-rc1","v2.6.25","v2.6.25-rc7","v2.6.25-rc9","v2.6.25-rc8","v2.6.25-rc6","v2.6.25-rc5","v2.6.25-rc3","v2.6.25-rc4","v2.6.24","v2.6.25-rc2","v2.6.25-rc1","v2.6.24-rc8","v2.6.24-rc7","v2.6.24-rc6","v2.6.24-rc5","v2.6.24-rc4","v2.6.24-rc3","v2.6.24-rc2","v2.6.24-rc1","v2.6.23","v2.6.23-rc9","v2.6.23-rc8","v2.6.23-rc5","v2.6.23-rc7","v2.6.23-rc6","v2.6.23-rc4","v2.6.23-rc3","v2.6.23-rc2","v2.6.23-rc1","v2.6.22","v2.6.22-rc7","v2.6.22-rc6","v2.6.22-rc5","v2.6.22-rc4","v2.6.22-rc3","v2.6.22-rc2","v2.6.22-rc1","v2.6.21","v2.6.21-rc7","v2.6.21-rc6","v2.6.21-rc5","v2.6.21-rc4","v2.6.21-rc3","v2.6.21-rc2","v2.6.21-rc1","v2.6.20-rc7","v2.6.20-rc6","v2.6.20-rc5","v2.6.20-rc4","v2.6.20-rc3","v2.6.20-rc1","v2.6.20-rc2","v2.6.19-rc2","v2.6.18","v2.6.19-rc1","v2.6.18-rc6","v2.6.18-rc5","v2.6.18-rc3","v2.6.18-rc2","v2.6.18-rc1","v2.6.17","v2.6.17-rc4","v2.6.17-rc6","v2.6.17-rc5","v2.6.17-rc3","v2.6.17-rc2","v2.6.17-rc1","v2.6.16","v2.6.16-rc6","v2.6.16-rc4","v2.6.16-rc5","v2.6.16-rc3","v2.6.16-rc2","v2.6.16-rc1","v2.6.15-rc7","v2.6.15-rc5","v2.6.15-rc4","v2.6.15-rc2","v2.6.15-rc1","v2.6.14-rc3","v2.6.14-rc2","v2.6.14-rc1","v2.6.13","v2.6.13-rc7","v2.6.13-rc6","v2.6.13-rc5","v2.6.13-rc3","v2.6.13-rc4","v2.6.13-rc2","v2.6.13-rc1","v2.6.12-rc4","v2.6.12-rc3","v2.6.12-rc2"],"database_specific":{"source":"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2023-52933.json"}},{"package":{"name":"Kernel","ecosystem":"Linux"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"4.14.306"}]},{"type":"ECOSYSTEM","events":[{"introduced":"4.15.0"},{"fixed":"4.19.273"}]},{"type":"ECOSYSTEM","events":[{"introduced":"4.20.0"},{"fixed":"5.4.232"}]},{"type":"ECOSYSTEM","events":[{"introduced":"5.5.0"},{"fixed":"5.10.168"}]},{"type":"ECOSYSTEM","events":[{"introduced":"5.11.0"},{"fixed":"5.15.93"},{"fixed":"6.1.11"}]}],"database_specific":{"source":"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2023-52933.json"}}],"references":[{"type":"WEB","url":"https://git.kernel.org/stable/c/1369322c1de52c7b9b988b95c9903110a4566778"},{"type":"WEB","url":"https://git.kernel.org/stable/c/5c4d4a83bf1a862d80c1efff1c6e3ce33b501e2e"},{"type":"WEB","url":"https://git.kernel.org/stable/c/7fe583c9bec10cd4b76231c51b37f3e4ca646e01"},{"type":"WEB","url":"https://git.kernel.org/stable/c/997bed0f3cde78a3e639d624985bf4a95cf767e6"},{"type":"WEB","url":"https://git.kernel.org/stable/c/a7da7d01ac5ce9b369a1ac70e1197999cc6c9686"},{"type":"WEB","url":"https://git.kernel.org/stable/c/b38c3e9e0adc01956cc3e5a52e4d3f92f79d88e2"},{"type":"WEB","url":"https://git.kernel.org/stable/c/f65c4bbbd682b0877b669828b4e033b8d5d0a2dc"},{"type":"ADVISORY","url":"https://github.com/CVEProject/cvelistV5/tree/main/cves/2023/52xxx/CVE-2023-52933.json"},{"type":"ADVISORY","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-52933"},{"type":"PACKAGE","url":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"}],"database_specific":{"cna_assigner":"Linux","osv_generated_from":"https://github.com/CVEProject/cvelistV5/tree/main/cves/2023/52xxx/CVE-2023-52933.json"}}