
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
What is CNF?
CNF is short for Conjunctive Normal Form, which is a way of arranging logical arguments into groups of logical OR statements between AND statements, e.g.
(statement_{1,1} OR, .... statement_{1,i})
AND
(statement_{2,1} OR, .... statement_{2,j})
AND
...
AND
(statement_{x,1} OR, .... statement_{x,k})
Assuming your JSON data is in an SQL-like format:
{
recordID_1: {
column1: value,
column2: value,
...,
columnN: value
},
...,
recordID_M: {
column1: value,
column2: value,
...,
columnN: value
}
}
This library allows you to easily apply a list of filters in CNF to your JSON to find which records pass the filters.
There are two main functions:
A filter consists of five parts:
thus a filter is applied to a record as so:
conditional(function(record[field]), input)
FAQs
Functions for filtering SQL-like json with conjunctive normal form filters
We found that json-cnf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.