
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.
@caleblawson/astra
Advanced tools
Vector store implementation for DataStax Astra DB, providing vector similarity search capabilities using Cassandra's vector search functionality.
npm install @mastra/astra
import { AstraVector } from '@mastra/astra';
const vectorStore = new AstraVector({
token: 'your-astra-token',
endpoint: 'your-astra-endpoint',
keyspace: 'your-keyspace' // optional
});
// Create a new collection
await vectorStore.createIndex({ indexName: 'myCollection', dimension: 1536, metric: 'cosine' });
// Add vectors
const vectors = [[0.1, 0.2, ...], [0.3, 0.4, ...]];
const metadata = [{ text: 'doc1' }, { text: 'doc2' }];
const ids = await vectorStore.upsert({ indexName: 'myCollection', vectors, metadata });
// Query vectors
const results = await vectorStore.query({
indexName: 'myCollection',
queryVector: [0.1, 0.2, ...],
topK: 10, // topK
filter: { text: { $eq: 'doc1' } }, // optional filter
includeVector: false // includeVectors
});
The Astra DB vector store requires:
token
: Your Astra DB tokenendpoint
: Your Astra DB endpointkeyspace
: (Optional) The keyspace to usecreateIndex({ indexName, dimension, metric? })
: Create a new collectionupsert({ indexName, vectors, metadata?, ids })
: Add or update vectorsquery({ indexName, queryVector, topK?, filter?, includeVector? })
: Search for similar vectorslistIndexes()
: List all collectionsdescribeIndex(indexName)
: Get collection statisticsdeleteIndex(indexName)
: Delete a collectionFAQs
Astra DB provider for Mastra - includes vector store capabilities
We found that @caleblawson/astra demonstrated a healthy version release cadence and project activity because the last version was released less than 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.