
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@alicloud/acm-sdk
Advanced tools
npm install @alicloud/acm-sdk
Node.js >= 8.5.0 required.
const ACMClient = require('@alicloud/acm-sdk');
const acm = new ACMClient({
endpoint: 'acm.aliyun.com', // check this from acm console
namespace: '***************', // check this from acm console
accessKey: '***************', // check this from acm console
secretKey: '***************', // check this from acm console
requestTimeout: 6000, // timeout(ms),default 6s
});
async function demo() {
// get config
const content = await acm.getConfig('test', 'DEFAULT_GROUP');
console.log('getConfig = ', content);
// get all configs
const allConfig = await amc.getAllConfigInfo();
console.log('all config:', allConfig);
// subscribe config
acm.subscribe({
dataId: 'test',
group: 'DEFAULT_GROUP',
}, content => {
console.log('config update:', content);
});
// publish config
await acm.publishSingle('test', 'DEFAULT_GROUP', JSON.stringify({value: 'test'}));
// delete config
await acm.remove('test', 'DEFAULT_GROUP');
// batch get config
const contents = await amc.batchGetConfig(['test', 'test1'], 'DEFAULT_GROUP');
console.log('batch get configs = ', contents);
}
demo();
getConfig(dataId, group)
getAllConfigInfo()
[{appName: 'xxx', dataId: 'xxx', group: 'xxx'}, ...]
, then you can get config with this infosubscribe(info, listener)
publishSingle(dataId, group, config)
unSubscribe(info, [listener])
remove(dataId, group)
batchGetConfig(dataIds, group)
FAQs
aliyun acm sdk
The npm package @alicloud/acm-sdk receives a total of 6 weekly downloads. As such, @alicloud/acm-sdk popularity was classified as not popular.
We found that @alicloud/acm-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.