5a73565e0e
Stubs returning PRECOND_FAIL. Parallel agents fill in real detect/exploit.
21 lines
805 B
C
21 lines
805 B
C
/* vmwgfx_cve_2023_2008 — STUB pending agent implementation. */
|
|
#include "skeletonkey_modules.h"
|
|
#include "../../core/registry.h"
|
|
|
|
static skeletonkey_result_t vmwgfx_detect(const struct skeletonkey_ctx *ctx)
|
|
{ (void)ctx; return SKELETONKEY_PRECOND_FAIL; }
|
|
|
|
const struct skeletonkey_module vmwgfx_module = {
|
|
.name = "vmwgfx",
|
|
.cve = "CVE-2023-2008",
|
|
.summary = "vmwgfx DRM driver buffer-object OOB write — stub pending implementation",
|
|
.family = "drm",
|
|
.kernel_range = "K < 6.3-rc6 (vmware-svga / vmwgfx driver)",
|
|
.detect = vmwgfx_detect,
|
|
.exploit = NULL, .mitigate = NULL, .cleanup = NULL,
|
|
.detect_auditd = NULL, .detect_sigma = NULL,
|
|
.detect_yara = NULL, .detect_falco = NULL,
|
|
};
|
|
|
|
void skeletonkey_register_vmwgfx(void) { skeletonkey_register(&vmwgfx_module); }
|