
Research
Malicious Go “crypto” Module Steals Passwords and Deploys Rekoobe Backdoor
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.
@solucx/corote-tree
Advanced tools
A Vue tree component that allows you to present hierarchically organized data in a nice and logical manner.
Npm:
$ npm install corote-tree
Yarn:
$ yarn add corote-tree
To run that demo on your own computer:
npm installnpm run buildnpm run storybookhttp://localhost:9001/There are a lot of examples for you. All sources of stories are located in corote-tree/docs/storybook/stories.
<!-- Vue Component -->
<template>
<tree
:data="items"
:options="options"
ref="tree"
/>
</template>
<script>
import Vue from 'Vue'
import CoroteTree from 'corote-tree'
Vue.use(CoroteTree)
export default {
...
data() {
return {
items: [
{text: 'Item 1'},
{text: 'Item 2'},
{text: 'Item 3', children: [
{text: 'Item 3.1'},
{text: 'Item 3.2'}
]}
],
options: {
checkbox: true
}
}
}
...
}
</script>
Check out the package.jsons script section. There are 2 scripts:
npm run dev - it will open browser and you can play with codenpm run build - it will craete a module file in production modeFAQs
A Vue.js tree component.
The npm package @solucx/corote-tree receives a total of 1 weekly downloads. As such, @solucx/corote-tree popularity was classified as not popular.
We found that @solucx/corote-tree demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.