scaffold: 4 new module dirs (sudo_samedit, sequoia, sudoedit_editor, vmwgfx)
Stubs returning PRECOND_FAIL. Parallel agents fill in real detect/exploit.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/* 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); }
|
||||
Reference in New Issue
Block a user