mirror of
https://github.com/openappsec/openappsec.git
synced 2025-11-16 01:12:18 +03:00
change gzipped detection
This commit is contained in:
@@ -103,7 +103,7 @@ ValueStatsAnalyzer::ValueStatsAnalyzer(const std::string &cur_val)
|
||||
bool lastNul = false; // whether last processed character was ASCII NUL
|
||||
size_t curValLength = cur_val.length();
|
||||
|
||||
if (curValLength == 0) {
|
||||
if (curValLength == 0 || Waap::Util::isGzipped(cur_val)) {
|
||||
canSplitSemicolon = false;
|
||||
canSplitPipe = false;
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user