
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
third-party-resources-checker
Advanced tools
The Third Party Resources Checker is a tool to detect non-w3.org and non-whitelisted resources in a Web page.
This PhantomJS-based tool loads a given URL and logs on the standard output any URL (one per line) the page requests while loading that is not a www.w3.org
nor a whitelisted URL (as defined in the whitelisted_domains
variable).
It is a component of the W3C automated publication workflow, orchestrated by Echidna.
Install the dependencies by running npm install
.
The checker can be run standalone via the command line:
Usage: third-party-resources-checker [options] URI
Options:
-h, --help output usage information
-V, --version output the version number
-w, --whitelist <filename> optional JSON file containing URIs and domains that are deemed OK
Examples:
$ third-party-resources-checker http://page.to.be/checked
$ third-party-resources-checker -w whitelist.json http://page.to.be/checked
The checker can also be run as a module. require('third-party-resources-checker')
exposes a single check
function:
check(uri, [whitelist]);
It returns a Promise
of a tuple (as a JavaScript Array
):
Array
of String
, each of them being an external resourceWhen used standalone, the whitelist must be written in a JSON file. When used as a module, it must be given to the check()
function as a JavaScript object literal. In both cases, its format is the following:
{
"domains": [
"www.foobar.org"
],
"urls": [
"http://example.org/image.jpg"
]
}
FAQs
The Third Party Resources Checker is a tool to detect non-w3.org and non-whitelisted resources in a Web page.
The npm package third-party-resources-checker receives a total of 1 weekly downloads. As such, third-party-resources-checker popularity was classified as not popular.
We found that third-party-resources-checker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.