6a0a7d8718
Pre-scaffolding for the next batch (CVE-2023-32233, CVE-2023-4622, CVE-2022-25636, CVE-2023-0179). Each module ships as a 21-line stub returning PRECOND_FAIL; parallel agents fill in the real detect/exploit/--full-chain implementations. This commit keeps registry.h / iamroot.c / Makefile in one place so the 4 parallel agents don't collide on shared-file edits — they each own a single iamroot_modules.c. Build clean on Debian 6.12.86; --list shows all 24 modules including the 4 new stubs.
13 lines
242 B
C
13 lines
242 B
C
/*
|
|
* nft_payload_cve_2023_0179 — IAMROOT module registry hook
|
|
*/
|
|
|
|
#ifndef NFT_PAYLOAD_IAMROOT_MODULES_H
|
|
#define NFT_PAYLOAD_IAMROOT_MODULES_H
|
|
|
|
#include "../../core/module.h"
|
|
|
|
extern const struct iamroot_module nft_payload_module;
|
|
|
|
#endif
|