Add check if obfuscation is enabled

This commit is contained in:
Ned Wright 2023-07-28 15:46:08 +00:00
parent abe275c828
commit 42a31e37b1

View File

@ -505,6 +505,8 @@ SignatureAndAction::isMatchedPrevent(const Buffer &context_buffer, const set<PMP
void
IPSSignaturesResource::load(cereal::JSONInputArchive &ar)
{
if (!IPSHelper::hasDeobfuscation()) return;
vector<CompleteSignature> sigs;
cereal::load(ar, sigs);