
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
A modern bencode parser focused on speed and perfomance. It used recursive descent parser, a kind of top-down parsers.
// classic api
const decode = require('btparse')
// or you can use lazy parser
// const decode = require('btparse/lazy')
console.log(decode(torrent).info.name)
console.log(decode('d3:abcli13eee')) // {abc: [ 13 ]}
nodejs 7.5.0 / windows 10 x64 / i5 4690
| Library | op/s | ms (1e5 op) |
|---|---|---|
| bencode | 118,387 | 838.424 |
| btparse | 161,059 | 641.632 |
| btparse#lazy | 143,258 | 1090.971 |
decode(input: Buffer|String, opts: Options) -> Object|Number|Array|BufferParse and decode bencoded message.
opts.depth: NumberMax parse depth for objects; default = infinity, min = 1
const decode = require('btparse')
console.log(decode('d2:abi2e2:bbd2:ccleee', {depth: 1})) // {ab: 2, bb: Buffer.from('d2:cclee')}
decode(input: Buffer|String) -> Proxy<Object>|Number|Array|BufferThe main difference is that all buffers aren't decoded into a string in parsing time. Required nodejs 6+.
const decode = require('btparse/lazy')
// get prop
console.log(decode(torrent).info.name)
// check prop
console.log('name' in decode(torrent).info)
// get all keys / props
console.log(Reflect.ownKeys(decode(torrent)))
MIT, (c) Dmitry Tsvettsikh, 2017+
FAQs
A modern bencode parser focused on speed and perfomance
The npm package btparse receives a total of 172 weekly downloads. As such, btparse popularity was classified as not popular.
We found that btparse 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
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.