
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@bugsplat/elfy
Advanced tools
A tiny utility for parsing ELF/SELF files.
npm i @bugsplat/elfy
ElfFile
using the async static factory function create
. The ElfFile
class implements Disposable
so you should use a using statement in TypeScript 5.2+ or call dispose
manually.import { ElfFile } from '@bugsplat/elfy';
using elfFile = await ElfFile.create('path/to/elf/file');
// or
const elfFile = await ElfFile.create('path/to/elf/file');
try {
...
} finally {
elfFile.dispose();
}
readSection
. This method throws if the section does not exist.const contents: Buffer = await elfFile.readSection('.note.gnu.build-id');
tryReadSection
.const { success, section } = await elfFile.tryReadSection('.note.gnu.build-id');
BugSplat is a software crash and error reporting service with support for game engines like Unreal Engine, and supports platforms such as PlayStation, Xbox and many more. BugSplat automatically captures critical diagnostic data such as stack traces, log files, and other runtime information. BugSplat also provides automated incident notifications, a convenient dashboard for monitoring trends and prioritizing engineering efforts, and integrations with popular development tools to maximize productivity and ship more profitable software.
FAQs
Tiny utility for parsing ELF/SELF files.
The npm package @bugsplat/elfy receives a total of 567 weekly downloads. As such, @bugsplat/elfy popularity was classified as not popular.
We found that @bugsplat/elfy 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.