Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gardr-validator
Advanced tools
Collect data from a display-ads lifecyle and validate the data. This project tries to give a nice framework for doing this.
$ npm install
See the web-gui for this project: https://github.com/gardr/validator-web/blob/master/lib/routes/validate.js#L284
module.exports = {
'onBeforeExit': function (api, config) {
api.switchToIframe();
if (config.someConfigBoolean){
api.set('collectedData', api.evaluate(function(config){
return window.someData;
}, config));
}
}
};
module.exports = {
'dependencies': ['someData'],
'preprocess': function(harvested, output, next, globalOptions){
output('someKey', {data: harvested.someData||{}});
setTimeout(next, 1);
}
};
module.exports = {
'preprocessors': [
'fixSomethingAsync'
],
'dependencies': [
'someData'
],
'validate': function(harvested, report, next, globalOptions){
if (this.someConfigBoolean){
if (harvested.someData){
report.error('Some message');
}
}
}
};
var run = require('gardr-validator');
var options = {
'include': [
{
name: 'someData',
path: '/resolved/path/to/someData.js'
}
],
'config':{
'someData': {
'someConfigBoolean': true
}
}
};
run(options, function(phantomError, harvest, report){
if (phantomError){
// do something
return;
}
assert(harvest.someData);
assert(harvest.someKey);
assert(report.errors.length === 1);
})
{
instrument: [
'actions', // defaults to files in /lib/rule/instrument/actions.js
{name: 'css'},
{name: 'custom', path: '/absolute/path/to/file'},
{name: 'custom2', code: 'var someCode = "";'}
],
preprocess: [
//..
],
validate: [
//..
]
//rest of runner default options, see /config folder.
}
YES, pull requests with tests. Be sure to create a issue and let us know you are working on it - maybe we can help out with insights etc.
$ npm test
- GOOG_PAGESPEED_API_KEY
- GOOG_SAFE_BROWSE_API_KEY
(please let us know of alternatives to this project)
FAQs
garðr-validator =========
We found that gardr-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.