mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 05:31:14 +08:00
FIX: Sanitize sensitive parameters in nginx log report.
This commit is contained in:
@ -33,6 +33,8 @@ class LogAnalyzer
|
||||
result.route += " (PUT)"
|
||||
end
|
||||
|
||||
result.url = self.sanitize_url(result.url)
|
||||
|
||||
result
|
||||
end
|
||||
|
||||
@ -43,6 +45,12 @@ class LogAnalyzer
|
||||
def parsed_timge
|
||||
DateTime.strptime(time, TIME_FORMAT) if time
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def self.sanitize_url(url)
|
||||
url.gsub(/(api_key|api_user)=(\w+)/, '\1=[FILTERED]')
|
||||
end
|
||||
end
|
||||
|
||||
attr_reader :total_requests, :message_bus_requests, :filenames,
|
||||
|
Reference in New Issue
Block a user