
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
amf-shacl-node
Advanced tools
Create a new SHACL validator and load shapes and data to trigger the validation.
The validation function returns a ValidationReport
object that can be used to inspect conformance rand results.
var validator = new SHACLValidator();
validator.validate(data, "text/turtle", shapes, "text/turtle", function (e, report) {
console.log("Conforms? " + report.conforms());
if (report.conforms() === false) {
report.results().forEach(function(result) {
console.log(" - Severity: " + result.severity() + " for " + result.sourceConstraintComponent());
});
}
});
A browser version of the library will be built in the dist
directory using the gulp browserify
task.
Tests can be run using the test
gulp task.
Tests can be run for the browser version running the test-web
gulp task. This task will generate the test cases from
the node version and start a server in port 3000. The browser version of the library must have been built before running
this task.
The vocabularies for SHACL and DASH are located in the vocabularies
directory. After modifying these files, they must
be transformed into library code using the generate-vocabularies
gulp task.
The JS libraries referenced in the DASH vocabulary can be found in the shared
directory. They can be bundled into the
library build using the generate-libraries
gulp command. If they are not bundled, the library will try to de-reference
them using HTTP.
FAQs
SHACL Library
The npm package amf-shacl-node receives a total of 304 weekly downloads. As such, amf-shacl-node popularity was classified as not popular.
We found that amf-shacl-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.