
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
For dealing with all the dataz. Provides helpers for safely dealing with nested data structures. This is intended to be used as a base class for wrapping any arbitrary data so you can easily and safely get and set on nested data structures. This is for you if you are tired of writing lines like this:
if (obj && obj.foo && obj.foo.bar && obj.foo.bar.baz) {
// do something with obj.foo.bar.baz
}
Now you can just do:
var d = new Dataz({
data: {
foo: {
bar: {
baz: 'fooBarBaz'
}
}
}
});
d.get('foo:bar:baz:missing'); // null
d.get('foo:bar:baz'); // 'fooBarBaz'
d.get('foo:bar'); // {baz:'fooBarBaz'}
d.get('foo'); // {bar:{baz:'fooBarBaz'}}
d.get(); // {foo:{bar:{baz:'fooBarBaz'}}}
An instance of the data class also has safe setters:
var d = new Dataz();
d.set('foo:bar:baz', 'fooBarBaz');
d.get('foo:bar:baz'); // 'fooBarBaz'
There are also a few helper methods to make operating on the data easy and simple:
var d = new Dataz({
data: {
foo: 'bar'
}
});
// Shallow merge
d.extend({
baz: 'far',
});
d.get(); // {foo: 'bar', 'baz': 'far'}
// Deep merge
d.set('baz', {
far: 'bazFar'
});
d.merge({
foo: 'foo',
baz: {
far: 'far',
bar: 'bar'
}
});
d.get(); // {foo: 'foo', 'baz': {far: 'far', bar: 'bar'}}
// Output for json
d.toJSON(); // {foo: 'foo', baz: {far: 'far', bar: 'bar'}}
d.toJSON(true); // '{"foo":"foo","baz":{"far":"far","bar":"bar"}}'
FAQs
An abstraction for wrapping arbitrary data structures
We found that dataz 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.