mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
parent
72f632e9b6
commit
a249574692
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
DD MMM YYYY - 2.9.2 - To be released
|
DD MMM YYYY - 2.9.2 - To be released
|
||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
|
* Avoid to flush xml buffer while assembling the injected html.
|
||||||
|
[Issue #742 - @zimmerle]
|
||||||
* Avoid additional operator invokation if last transform of a multimatch
|
* Avoid additional operator invokation if last transform of a multimatch
|
||||||
doesn't modify the input
|
doesn't modify the input
|
||||||
[Issue #1086, #1087 - Daniel Stelter-Gliese]
|
[Issue #1086, #1087 - Daniel Stelter-Gliese]
|
||||||
|
@ -1072,7 +1072,8 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
htmlDocContentDumpFormatOutput(output_buf, msr->crypto_html_tree, NULL, 0);
|
htmlDocContentDumpFormatOutput(output_buf, msr->crypto_html_tree, NULL, 0);
|
||||||
xmlOutputBufferFlush(output_buf);
|
// Not necessary in 2.9.4+
|
||||||
|
//xmlOutputBufferFlush(output_buf);
|
||||||
|
|
||||||
#ifdef LIBXML2_NEW_BUFFER
|
#ifdef LIBXML2_NEW_BUFFER
|
||||||
|
|
||||||
@ -1082,6 +1083,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
msr->of_stream_changed = 0;
|
msr->of_stream_changed = 0;
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: NEW_BUFFER Output buffer is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1096,6 +1098,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
if (msr->stream_output_data == NULL) {
|
if (msr->stream_output_data == NULL) {
|
||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: NEW BUFFER Stream Output is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1111,6 +1114,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
msr->of_stream_changed = 0;
|
msr->of_stream_changed = 0;
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Conv is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1123,6 +1127,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
msr->stream_output_data = (char *)malloc(msr->stream_output_length+1);
|
msr->stream_output_data = (char *)malloc(msr->stream_output_length+1);
|
||||||
|
|
||||||
if (msr->stream_output_data == NULL) {
|
if (msr->stream_output_data == NULL) {
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Stream Output data is NULL.");
|
||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
return -1;
|
return -1;
|
||||||
@ -1143,6 +1148,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
if(output_buf->buffer == NULL || output_buf->buffer->use == 0) {
|
if(output_buf->buffer == NULL || output_buf->buffer->use == 0) {
|
||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Output buffer is null.");
|
||||||
msr->of_stream_changed = 0;
|
msr->of_stream_changed = 0;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -1158,6 +1164,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
if (msr->stream_output_data == NULL) {
|
if (msr->stream_output_data == NULL) {
|
||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Stream Output is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1174,6 +1181,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
msr->of_stream_changed = 0;
|
msr->of_stream_changed = 0;
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Stream Output is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1188,6 +1196,7 @@ int inject_hashed_response_body(modsec_rec *msr, int elts) {
|
|||||||
if (msr->stream_output_data == NULL) {
|
if (msr->stream_output_data == NULL) {
|
||||||
xmlOutputBufferClose(output_buf);
|
xmlOutputBufferClose(output_buf);
|
||||||
xmlFreeDoc(msr->crypto_html_tree);
|
xmlFreeDoc(msr->crypto_html_tree);
|
||||||
|
msr_log(msr, 4, "inject_hashed_response_body: Stream Output Data is null.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user