mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 13:26:01 +03:00
Merge pull request #2424 from martinhsv/v3/master
Fix IP address logging in Section A
This commit is contained in:
commit
8da787a390
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
||||
v3.x.y - YYYY-MMM-DD (to be released)
|
||||
-------------------------------------
|
||||
|
||||
- Fix IP address logging in Section A
|
||||
[Issue #2300 - @inaratech, @zavazingo, @martinhsv]
|
||||
- Adds support to lua 5.4
|
||||
[@zimmerle]
|
||||
- GeoIP: switch to GEOIP_MEMORY_CACHE from GEOIP_INDEX_CACHE
|
||||
|
@ -1522,9 +1522,9 @@ std::string Transaction::toOldAuditLogFormat(int parts,
|
||||
strftime(tstr, 299, "[%d/%b/%Y:%H:%M:%S %z]", &timeinfo);
|
||||
audit_log << tstr;
|
||||
audit_log << " " << m_id->c_str();
|
||||
audit_log << " " << this->m_clientIpAddress;
|
||||
audit_log << " " << this->m_clientIpAddress->c_str();
|
||||
audit_log << " " << this->m_clientPort;
|
||||
audit_log << " " << m_serverIpAddress;
|
||||
audit_log << " " << m_serverIpAddress->c_str();
|
||||
audit_log << " " << this->m_serverPort;
|
||||
audit_log << std::endl;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user