This commit is contained in:
epi 2023-03-06 20:44:24 -06:00
parent 584fc940cd
commit 31cdba64e4
2 changed files with 7 additions and 2 deletions

View File

@ -144,7 +144,12 @@ impl<'a> Extractor<'a> {
};
// filter if necessary
if self.handles.filters.data.should_filter_response(&resp, self.handles.stats.tx.clone()) {
if self
.handles
.filters
.data
.should_filter_response(&resp, self.handles.stats.tx.clone())
{
continue;
}

View File

@ -397,7 +397,7 @@ impl HeuristicTests {
// add the response to the global list of responses
RESPONSES.insert(responses[0].clone());
// function-internal magic number, indicates that we've detected a wildcard directory
// function-internal magic number, indicates that we've detected a wildcard directory
req_counter += 100;
}