
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.
indigotrace-sdk
Advanced tools
This javascript module exposes function to communicate with the Trace API.
import Trace from "trace-sdk-js";
// Your key should be retrieved from an environment variable or an other secure store.
// The public key will be derived from its private key.
// The 'secret' field must be an base64-encoded string of 64 bytes.
myKey = {
type: "ed25519",
secret:
"VD6zmq068l1EhaWfpRQxnlpTjGbwSN2q2XcgriBmo3Mco+7GK+BPLO49yxuQzbQ1dzd/6B+3YQb2c3BhqEaTsA=="
};
// Initialize the SDK with the API's URL
trace = Trace("https://indigotrace.com", myKey);
// This is an example of data we want to send to Trace
data = {
type: "test",
data: "data",
name: "name"
};
// Create a payload containing our data
// Since we omit the traceID, it will instanciate a new trace.
payload = trace.create(data);
// Sign the payload before sending it
signedPayload = trace.sign(payload);
// Finally, you can send the payload to the trace API.
// Before sending it, it will ensure that the fields (payload, signature) are present.
trace.send(payload);
// PAYLOAD FORMAT
// {
// payload: {
// data: {
// type: "test",
// data: "data",
// name: "name"
// },
// refs: ["ref2", "ref2"],
// traceID: "db255d6d-8e7f-45e6-99f8-cf9f1084ba9b"
// },
// signatures: [{
// type: "ed25519",
// pubKey: "EXAMPLEPUBLICKEY123",
// sig: "signedpayload"
// }]
// };
FAQs
Indigo Trace SDK
We found that indigotrace-sdk 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.