{"vulnerability": "CVE-2024-4986", "sightings": [{"uuid": "cf74bc31-e77f-4e32-9240-3d526bf48e05", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49868", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}, {"uuid": "68e167fc-3b81-4e58-af92-36d157efc3fa", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49860", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}, {"uuid": "1d8ca8e1-03bf-4dd4-81bf-20b0f2b6b6f7", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49863", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}, {"uuid": "93b8723d-a447-4cfa-b37f-70afc21c42d4", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49867", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}, {"uuid": "53c55a26-29e5-494d-8c93-6d0247803101", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "4f29edb9-4c4b-44ca-b041-9b050656b6ae", "vulnerability": "CVE-2024-49861", "type": "seen", "source": "https://www.cert.ssi.gouv.fr/avis/CERTFR-2026-AVI-0316/", "content": "", "creation_timestamp": "2026-03-19T00:00:00.000000Z"}, {"uuid": "81f996cf-218b-4370-b8c1-500c2b469d09", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49861", "type": "seen", "source": "https://vulnerability.circl.lu/bundle/816dcc8e-f25a-4895-9b59-1bbd9caeccb8", "content": "", "creation_timestamp": "2025-12-03T14:14:49.267740Z"}, {"uuid": "b5562936-518d-4c82-91ab-bfb8d82122e5", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49863", "type": "seen", "source": "https://vulnerability.circl.lu/bundle/816dcc8e-f25a-4895-9b59-1bbd9caeccb8", "content": "", "creation_timestamp": "2025-12-03T14:14:49.267740Z"}, {"uuid": "1616cef9-8f7d-49a1-b9c3-9fd9f9086edc", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-4986", "type": "seen", "source": "https://t.me/BleepingComputer/20009", "content": "\u200aGitHub warns of SAML auth bypass flaw in Enterprise Server\n\nGitHub has fixed a\u00a0maximum severity (CVSS v4 score: 10.0) authentication bypass vulnerability tracked as CVE-2024-4986, which\u00a0impacts GitHub Enterprise Server (GHES) instances using SAML single sign-on (SSO) authentication. [...]\n\nhttps://www.bleepingcomputer.com/news/security/github-warns-of-saml-auth-bypass-flaw-in-enterprise-server/", "creation_timestamp": "2024-05-21T18:19:13.000000Z"}, {"uuid": "c51dffd9-f5fb-4218-98b8-feace6bcdc65", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49861", "type": "seen", "source": "https://t.me/cvedetector/8487", "content": "{\n  \"Source\": \"CVE FEED\",\n  \"Title\": \"CVE-2024-49861 - Linux Kernel BPF Off-Path Write Weakness Cisco\", \n  \"Content\": \"CVE ID : CVE-2024-49861 \nPublished : Oct. 21, 2024, 1:15 p.m. | 41\u00a0minutes ago \nDescription : In the Linux kernel, the following vulnerability has been resolved:  \n  \nbpf: Fix helper writes to read-only maps  \n  \nLonial found an issue that despite user- and BPF-side frozen BPF map  \n(like in case of .rodata), it was still possible to write into it from  \na BPF program side through specific helpers having ARG_PTR_TO_{LONG,INT}  \nas arguments.  \n  \nIn check_func_arg() when the argument is as mentioned, the meta-&gt;raw_mode  \nis never set. Later, check_helper_mem_access(), under the case of  \nPTR_TO_MAP_VALUE as register base type, it assumes BPF_READ for the  \nsubsequent call to check_map_access_type() and given the BPF map is  \nread-only it succeeds.  \n  \nThe helpers really need to be annotated as ARG_PTR_TO_{LONG,INT} | MEM_UNINIT  \nwhen results are written into them as opposed to read out of them. The  \nlatter indicates that it's okay to pass a pointer to uninitialized memory  \nas the memory is written to anyway.  \n  \nHowever, ARG_PTR_TO_{LONG,INT} is a special case of ARG_PTR_TO_FIXED_SIZE_MEM  \njust with additional alignment requirement. So it is better to just get  \nrid of the ARG_PTR_TO_{LONG,INT} special cases altogether and reuse the  \nfixed size memory types. For this, add MEM_ALIGNED to additionally ensure  \nalignment given these helpers write directly into the args via * = val.  \nThe .arg*_size has been initialized reflecting the actual sizeof(*).  \n  \nMEM_ALIGNED can only be used in combination with MEM_FIXED_SIZE annotated  \nargument types, since in !MEM_FIXED_SIZE cases the verifier does not know  \nthe buffer size a priori and therefore cannot blindly write * = val. \nSeverity: 0.0 | NA \nVisit the link for more details, such as CVSS details, affected products, timeline, and more...\",\n  \"Detection Date\": \"21 Oct 2024\",\n  \"Type\": \"Vulnerability\"\n}\n\ud83d\udd39 t.me/cvedetector \ud83d\udd39", "creation_timestamp": "2024-10-21T16:00:56.000000Z"}, {"uuid": "b80ac473-e77f-4f41-b9ab-a538cb436df3", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49860", "type": "seen", "source": "https://t.me/cvedetector/8483", "content": "{\n  \"Source\": \"CVE FEED\",\n  \"Title\": \"CVE-2024-49860 - Citrix Hypervisor Buffer Over-read\", \n  \"Content\": \"CVE ID : CVE-2024-49860 \nPublished : Oct. 21, 2024, 1:15 p.m. | 41\u00a0minutes ago \nDescription : In the Linux kernel, the following vulnerability has been resolved:  \n  \nACPI: sysfs: validate return type of _STR method  \n  \nOnly buffer objects are valid return values of _STR.  \n  \nIf something else is returned description_show() will access invalid  \nmemory. \nSeverity: 0.0 | NA \nVisit the link for more details, such as CVSS details, affected products, timeline, and more...\",\n  \"Detection Date\": \"21 Oct 2024\",\n  \"Type\": \"Vulnerability\"\n}\n\ud83d\udd39 t.me/cvedetector \ud83d\udd39", "creation_timestamp": "2024-10-21T16:00:53.000000Z"}, {"uuid": "92207be7-637e-4109-9f68-a673a9972cfa", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-49862", "type": "seen", "source": "https://t.me/cvedetector/8486", "content": "{\n  \"Source\": \"CVE FEED\",\n  \"Title\": \"CVE-2024-49862 - \"Intel Powercap Off-by-One Array Index Vulnerability\"\", \n  \"Content\": \"CVE ID : CVE-2024-49862 \nPublished : Oct. 21, 2024, 1:15 p.m. | 41\u00a0minutes ago \nDescription : In the Linux kernel, the following vulnerability has been resolved:  \n  \npowercap: intel_rapl: Fix off by one in get_rpi()  \n  \nThe rp-&gt;priv-&gt;rpi array is either rpi_msr or rpi_tpmi which have  \nNR_RAPL_PRIMITIVES number of elements.  Thus the &gt; needs to be &gt;=  \nto prevent an off by one access. \nSeverity: 0.0 | NA \nVisit the link for more details, such as CVSS details, affected products, timeline, and more...\",\n  \"Detection Date\": \"21 Oct 2024\",\n  \"Type\": \"Vulnerability\"\n}\n\ud83d\udd39 t.me/cvedetector \ud83d\udd39", "creation_timestamp": "2024-10-21T16:00:55.000000Z"}]}