
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
kscrash-converter
Advanced tools
This module provides a small tool for converting KSCrash JSON crash reports for iOS to the Apple Crash Format described here.
You can grab this module from npm easily:
$ npm install kscrash-converter
The API is very small as the scope of the module is pretty straightforward:
var Converter = require('kscrash-converter');
// convert a JSON file
Converter.convert_file('../crash.json');
// convert a JSON object
Converter.convert_json(my_json_crash_obj);
// convert a JSON string
Converter.convert_string(my_raw_json_string);
These three functions should provide all you need to get going.
Inside the test/resources
directory you'll find a number of example JSON/Apple crash reports (taken from the KSCrash repo). All JSON crashes will translate to their corresponding Apple crash format in the test suites (again in the test/
repo). Assuming all of these tests pass, this tool will be deemed fully functional. The intent is to keep full compatibility with the reports from KSCrash.
There is also a small file in bin/
named cli
which will accept a single filename as first argument to the script, parse it, and then spit out the converted crash to stdout. This is just for convenience when testing and shouldn't really be used for anything beyond that.
FAQs
Small tool to convert KSCrash JSON reports to Apple Crash Format
We found that kscrash-converter 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.