
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@white-matrix/binance-wallet-service
Advanced tools
This project has been created using webpack scaffold, you can now run
npm run compile
to bundle your application
npm run start
to start your application
src 目录下为主项目目录 extension.ts 为插件入口文件,暴露三个属性
activate: 插件激活时,触发该函数,函数入参,
ctx: 插件内部上下午
Impl: 插件接口
deactivate: 插件注销时,触发该函数
config: 插件提供基本信息,详见 PluginConfigurations 类型
const addControls = Impl.addControl({
componentFunc: controls,
name: 'Deploy & Interaction',
iconName: 'GroupObject',
})
ctx.subscriptions.push(addControls)
const setWelcomePage = Impl.setWelcomePage({
componentFunc: welcomePage,
name: 'welcomePage',
iconName: 'GroupObject',
})
ctx.subscriptions.push(setWelcomePage)
const setCommand = Impl.registerCommand({
id: 'commandId',
name: 'command',
callback: <T>(data?: T) => void,
})
ctx.subscriptions.push(setCommand)
const registerFunction = Impl.registerFunction({
name: 'functionName',
function: <T>(data?: T) => void,
})
ctx.subscriptions.push(registerFunction)
FAQs
ChainIDE binance extension
The npm package @white-matrix/binance-wallet-service receives a total of 2 weekly downloads. As such, @white-matrix/binance-wallet-service popularity was classified as not popular.
We found that @white-matrix/binance-wallet-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.