
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@gollum-js/proxy-array
Advanced tools
ProxyArray
Create a proxy for array accessor. Storage array data in localStorage or Buffer And all array method works on proxy
npm install @gollum-js/proxy-array
import { createProxyArray } from '@gollum-js/proxy-array';
const storage = {};
let length = 0;
const proxy = createProxyArray({
get(index: number): any {
return storage[index];
},
set(index: number, value: any): boolean {
storage[index] = value;
if (length < index + 1) {
length = index + 1;
}
return true;
},
getLength(): number {
return length;
},
setLength(value: number): boolean {
storage.length = value;
return true;
}
});
proxy.push('a');
proxy.push('b');
proxy.push('c');
console.log(storage) // [ 'a', 'b', 'c' ]
console.log(length) // 3
console.log(proxy[1]) // [ 'b' ]
const {createProxyArray} = require("@gollum-js/proxy-array")
const storage = {};
let length = 0;
const proxy = createProxyArray({
get(index) {
return storage[index];
},
set(index, value) {
storage[index] = value;
if (length < index + 1) {
length = index + 1;
}
return true;
},
getLength() {
return storage.length;
},
setLength(value) {
storage.length = value;
return true;
}
});
proxy.push('a');
proxy.push('b');
proxy.push('c');
console.log(storage) // [ 'a', 'b', 'c' ]
console.log(length) // 3
console.log(proxy[1]) // [ 'b' ]
FAQs
Create a proxy for array accessor
We found that @gollum-js/proxy-array 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.