Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
microdata-node
Advanced tools
Cheerio based microdata parser. Aims to be compatible with http://www.w3.org/TR/microdata/#json.
Demo over at http://janpot.github.io/microdata-node.
var cheerio = require('cheerio');
var microdata = require('microdata-node');
var $ = cheerio.load(
'<section itemscope itemtype="http://schema.org/Person"> ' +
' Hello, my name is ' +
' <span itemprop="name">John Doe</span>, ' +
' I am a ' +
' <span itemprop="jobTitle">graduate research assistant</span> ' +
' at the ' +
' <span itemprop="affiliation">University of Dreams</span>. ' +
' My friends call me ' +
' <span itemprop="additionalName">Johnny</span>. ' +
' You can visit my homepage at ' +
' <a href="http://www.JohnnyD.com" itemprop="url">www.JohnnyD.com</a>. ' +
' <section itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">' +
' I live at ' +
' <span itemprop="streetAddress">1234 Peach Drive</span>,' +
' <span itemprop="addressLocality">Warner Robins</span>,' +
' <span itemprop="addressRegion">Georgia</span>.' +
' </section>' +
'</section>'
);
var result = microdata.parse($, null, {
base: 'http://www.example.com'
});
console.log(JSON.stringify(result, null, 2));
Output:
{
"items": [
{
"type": [ "http://schema.org/Person" ],
"properties": {
"name": [ "John Doe" ],
"jobTitle": [ "graduate research assistant" ],
"affiliation": [ "University of Dreams" ],
"additionalName": [ "Johnny" ],
"url": [ "http://www.johnnyd.com/" ],
"address": [
{
"type": [ "http://schema.org/PostalAddress" ],
"properties": {
"streetAddress": [ "1234 Peach Drive" ],
"addressLocality": [ "Warner Robins" ],
"addressRegion": [ "Georgia" ]
}
}
]
}
}
]
}
microdata.parse($, [$nodes], [config])
parses the provided cheerio object with optional configuration.
Optionally specify a subset of nodes to parse. Can be obtained by $('.nodes-to-parse')
.
config.base
: base url to resolve url properties against.
FAQs
Microdata to json and json-ld parser
The npm package microdata-node receives a total of 6,421 weekly downloads. As such, microdata-node popularity was classified as popular.
We found that microdata-node 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.