
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
biguintle
Encode / decode unsigned BigInt as little endian
var bigUintLE = require('biguintle')
var bigUint = 2n ** 64n - 1n // UINT64_MAX
assert(bigUintLE.encodingLength(bigUint) === 8)
var buf = bigUintLE.encode(bigUint)
assert(bigUintLE.encode.bytes === 8 && buf.byteLength === 8)
var num = bigUintLE.decode()
var buf = bigUintLE.encode(bu, [buf, [byteOffset]])
Write BigInt
bu
to optional Buffer
or TypedArray
buf
at optional
Number
byteOffset
. If buf
is not set a new Buffer
is allocated the size
of the byte width of bu
. byteOffset
defaults to 0
.
var bytes = bigUintLE.encode.bytes
Number
of bytes last encoded
var bigUint = bigUintLE.decode(buf, [byteOffset], [byteLength])
Read BigInt
from Buffer
or TypedArray
buf
at optional
Number
byteOffset
for optional Number
byteLength
bytes. Note that if you
do not give a byteLength
all of buf
will be decoded, since BigInt
s do
not have a natural width.
var bytes = bigUintLE.decode.bytes
Number
of bytes last decoded
var bytes = bigUintLE.encodingLength(bu)
Number
of bytes required to encode BigInt
bu
npm install biguintle
FAQs
Encode / decode unsigned BigInt as little endian
The npm package biguintle receives a total of 18 weekly downloads. As such, biguintle popularity was classified as not popular.
We found that biguintle 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.