
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.
@veecode-platform/backstage-plugin-vee-backend
Advanced tools
Vee Backend is a plugin that provisions communication with the APIS of the AI engines, processing the data, creating vectors and managing chats and makes them available to the front-end plugin vee.
As a first delivery only one engine is available, the openAI.
If you are using yarn 3.x:
yarn workspace backend add @veecode-platform/backstage-plugin-vee-backend
If you are using other versions:
yarn add --cwd packages/backend @veecode-platform/backstage-plugin-vee-backend
app-config.yamlWe start by configuring the vee in the file app-config.yaml, which is in the root of your project:
vee:
openai:
apiBaseUrl: https://api.openai.com/v1
apiKey: ${OPENAI_API_KEY}
model: gpt-4o #The desired model, for best results use gpt-4o >
You also need to configure the config.d.ts file in the backend:
packages > backend > src > config.d.ts:
export interface Config {
vee?:{
openai?: {
apiBaseUrl: string;
apiKey: string;
model: string;
}
}
}
The next step will be to configure the backend:
Create a file called vee.ts in packages> backend > src > plugins > vee.ts:
import { PluginEnvironment } from '../types';
import { Router } from 'express';
import {createRouter} from '@veecode-platform/backstage-plugin-vee-backend';
export default async function createPlugin({
logger,
auth,
httpAuth,
httpRouter,
permissions,
discovery,
config
}: PluginEnvironment): Promise<Router> {
return await createRouter({
logger,
auth,
httpAuth,
httpRouter,
permissions,
discovery,
config
});
}
In packages > backend > src > index.ts:
+ import vee from './plugins/vee'
...
async function main() {
const config = await loadBackendConfig({
argv: process.argv,
logger: getRootLogger(),
});
const createEnv = makeCreateEnv(config);
...
+ const veeEnv = useHotMemoize(module, () => createEnv('vee'));
...
+ apiRouter.use('/vee', await vee(veeEnv));
...
}
In packages > backend > src > index.ts:
import { createBackend } from '@backstage/backend-defaults';
const backend = createBackend();
backend.add(import('@backstage/plugin-app-backend/alpha'));
backend.add(import('@backstage/plugin-proxy-backend/alpha'));
backend.add(import('@backstage/plugin-scaffolder-backend/alpha'));
backend.add(import('@backstage/plugin-techdocs-backend/alpha'));
...
+ backend.add(import('@veecode-platform/backstage-plugin-vee-backend'));
backend.start();
| Method | Path | Endpoint |
|---|---|---|
| POST | /submit-repo | backendBaseUrl/api/vee/submit-repo |
| POST | /chat-analyze-repo | backendBaseUrl/api/vee/chat-analyze-repo |
| POST | /clone-repository | backendBaseUrl/api/vee/clone-repository |
| DELETE | /chat-analyze-repo | backendBaseUrl/api/vee/chat-analyze-repo |
See 👉Vee Common
This plugin provides the following permissions:
veeReadPermission 👉 Permission to make the plugin visible and access it.veeScaffolderReadPermission 👉 Permission to make the template generation feature visible.veeAnalyzerReadPermission 👉 Permission to make the local repository analysis feature visible.🚨 View Backstage docs to learn how to set up your instance of Backstage to use these permissions.
FAQs
Unknown package
The npm package @veecode-platform/backstage-plugin-vee-backend receives a total of 6 weekly downloads. As such, @veecode-platform/backstage-plugin-vee-backend popularity was classified as not popular.
We found that @veecode-platform/backstage-plugin-vee-backend demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.