
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.
@extensionengine/pbzcomnet-signedfile
Advanced tools
Extract & verify PBZCOM@NET balance reports
Extract & verify PBZCOM@NET balance reports
npm install @extensionengine/pbzcomnet-signedfile
Extract report from signed XML envelope:
npx -p @extensionengine/pbzcomnet-signedfile report-extract <report>
Verify signed XML envelope containing balance report:
npx -p @extensionengine/pbzcomnet-signedfile report-verify <report>
Extract balance report from signed XML envelope
xmldoc
const { extract, parse } = require('@extensionengine/pbzcomnet-signedfile');
const path = require('path');
const { readFileSync } = require('fs');
const xml = readFileSync(path.join(__dirname, './reports/1110779471-20200721.rtf.sgn'), 'utf-8');
const xmldoc = parse(xml);
extract(xmldoc).then(buffer => console.log('payload:\n', buffer.toString()));
Returns Promise<Buffer> extracted payload
Verify signed XML envelope containing balance report
xmldoc
const { parse, verify } = require('@extensionengine/pbzcomnet-signedfile');
const path = require('path');
const { readFileSync } = require('fs');
const xml = readFileSync(path.join(__dirname, './reports/1110779471-20200721.rtf.sgn'), 'utf-8');
const xmldoc = parse(xml);
const isVerified = verify(xmldoc);
console.log('result:', isVerified);
Returns boolean verification result
FAQs
Extract & verify PBZCOM@NET balance reports
We found that @extensionengine/pbzcomnet-signedfile demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
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.