Bug #268 » 0001-disable-mpm-pattern-s-retest-skipping-in-detection-e.patch
src/detect-engine-hcbd.c | ||
---|---|---|
DetectContentData *cd = (DetectContentData *)sm->ctx;
|
||
SCLogDebug("inspecting content %"PRIu32" payload_len %"PRIu32, cd->id, payload_len);
|
||
if (cd->flags & DETECT_CONTENT_HCBD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (cd->flags & DETECT_CONTENT_HCBD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
src/detect-engine-hcd.c | ||
---|---|---|
SCLogDebug("inspecting http cookie %"PRIu32" payload_len %"PRIu32,
|
||
cd->id, payload_len);
|
||
if (cd->flags & DETECT_CONTENT_HCD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (cd->flags & DETECT_CONTENT_HCD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
src/detect-engine-hhd.c | ||
---|---|---|
SCLogDebug("inspecting http headers %"PRIu32" payload_len %"PRIu32,
|
||
cd->id, payload_len);
|
||
if (cd->flags & DETECT_CONTENT_HHD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (cd->flags & DETECT_CONTENT_HHD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
src/detect-engine-hmd.c | ||
---|---|---|
SCLogDebug("inspecting http method %"PRIu32" payload_len %"PRIu32,
|
||
cd->id, payload_len);
|
||
if (cd->flags & DETECT_CONTENT_HMD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (cd->flags & DETECT_CONTENT_HMD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
src/detect-engine-hrhd.c | ||
---|---|---|
SCLogDebug("inspecting http headers %"PRIu32" payload_len %"PRIu32,
|
||
cd->id, payload_len);
|
||
if (cd->flags & DETECT_CONTENT_HRHD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (cd->flags & DETECT_CONTENT_HRHD_MPM && !(cd->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
src/detect-engine-uri.c | ||
---|---|---|
ud = (DetectContentData *)sm->ctx;
|
||
SCLogDebug("inspecting content %"PRIu32" payload_len %"PRIu32, ud->id, payload_len);
|
||
if (ud->flags & DETECT_CONTENT_URI_MPM && !(ud->flags & DETECT_CONTENT_NEGATED))
|
||
goto match;
|
||
//if (ud->flags & DETECT_CONTENT_URI_MPM && !(ud->flags & DETECT_CONTENT_NEGATED))
|
||
// goto match;
|
||
/* rule parsers should take care of this */
|
||
#ifdef DEBUG
|
- « Previous
- 1
- 2
- Next »