
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
buffer-crc32
Advanced tools
crc32 that works with binary data and fancy character sets, outputs buffer, signed or unsigned data and has tests.
Derived from the sample CRC implementation in the PNG specification: http://www.w3.org/TR/PNG/#D-CRCAppendix
This package requires Node 8+ to work.
npm install buffer-crc32
const crc32 = require('buffer-crc32');
// works with buffers
const buf = Buffer([0x00, 0x73, 0x75, 0x70, 0x20, 0x62, 0x72, 0x6f, 0x00]);
crc32(buf); // -> <Buffer 94 5a ab 4a>
// has convenience methods for getting signed or unsigned ints
crc32.signed(buf); // -> -1805997238
crc32.unsigned(buf); // -> 2488970058
// will cast to buffer if given a string, so you can
// directly use foreign characters safely
crc32('自動販売機'); // -> <Buffer cb 03 1a c5>
// and works in append mode too
const partialCrc = crc32('hey');
const partialCrc = crc32(' ', partialCrc);
const partialCrc = crc32('sup', partialCrc);
const partialCrc = crc32(' ', partialCrc);
const finalCrc = crc32('bros', partialCrc); // -> <Buffer 47 fa 55 70>
This was tested against the output of zlib's crc32 method. You can run
the tests withnpm test (requires tap)
https://github.com/alexgorbatchev/node-crc, crc.buffer.crc32 also
supports buffer inputs and return unsigned ints (thanks @tjholowaychuk).
MIT/X11
The 'crc' package offers a wider range of CRC algorithms, including CRC32. It provides more flexibility compared to buffer-crc32 but might be slightly more complex to use for simple CRC32 calculations.
This package is designed for streaming data and calculating CRC32 checksums on the fly. It's more suited for scenarios where data is being processed in streams, compared to buffer-crc32 which works on buffers.
FAQs
A pure javascript CRC32 algorithm that plays nice with binary data
The npm package buffer-crc32 receives a total of 34,025,475 weekly downloads. As such, buffer-crc32 popularity was classified as popular.
We found that buffer-crc32 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.