Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ethdeploy-provider-zero-client
Advanced tools
A zero client standard Web3 provider for ethdeploy.
The zero client standard Web3 provider for the ethdeploy Ethereum smart-contract deployment system.
The zero-client provider was designed by the @MetaMask team, namely, @kumavis to handle the management of accounts and key signing for web3 RPC interaction.
See more here: zero-client
{
type: 'zero-client',
getAccounts: function(cb) {
cb(null, ['0x2233eD250Ea774146B0fBbC1da0Ffa6a81514cCC']);
},
signTransaction: function(rawTx, cb) {
const privateKey = new Buffer('c55c58355a32c095c7074837467382924180748768422589f5f75a384e6f3b33', 'hex');
const tx = new Tx(rawTx);
tx.sign(privateKey);
cb(null, ethUtil.bufferToHex(tx.serialize()));
},
host: 'https://morden.infura.io',
port: 8545,
}
Note, please do not store your accounts or private keys in your ethdeploy provider settings... please! That is stupid and dangerous.
npm install --save ethdeploy-provider-zero-client
Released under the MIT License, see LICENSE.md file.
FAQs
A zero client standard Web3 provider for ethdeploy.
The npm package ethdeploy-provider-zero-client receives a total of 0 weekly downloads. As such, ethdeploy-provider-zero-client popularity was classified as not popular.
We found that ethdeploy-provider-zero-client 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
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.