AWS EB + nginx:更新 access.log 格式以混淆敏感的 get 请求参数
AWS EB + nginx: Update access.log format to obfuscate sensitive get request parameters
我遇到了与此问题中所述相同的问题:How to not log a get request parameter in the nginx access logs?
但是,由于nginx是通过AWS配置的,所以部署的时候不知道怎么修改。我不清楚这些配置的去向。 AWS 支持无法提供帮助,因为这是 nginx 而不是 AWS 的问题。
任何能为我指明正确方向的信息都将不胜感激。
到目前为止,我只能修改部署到 EB 的存储库中的 ./ebextensions/nginx.config
,但尚不清楚需要在其中设置什么。
=================================
好的,所以一些有趣的更新。基本上,AWS EB 环境的实例默认设置为 nginx.configs。在这些配置中,它包括特定路径下的所有 *.config 文件,包括一个包含服务器指令的自动生成的文件。它将所有这些注入到 nginx.config.
的 http 指令中
您可以选择完全覆盖 nginx 配置。但是,作为一个对那里发生的一切以及这样做的潜在危险几乎一无所知的人,我认为最好不要尽可能多地修改默认行为。因此,我决定想办法修改这个自动生成的 .config 文件并重新启动 nginx。
到目前为止,我得到的是我的 ./ebextensions/01_proxy.config
:
files:
"/etc/nginx/conf.d/injectObfuscation.sh":
content: |
# This script expects a file as input with an nginx server directive to be injected into the http directive of an nginx.config file.
# It will make two modifications:
# - It will create a log_format to be used when filtering the password parameter
# - It will find the server directive and inject a location directive for the sensitive endpoint
# - This directive will replace the sensitive parameter with *s and use the filter log_format instead of the main log_format
# TODO: Figure out how to do the above ^^
container_commands:
01_update_server_directive:
command: "./etc/nginx/conf.d/injectObfuscation.sh /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf"
02_reload_nginx:
command: "sudo service nginx reload"
files:
行声明我正在创建一些要添加到 EC2 实例的文件。在这里,我的目标是创建一个 bash 脚本来完成我的任务。如评论中所述,我的任务是首先添加一行 log_format。然后,找到带有 server{
的行,在它下面我需要完整地注入 locations /my/sensitive/endpoint
指令。
对于编写这个我完全不熟悉的 bash 脚本的任何帮助,我们将不胜感激。
我的尝试很愚蠢。
我需要覆盖默认的 nginx.conf 和 00_elastic_beanstalk_proxy.conf,就像在 Node.js 特定文档中一样:https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/nodejs-platform-proxy.html
EB上的其他平台允许你添加一个.ebextensions/nginx/nginx.conf
来覆盖现有的nginx.conf
,但是Node的启动过程似乎不一样,忽略了这个文件。但是,您可以使用 .ebextension 配置在 /etc/nginx/nginx.conf
处创建一个文件来替换它。
出于我的目的,我这样做并在主 log_format 中将 $request
更改为 $temp
。
对于 Node 环境,服务器指令存在于实例在启动期间自动生成的 00_elastic_beanstalk_proxy.conf
文件中。使用上面文档中的示例,我覆盖了它并添加了逻辑来混淆我需要的参数。可选地,这可能已经被放置在这个被覆盖的文件中的位置指令中。我本可以定义一个单独的日志格式。但出于我的目的,我希望无论路径如何,都不记录此参数。
AWS 注意到默认的 nginx.conf 和 00_elastic_beanstalk_proxy.conf 可能会根据您使用的节点环境的版本而改变,所以要始终从特定版本中提取一个。
我所做的一次尝试是只覆盖 nginx.conf。但是,set 指令只能在 location、server 和另一个我想不起来的指令中使用。在 http 指令本身内设置变量是无效的。
我遇到了与此问题中所述相同的问题:How to not log a get request parameter in the nginx access logs?
但是,由于nginx是通过AWS配置的,所以部署的时候不知道怎么修改。我不清楚这些配置的去向。 AWS 支持无法提供帮助,因为这是 nginx 而不是 AWS 的问题。
任何能为我指明正确方向的信息都将不胜感激。
到目前为止,我只能修改部署到 EB 的存储库中的 ./ebextensions/nginx.config
,但尚不清楚需要在其中设置什么。
=================================
好的,所以一些有趣的更新。基本上,AWS EB 环境的实例默认设置为 nginx.configs。在这些配置中,它包括特定路径下的所有 *.config 文件,包括一个包含服务器指令的自动生成的文件。它将所有这些注入到 nginx.config.
的 http 指令中您可以选择完全覆盖 nginx 配置。但是,作为一个对那里发生的一切以及这样做的潜在危险几乎一无所知的人,我认为最好不要尽可能多地修改默认行为。因此,我决定想办法修改这个自动生成的 .config 文件并重新启动 nginx。
到目前为止,我得到的是我的 ./ebextensions/01_proxy.config
:
files:
"/etc/nginx/conf.d/injectObfuscation.sh":
content: |
# This script expects a file as input with an nginx server directive to be injected into the http directive of an nginx.config file.
# It will make two modifications:
# - It will create a log_format to be used when filtering the password parameter
# - It will find the server directive and inject a location directive for the sensitive endpoint
# - This directive will replace the sensitive parameter with *s and use the filter log_format instead of the main log_format
# TODO: Figure out how to do the above ^^
container_commands:
01_update_server_directive:
command: "./etc/nginx/conf.d/injectObfuscation.sh /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf"
02_reload_nginx:
command: "sudo service nginx reload"
files:
行声明我正在创建一些要添加到 EC2 实例的文件。在这里,我的目标是创建一个 bash 脚本来完成我的任务。如评论中所述,我的任务是首先添加一行 log_format。然后,找到带有 server{
的行,在它下面我需要完整地注入 locations /my/sensitive/endpoint
指令。
对于编写这个我完全不熟悉的 bash 脚本的任何帮助,我们将不胜感激。
我的尝试很愚蠢。
我需要覆盖默认的 nginx.conf 和 00_elastic_beanstalk_proxy.conf,就像在 Node.js 特定文档中一样:https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/nodejs-platform-proxy.html
EB上的其他平台允许你添加一个.ebextensions/nginx/nginx.conf
来覆盖现有的nginx.conf
,但是Node的启动过程似乎不一样,忽略了这个文件。但是,您可以使用 .ebextension 配置在 /etc/nginx/nginx.conf
处创建一个文件来替换它。
出于我的目的,我这样做并在主 log_format 中将 $request
更改为 $temp
。
对于 Node 环境,服务器指令存在于实例在启动期间自动生成的 00_elastic_beanstalk_proxy.conf
文件中。使用上面文档中的示例,我覆盖了它并添加了逻辑来混淆我需要的参数。可选地,这可能已经被放置在这个被覆盖的文件中的位置指令中。我本可以定义一个单独的日志格式。但出于我的目的,我希望无论路径如何,都不记录此参数。
AWS 注意到默认的 nginx.conf 和 00_elastic_beanstalk_proxy.conf 可能会根据您使用的节点环境的版本而改变,所以要始终从特定版本中提取一个。
我所做的一次尝试是只覆盖 nginx.conf。但是,set 指令只能在 location、server 和另一个我想不起来的指令中使用。在 http 指令本身内设置变量是无效的。