
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
plcrashreport-decoder
Advanced tools
A decoder for iOS/macOS crash reports generated by PLCrashReporter
A decoder for iOS/macOS crash reports generated by PLCrashReporter
npm install plcrashreport-decoder --save
// import
const CrashReport = require('plcrashreport-decoder');
// read crash report file
const fs = require('fs');
let buffer = fs.readFileSync('path/to/crashreport');
// create a CrashReport object. The constructor accepts Buffer, Array ([number]) and ArrayBuffer.
let cr = new CrashReport(buffer);
// get the decoded JSON
let decoded = cr.toJSON();
Please run npm link before using CLI.
pl-decode example.plcrash -t json
-f: Format of decoded crash report. Can be default, string or json.
Include the minified JavaScript file in your HTML, and you will be able to use the CrashReport class.
<script src="dist/crashreport.min.js"></script>
Please see example.html for details.
Run npm run build to build a minified UMD bundle.
The project is released under MIT license. Please see LICENSE for full terms.
FAQs
A decoder for iOS/macOS crash reports generated by PLCrashReporter
We found that plcrashreport-decoder 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.