mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Fix IP address logging in Section A
This commit is contained in:
parent
995f22b3ce
commit
8436c78993
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
v3.x.y - YYYY-MMM-DD (to be released)
|
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
|
- Adds support to lua 5.4
|
||||||
[@zimmerle]
|
[@zimmerle]
|
||||||
- GeoIP: switch to GEOIP_MEMORY_CACHE from GEOIP_INDEX_CACHE
|
- 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);
|
strftime(tstr, 299, "[%d/%b/%Y:%H:%M:%S %z]", &timeinfo);
|
||||||
audit_log << tstr;
|
audit_log << tstr;
|
||||||
audit_log << " " << m_id->c_str();
|
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 << " " << this->m_clientPort;
|
||||||
audit_log << " " << m_serverIpAddress;
|
audit_log << " " << m_serverIpAddress->c_str();
|
||||||
audit_log << " " << this->m_serverPort;
|
audit_log << " " << this->m_serverPort;
|
||||||
audit_log << std::endl;
|
audit_log << std::endl;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user