<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet href="/static/style.xsl" type="text/xsl"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title>Most recent sightings.</title>
    <link>https://vulnerability.circl.lu</link>
    <description>Contains only the most 10 recent sightings.</description>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>python-feedgen</generator>
    <language>en</language>
    <lastBuildDate>Fri, 29 May 2026 16:19:15 +0000</lastBuildDate>
    <item>
      <title>c5303120-9d2e-4ecc-9ad5-5018e1c262c5</title>
      <link>https://vulnerability.circl.lu/sighting/c5303120-9d2e-4ecc-9ad5-5018e1c262c5/export</link>
      <description>{"uuid": "c5303120-9d2e-4ecc-9ad5-5018e1c262c5", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://bsky.app/profile/cve-notifications.bsky.social/post/3lhtk5zehep2v", "content": "", "creation_timestamp": "2025-02-10T16:16:31.084995Z"}</description>
      <content:encoded>{"uuid": "c5303120-9d2e-4ecc-9ad5-5018e1c262c5", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://bsky.app/profile/cve-notifications.bsky.social/post/3lhtk5zehep2v", "content": "", "creation_timestamp": "2025-02-10T16:16:31.084995Z"}</content:encoded>
      <guid isPermaLink="false">https://vulnerability.circl.lu/sighting/c5303120-9d2e-4ecc-9ad5-5018e1c262c5/export</guid>
      <pubDate>Mon, 10 Feb 2025 16:16:31 +0000</pubDate>
    </item>
    <item>
      <title>8c547a35-646d-4013-844c-2f1fd32f36bd</title>
      <link>https://vulnerability.circl.lu/sighting/8c547a35-646d-4013-844c-2f1fd32f36bd/export</link>
      <description>{"uuid": "8c547a35-646d-4013-844c-2f1fd32f36bd", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://t.me/cvedetector/17568", "content": "{\n  \"Source\": \"CVE FEED\",\n  \"Title\": \"CVE-2025-21689 - Linux Kernel USB Quatech2 Null Pointer Dereference\", \n  \"Content\": \"CVE ID : CVE-2025-21689 \nPublished : Feb. 10, 2025, 4:15 p.m. | 1\u00a0hour, 27\u00a0minutes ago \nDescription : In the Linux kernel, the following vulnerability has been resolved:  \n  \nUSB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb()  \n  \nThis patch addresses a null-ptr-deref in qt2_process_read_urb() due to  \nan incorrect bounds check in the following:  \n  \n       if (newport &amp;gt; serial-&amp;gt;num_ports) {  \n               dev_err(&amp;amp;port-&amp;gt;dev,  \n                       \"%s - port change to invalid port: %i\\n\",  \n                       __func__, newport);  \n               break;  \n       }  \n  \nThe condition doesn't account for the valid range of the serial-&amp;gt;port  \nbuffer, which is from 0 to serial-&amp;gt;num_ports - 1. When newport is equal  \nto serial-&amp;gt;num_ports, the assignment of \"port\" in the  \nfollowing code is out-of-bounds and NULL:  \n  \n       serial_priv-&amp;gt;current_port = newport;  \n       port = serial-&amp;gt;port[serial_priv-&amp;gt;current_port];  \n  \nThe fix checks if newport is greater than or equal to serial-&amp;gt;num_ports  \nindicating it is out-of-bounds. \nSeverity: 0.0 | NA \nVisit the link for more details, such as CVSS details, affected products, timeline, and more...\",\n  \"Detection Date\": \"10 Feb 2025\",\n  \"Type\": \"Vulnerability\"\n}\n\ud83d\udd39 t.me/cvedetector \ud83d\udd39", "creation_timestamp": "2025-02-10T18:45:41.000000Z"}</description>
      <content:encoded>{"uuid": "8c547a35-646d-4013-844c-2f1fd32f36bd", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://t.me/cvedetector/17568", "content": "{\n  \"Source\": \"CVE FEED\",\n  \"Title\": \"CVE-2025-21689 - Linux Kernel USB Quatech2 Null Pointer Dereference\", \n  \"Content\": \"CVE ID : CVE-2025-21689 \nPublished : Feb. 10, 2025, 4:15 p.m. | 1\u00a0hour, 27\u00a0minutes ago \nDescription : In the Linux kernel, the following vulnerability has been resolved:  \n  \nUSB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb()  \n  \nThis patch addresses a null-ptr-deref in qt2_process_read_urb() due to  \nan incorrect bounds check in the following:  \n  \n       if (newport &amp;gt; serial-&amp;gt;num_ports) {  \n               dev_err(&amp;amp;port-&amp;gt;dev,  \n                       \"%s - port change to invalid port: %i\\n\",  \n                       __func__, newport);  \n               break;  \n       }  \n  \nThe condition doesn't account for the valid range of the serial-&amp;gt;port  \nbuffer, which is from 0 to serial-&amp;gt;num_ports - 1. When newport is equal  \nto serial-&amp;gt;num_ports, the assignment of \"port\" in the  \nfollowing code is out-of-bounds and NULL:  \n  \n       serial_priv-&amp;gt;current_port = newport;  \n       port = serial-&amp;gt;port[serial_priv-&amp;gt;current_port];  \n  \nThe fix checks if newport is greater than or equal to serial-&amp;gt;num_ports  \nindicating it is out-of-bounds. \nSeverity: 0.0 | NA \nVisit the link for more details, such as CVSS details, affected products, timeline, and more...\",\n  \"Detection Date\": \"10 Feb 2025\",\n  \"Type\": \"Vulnerability\"\n}\n\ud83d\udd39 t.me/cvedetector \ud83d\udd39", "creation_timestamp": "2025-02-10T18:45:41.000000Z"}</content:encoded>
      <guid isPermaLink="false">https://vulnerability.circl.lu/sighting/8c547a35-646d-4013-844c-2f1fd32f36bd/export</guid>
      <pubDate>Mon, 10 Feb 2025 18:45:41 +0000</pubDate>
    </item>
    <item>
      <title>96284ccd-2552-455c-a742-413893329533</title>
      <link>https://vulnerability.circl.lu/sighting/96284ccd-2552-455c-a742-413893329533/export</link>
      <description>{"uuid": "96284ccd-2552-455c-a742-413893329533", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://bsky.app/profile/cve.skyfleet.blue/post/3lhtx7nufpp2t", "content": "", "creation_timestamp": "2025-02-10T20:10:06.672820Z"}</description>
      <content:encoded>{"uuid": "96284ccd-2552-455c-a742-413893329533", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "https://bsky.app/profile/cve.skyfleet.blue/post/3lhtx7nufpp2t", "content": "", "creation_timestamp": "2025-02-10T20:10:06.672820Z"}</content:encoded>
      <guid isPermaLink="false">https://vulnerability.circl.lu/sighting/96284ccd-2552-455c-a742-413893329533/export</guid>
      <pubDate>Mon, 10 Feb 2025 20:10:06 +0000</pubDate>
    </item>
    <item>
      <title>22e77993-ef40-48c5-a907-d85df088970a</title>
      <link>https://vulnerability.circl.lu/sighting/22e77993-ef40-48c5-a907-d85df088970a/export</link>
      <description>{"uuid": "22e77993-ef40-48c5-a907-d85df088970a", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "Telegram/fsWtqUSD5aBRR3Lo4HUEDMqt4tjMZxq8AaNS17pls181QAlh", "content": "", "creation_timestamp": "2025-02-21T22:10:25.000000Z"}</description>
      <content:encoded>{"uuid": "22e77993-ef40-48c5-a907-d85df088970a", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2025-21689", "type": "seen", "source": "Telegram/fsWtqUSD5aBRR3Lo4HUEDMqt4tjMZxq8AaNS17pls181QAlh", "content": "", "creation_timestamp": "2025-02-21T22:10:25.000000Z"}</content:encoded>
      <guid isPermaLink="false">https://vulnerability.circl.lu/sighting/22e77993-ef40-48c5-a907-d85df088970a/export</guid>
      <pubDate>Fri, 21 Feb 2025 22:10:25 +0000</pubDate>
    </item>
  </channel>
</rss>
