
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
Webcheck gives you an infrastructure to analyze web resources. It is build very generic for supporting a wide range of possible use cases. You are able to analyze a single page, a whole domain or even everything connected to one or more seed resources. You can analyze every content-type.
Version 1.0.0 is refactored completely. Webcheck uses streams. Because of the streams it uses plugins instead of middleware. There is a list of plugins in the github repository. Please send me the link to yours if you develop one. Otherwise you should look on npm for modules with prefix 'webcheck-'.
npm install webcheck
var Webcheck = require('webcheck');
var AnyPlugin = require('webcheck-any-plugin');
var webcheck = new Webcheck();
var anyPlugin = new AnyPlugin({your: 'options'});
webcheck.addPlugin(anyPlugin);
anyPlugin.enable();
webcheck.crawl({
url: 'http://some.website/url'
}, function (err) {
if (err) {
console.error('There was an error while crawling', err);
}
console.log('Crawling done...');
});
Since version 1.0.0 webcheck uses streams instead of callbacks. It is not compatible to older versions!
Webcheck is small featured. You should extend your functionality with plugins. Take a look at the list of plugins.
For further information about plugins in webcheck take a look at the plugin readme.
Add a plugin to webcheck.
Request a resource
url | {string} [mandatory]: URL to crawlwait | {Number}: Time to wait till request (default: 0)headers | {Object}: Default headers (default: {"User-Agent": "webcheck v1.0.0"})request | {request}: The used request-moduleimmediately | {boolean}: Should the crawl push as next one to queue.parameters | {Object}: A object to pass parameters to other plugins about this crawlThis is a instance of request. Webcheck use this as function to request a resource. If you want another request function, for example to request resources from TOR with torrequest, you are able to swap this property.
Array of used middleware.
All events emitted on the webcheck object.
var webcheck = new Webcheck();
webcheck.on(event, fn);
Webcheck emits the following events:
crawl (request-settings): Emitted directly after calling crawl method.request (request-settings): Emitted before request is executed.result ({url, request-settings, request, response}): Emitted after middleware are executed and document is fetcheddrain: Emitted on draining of queuequeue (request-settings): Emitted before adding to queueaddPlugin (plugin): Emitted when a plugin is addedenablePlugin (plugin): Emitted when a added plugin gets enableddisablePlugin (plugin): Emitted when a added plugin gets disabledFAQs
A module to analyse websites for SEO, validation and code-quality
The npm package webcheck receives a total of 3 weekly downloads. As such, webcheck popularity was classified as not popular.
We found that webcheck 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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.