<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet href="/static/style.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <id>https://db.gcve.eu/sightings/feed</id>
  <title>Most recent sightings.</title>
  <updated>2026-06-08T17:49:41.548820+00:00</updated>
  <author>
    <name>Vulnerability-Lookup</name>
    <email>info@gcve.eu</email>
  </author>
  <link href="https://db.gcve.eu" rel="alternate"/>
  <generator uri="https://lkiesow.github.io/python-feedgen" version="1.0.0">python-feedgen</generator>
  <subtitle>Contains only the most 10 recent sightings.</subtitle>
  <entry>
    <id>https://db.gcve.eu/sighting/420a3bef-e0e0-4fdf-9e16-a3530af70922/export</id>
    <title>420a3bef-e0e0-4fdf-9e16-a3530af70922</title>
    <updated>2026-06-08T17:49:41.699923+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "420a3bef-e0e0-4fdf-9e16-a3530af70922", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50049", "type": "published-proof-of-concept", "source": "https://t.me/DarkWebInformer_CVEAlerts/16645", "content": "\ud83d\udd17 DarkWebInformer.com - Cyber Threat Intelligence\n\ud83d\udccc CVE ID: CVE-2024-50049\n\ud83d\udd25 CVSS Score: N/A\n\ud83d\udd39 Description: In the Linux kernel, the following vulnerability has been resolved:\n\ndrm/amd/display: Check null pointer before dereferencing se\n\n[WHAT &amp;amp; HOW]\nse is null checked previously in the same function, indicating\nit might be null; therefore, it must be checked when used again.\n\nThis fixes 1 FORWARD_NULL issue reported by Coverity.\n\ud83d\udccf Published: 2024-10-21T19:39:45.821Z\n\ud83d\udccf Modified: 2025-05-16T07:25:12.029Z\n\ud83d\udd17 References:\n1. https://git.kernel.org/stable/c/f4149eec960110ffd5bcb161075dd9f1d7773075\n2. https://git.kernel.org/stable/c/c643ef59390e49f1dfab35e8ea65f5db5e527d64\n3. https://git.kernel.org/stable/c/97a79933fb08a002ba9400d1a7a5df707ecdb896\n4. https://git.kernel.org/stable/c/65b2d49e55fe13ae56da3a7685bdccadca31134a\n5. https://git.kernel.org/stable/c/a9b4fd1946678fa0e069e442f3c5a7d3fa446fac\n6. https://git.kernel.org/stable/c/ff599ef6970ee000fa5bc38d02fa5ff5f3fc7575", "creation_timestamp": "2025-05-16T07:33:56.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/420a3bef-e0e0-4fdf-9e16-a3530af70922/export"/>
    <published>2025-05-16T07:33:56+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/b823ca37-09ab-482c-8b94-f6414a444b18/export</id>
    <title>b823ca37-09ab-482c-8b94-f6414a444b18</title>
    <updated>2026-06-08T17:49:41.699857+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "b823ca37-09ab-482c-8b94-f6414a444b18", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50048", "type": "published-proof-of-concept", "source": "https://t.me/DarkWebInformer_CVEAlerts/16646", "content": "\ud83d\udd17 DarkWebInformer.com - Cyber Threat Intelligence\n\ud83d\udccc CVE ID: CVE-2024-50048\n\ud83d\udd25 CVSS Score: N/A\n\ud83d\udd39 Description: In the Linux kernel, the following vulnerability has been resolved:\n\nfbcon: Fix a NULL pointer dereference issue in fbcon_putcs\n\nsyzbot has found a NULL pointer dereference bug in fbcon.\nHere is the simplified C reproducer:\n\nstruct param {\n uint8_t type;\n struct tiocl_selection ts;\n};\n\nint main()\n{\n struct fb_con2fbmap con2fb;\n struct param param;\n\n int fd = open(\"/dev/fb1\", 0, 0);\n\n con2fb.console = 0x19;\n con2fb.framebuffer = 0;\n ioctl(fd, FBIOPUT_CON2FBMAP, &amp;amp;con2fb);\n\n param.type = 2;\n param.ts.xs = 0; param.ts.ys = 0;\n param.ts.xe = 0; param.ts.ye = 0;\n param.ts.sel_mode = 0;\n\n int fd1 = open(\"/dev/tty1\", O_RDWR, 0);\n ioctl(fd1, TIOCLINUX, &amp;amp;param);\n\n con2fb.console = 1;\n con2fb.framebuffer = 0;\n ioctl(fd, FBIOPUT_CON2FBMAP, &amp;amp;con2fb);\n\n return 0;\n}\n\nAfter calling ioctl(fd1, TIOCLINUX, &amp;amp;param), the subsequent ioctl(fd, FBIOPUT_CON2FBMAP, &amp;amp;con2fb)\ncauses the kernel to follow a different execution path:\n\n set_con2fb_map\n  -&amp;gt; con2fb_init_display\n   -&amp;gt; fbcon_set_disp\n    -&amp;gt; redraw_screen\n     -&amp;gt; hide_cursor\n      -&amp;gt; clear_selection\n       -&amp;gt; highlight\n        -&amp;gt; invert_screen\n         -&amp;gt; do_update_region\n          -&amp;gt; fbcon_putcs\n           -&amp;gt; ops-&amp;gt;putcs\n\nSince ops-&amp;gt;putcs is a NULL pointer, this leads to a kernel panic.\nTo prevent this, we need to call set_blitting_type() within set_con2fb_map()\nto properly initialize ops-&amp;gt;putcs.\n\ud83d\udccf Published: 2024-10-21T19:39:45.146Z\n\ud83d\udccf Modified: 2025-05-16T07:25:10.799Z\n\ud83d\udd17 References:\n1. https://git.kernel.org/stable/c/8266ae6eafdcd5a3136592445ff4038bbc7ee80e\n2. https://git.kernel.org/stable/c/f7fb5dda555344529ce584ff7a28b109528d2f1b\n3. https://git.kernel.org/stable/c/e5c2dba62996a3a6eeb34bd248b90fc69c5a6a1b\n4. https://git.kernel.org/stable/c/5b97eebcce1b4f3f07a71f635d6aa3af96c236e7", "creation_timestamp": "2025-05-16T07:33:57.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/b823ca37-09ab-482c-8b94-f6414a444b18/export"/>
    <published>2025-05-16T07:33:57+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/355f4c2f-2fd6-4610-b8a5-9f47da204c58/export</id>
    <title>355f4c2f-2fd6-4610-b8a5-9f47da204c58</title>
    <updated>2026-06-08T17:49:41.699807+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "355f4c2f-2fd6-4610-b8a5-9f47da204c58", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50049", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/355f4c2f-2fd6-4610-b8a5-9f47da204c58/export"/>
    <published>2025-08-14T10:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/071a79b5-2768-4b9b-91ed-afd10a63e65d/export</id>
    <title>071a79b5-2768-4b9b-91ed-afd10a63e65d</title>
    <updated>2026-06-08T17:49:41.699756+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "071a79b5-2768-4b9b-91ed-afd10a63e65d", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50044", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/071a79b5-2768-4b9b-91ed-afd10a63e65d/export"/>
    <published>2025-08-14T10:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/ef212dd7-1ed2-4303-9da9-acc1a700f898/export</id>
    <title>ef212dd7-1ed2-4303-9da9-acc1a700f898</title>
    <updated>2026-06-08T17:49:41.699707+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "ef212dd7-1ed2-4303-9da9-acc1a700f898", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50046", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/ef212dd7-1ed2-4303-9da9-acc1a700f898/export"/>
    <published>2025-08-14T10:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/a5e2dbfa-fc79-4c9e-8d58-d95d9c2bfa3f/export</id>
    <title>a5e2dbfa-fc79-4c9e-8d58-d95d9c2bfa3f</title>
    <updated>2026-06-08T17:49:41.699652+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "a5e2dbfa-fc79-4c9e-8d58-d95d9c2bfa3f", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50045", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/a5e2dbfa-fc79-4c9e-8d58-d95d9c2bfa3f/export"/>
    <published>2025-08-14T10:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/89750ce3-e52f-4f0c-9ee0-aa28b414ad1b/export</id>
    <title>89750ce3-e52f-4f0c-9ee0-aa28b414ad1b</title>
    <updated>2026-06-08T17:49:41.699584+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "89750ce3-e52f-4f0c-9ee0-aa28b414ad1b", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50040", "type": "seen", "source": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-226-07", "content": "", "creation_timestamp": "2025-08-14T10:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/89750ce3-e52f-4f0c-9ee0-aa28b414ad1b/export"/>
    <published>2025-08-14T10:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/b47445e4-5b51-4bfb-b49f-227e4301c244/export</id>
    <title>b47445e4-5b51-4bfb-b49f-227e4301c244</title>
    <updated>2026-06-08T17:49:41.698953+00:00</updated>
    <author>
      <name>cedric</name>
      <uri>https://db.gcve.eu/user/cedric</uri>
    </author>
    <content>{"uuid": "b47445e4-5b51-4bfb-b49f-227e4301c244", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "2a075640-a300-48a4-bb44-bc6130783b9b", "vulnerability": "CVE-2024-50047", "type": "seen", "source": "https://vulnerability.circl.lu/bundle/816dcc8e-f25a-4895-9b59-1bbd9caeccb8", "content": "", "creation_timestamp": "2025-12-03T14:14:49.267740Z"}</content>
    <link href="https://db.gcve.eu/sighting/b47445e4-5b51-4bfb-b49f-227e4301c244/export"/>
    <published>2025-12-03T14:14:49.267740+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/6e8742b1-6921-44fb-ae61-a60c8a28295c/export</id>
    <title>6e8742b1-6921-44fb-ae61-a60c8a28295c</title>
    <updated>2026-06-08T17:49:41.698869+00:00</updated>
    <author>
      <name>sync_user</name>
      <uri>https://db.gcve.eu/user/sync_user</uri>
    </author>
    <content>{"uuid": "6e8742b1-6921-44fb-ae61-a60c8a28295c", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "4f29edb9-4c4b-44ca-b041-9b050656b6ae", "vulnerability": "CVE-2024-50047", "type": "seen", "source": "https://bsky.app/profile/Ubuntu.activitypub.awakari.com.ap.brid.gy/post/3mgcppw5l6dj2", "content": "", "creation_timestamp": "2026-03-05T11:41:46.971311Z"}</content>
    <link href="https://db.gcve.eu/sighting/6e8742b1-6921-44fb-ae61-a60c8a28295c/export"/>
    <published>2026-03-05T11:41:46.971311+00:00</published>
  </entry>
  <entry>
    <id>https://db.gcve.eu/sighting/7765b2ce-816f-4603-a09c-6dbd99ea0c3c/export</id>
    <title>7765b2ce-816f-4603-a09c-6dbd99ea0c3c</title>
    <updated>2026-06-08T17:49:41.697735+00:00</updated>
    <author>
      <name>sync_user</name>
      <uri>https://db.gcve.eu/user/sync_user</uri>
    </author>
    <content>{"uuid": "7765b2ce-816f-4603-a09c-6dbd99ea0c3c", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "4f29edb9-4c4b-44ca-b041-9b050656b6ae", "vulnerability": "CVE-2024-50048", "type": "seen", "source": "https://www.cert.ssi.gouv.fr/avis/CERTFR-2026-AVI-0316/", "content": "", "creation_timestamp": "2026-03-19T00:00:00.000000Z"}</content>
    <link href="https://db.gcve.eu/sighting/7765b2ce-816f-4603-a09c-6dbd99ea0c3c/export"/>
    <published>2026-03-19T00:00:00+00:00</published>
  </entry>
</feed>
