
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
batch-flood-stream
Advanced tools
emits batches of data events. grouped based on rate they are emitted and a max batch size.
emits batches of data events. grouped based on rate they are emitted and a max batch size.
var stream = batch(ondata,options);
var s = batch({wait:5}).on('data',function(batch){
console.log('data',batch);
});
var i = 0;
var timer = setInterval(function(){
s.write(++i);
if(i == 50) {
clearTimeout(timer);
s.end();
}
},1);
outputs something like
data [ 1 ]
data [ 2 ]
data [ 3, 4 ]
data [ 5, 6, 7 ]
data [ 8 ]
data [ 9, 10, 11 ]
data [ 12, 13, 14, 15 ]
data [ 16, 17 ]
data [ 18, 19, 20 ]
data [ 21, 22, 23, 24 ]
data [ 25, 26 ]
data [ 27, 28, 29 ]
data [ 30, 31, 32 ]
data [ 33, 34, 35 ]
data [ 36, 37, 38, 39 ]
data [ 40, 41, 42 ]
data [ 43, 44, 45, 46 ]
data [ 47, 48, 49 ]
FAQs
emits batches of data events. grouped based on rate they are emitted and a max batch size.
The npm package batch-flood-stream receives a total of 1 weekly downloads. As such, batch-flood-stream popularity was classified as not popular.
We found that batch-flood-stream 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.