
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@rabbitracker/sdk
Advanced tools
Advanced privacy-first tracking SDK with fingerprinting and security detection
Makes a website visitor identifier from a browser fingerprint. Unlike cookies and local storage, fingerprint stays the same in incognito/private mode and even when browser data is purged. 100% cookieless analytics tracking with GDPR/LGPD compliance and advanced bot detection.
Get a workspace token:
npm i @rabbitracker/sdk
# or
yarn add @rabbitracker/sdk
import RabbitTrackerSDK from "@rabbitracker/sdk";
// Initialize an agent at application startup.
const tracker = new RabbitTrackerSDK({
token: "your-workspace-token",
debug: true, // Enable for development
});
// Track page views (automatic)
// tracker.trackPageView() is called automatically
// Track conversions
tracker.trackPurchase({
value: 99.99,
currency: "USD",
productId: "product-123",
});
// Track custom events
tracker.trackCustomEvent("button_click", {
button_id: "signup",
page: "homepage",
});
// Get visitor data
console.log("Visitor ID:", tracker.getUserData().fingerprint);
<script src="https://cdn.jsdelivr.net/npm/@rabbitracker/sdk@3/dist/sdk.min.js"></script>
<script>
// Initialize the agent at application startup.
const tracker = new RabbitTracker({
token: "your-workspace-token",
});
// Track custom events
tracker.trackCustomEvent("page_interaction", {
element: "header_button",
action: "click",
});
// Get visitor identifier
const userData = tracker.getUserData();
console.log("Visitor ID:", userData.fingerprint);
</script>
Note that you need to replace your-workspace-token with a workspace token from the dashboard.
FAQs
Advanced privacy-first tracking SDK with fingerprinting and security detection
We found that @rabbitracker/sdk 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.