
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
A tool for automatically finding abusive and problematic users on Twitter.com
Originally an experiment to use facial recognition to find white people saying the "n word", the goal is to expand the amount of recognizable social contexts and document them. By using a primative keyword matching system a large net is cast over Twitter streams that can then be fed into smarter algorithms and reveal mystic truths.
set a config object that looks like so:
{
// mashape key to use face detection API
"mashape_key": "XXX",
// these are the rules for problematic tweets
"triggers": [
{
// identifier for trigger
"label": "trigger label",
// trigger words
"keywords": [
"twitter",
"search",
"terms",
"here"
],
// problematic offendor traits
"problematics": [
"Male",
"White"
]
}
],
"accounts": [
{
"fullname": "XXXX",
"creds": {
"consumer_key": "XXX",
"consumer_secret": "XXX",
"access_token_key": "XXX",
"access_token_secret": "XXX"
}
}
]
}
If you would like to write to a file, include a "logfile" key with the full system path name like so:
var path = require('path');
config.logfile = path.resolve(__dirname, '../my/output/file/data.json');
Once configuration is set, instantiate a warrior like so:
var Warrior = require('sjw').Warrior;
var config = require('../config');
config.logfile = path.resolve(__dirname, '../data/dump.json');
function warriorCallback(results) {
console.log('FOUND A PROBLEM WITHIN ', results.tweet, ' FROM ', results.source);
}
var sjWarrior = new Warrior(config, warriorCallback);
sjWarrior.startStream();
triggers
api for social rulesetsFAQs
Unknown package
The npm package sjw receives a total of 0 weekly downloads. As such, sjw popularity was classified as not popular.
We found that sjw 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.