Skip to content

Commit b97b61b

Browse files
authored
Merge branch 'owasp-modsecurity:v3/master' into refactor/default-pcre2
2 parents 6a2eee6 + 40af573 commit b97b61b

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

build/win32/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Windows build of libModSecurity uses Build Tools for Visual Studio 2022 (for
1818
* Windows SDK
1919
* CMake
2020
* Address Sanitizer
21-
* [Conan package manager 2.2.2](https://github.com/conan-io/conan/releases/download/2.2.2/conan-2.2.2-windows-x86_64-installer.exe)
21+
* [Conan package manager 2.10.2](https://github.com/conan-io/conan/releases/download/2.10.2/conan-2.10.2-windows-x86_64-installer.exe)
2222
* Install and then setup the default Conan profile to use the MSVC C++ compiler:
2323
1. Open a command-prompt and set the MSVC C++ compiler environment by executing: `C:\BuildTools\VC\Auxiliary\Build\vcvars64.bat`
2424
2. Execute: `conan profile detect --force`
@@ -30,7 +30,7 @@ The Windows build of libModSecurity uses Build Tools for Visual Studio 2022 (for
3030

3131
## Build
3232

33-
Install the prerequisites listsed in the previous section, checkout libModSecurity and from the directory where it's located execute:
33+
Install the prerequisites listed in the previous section, checkout libModSecurity and from the directory where it's located execute:
3434

3535
```
3636
vcbuild.bat [build_configuration] [arch] [USE_ASAN]

build/win32/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN %INSTALLER% /SP- /VERYSILENT /SUPPRESSMSGBOXES /NOCANCEL `
3535
/NORESTART /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS /LOADINF=git.inf
3636

3737
# download & setup conan
38-
ARG CONAN_VERSION=2.2.2
38+
ARG CONAN_VERSION=2.10.2
3939
ARG CONAN_BINARY=conan-${CONAN_VERSION}-windows-x86_64-installer.exe
4040
ARG CONAN_URL=https://github.com/conan-io/conan/releases/download/${CONAN_VERSION}/${CONAN_BINARY}
4141

build/yajl.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ else
6262
YAJL_DISPLAY="${YAJL_LDADD}, ${YAJL_CFLAGS}"
6363
else
6464
# If pkg-config did not find anything useful, go over file lookup.
65-
for x in ${YAJL_POSSIBLE_LIB_NAMES}; do
65+
for x in ${YAJL_POSSIBLE_PATHS}; do
6666
CHECK_FOR_YAJL_AT(${x})
6767
if test -n "${YAJL_VERSION}"; then
6868
break

src/operators/validate_byte_range.cc

+17-4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ bool ValidateByteRange::getRange(const std::string &rangeRepresentation,
3737
"' into a number");
3838
return false;
3939
}
40+
if ((start < 0) || (start > 255)) {
41+
error->assign("Invalid byte value: " +
42+
std::to_string(start));
43+
return false;
44+
}
4045
table[start >> 3] = (table[start >> 3] | (1 << (start & 0x7)));
4146
return true;
4247
}
@@ -87,21 +92,29 @@ bool ValidateByteRange::getRange(const std::string &rangeRepresentation,
8792
bool ValidateByteRange::init(const std::string &file,
8893
std::string *error) {
8994
size_t pos = m_param.find_first_of(",");
95+
bool rc;
9096

9197
if (pos == std::string::npos) {
92-
getRange(m_param, error);
98+
rc = getRange(m_param, error);
9399
} else {
94-
getRange(std::string(m_param, 0, pos), error);
100+
rc = getRange(std::string(m_param, 0, pos), error);
101+
}
102+
103+
if (rc == false) {
104+
return false;
95105
}
96106

97107
while (pos != std::string::npos) {
98108
size_t next_pos = m_param.find_first_of(",", pos + 1);
99109

100110
if (next_pos == std::string::npos) {
101-
getRange(std::string(m_param, pos + 1, m_param.length() -
111+
rc = getRange(std::string(m_param, pos + 1, m_param.length() -
102112
(pos + 1)), error);
103113
} else {
104-
getRange(std::string(m_param, pos + 1, next_pos - (pos + 1)), error);
114+
rc = getRange(std::string(m_param, pos + 1, next_pos - (pos + 1)), error);
115+
}
116+
if (rc == false) {
117+
return false;
105118
}
106119
pos = next_pos;
107120
}

0 commit comments

Comments
 (0)