ModSecurity 2.X for Apache currently supports LUA series 5.0 through to 5.4, as checked by apache2\msc_lua.c
/* Create new state. */
#if LUA_VERSION_NUM == 502 || LUA_VERSION_NUM == 503 || LUA_VERSION_NUM == 504 || LUA_VERSION_NUM == 501
L = luaL_newstate();
#elif LUA_VERSION_NUM == 500
L = lua_open();
#else
#error We are only tested under Lua 5.0, 5.1, 5.2, 5.3, or 5.4.
#endif
LUA 5.5 was released in December 2025, so could ModSecurity 2.X series be tested/updated to support this later version please?
ModSecurity 2.X for Apache currently supports LUA series 5.0 through to 5.4, as checked by apache2\msc_lua.c
LUA 5.5 was released in December 2025, so could ModSecurity 2.X series be tested/updated to support this later version please?