FROM kong:2.6
...
USER root
...
# log4shell mitigation
# see https://konghq.com/blog/log4j-log4shell/
RUN git clone https://github.com/brentos/kong-plugin-log4shell && \
cd kong-plugin-log4shell && \
luarocks make
...
ENV KONG_PLUGINS ...,log4shell
...
USER kong
来自 kong 的人最近发了一篇博文来回答我的问题。他们开发了一个kong 插件来缓解漏洞。
我通过更改我的 Dockerfile 将此插件添加到我的 kong 中:
然后我只是将此 log4shell 添加为全局插件。