
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
@huolala-tech/nad-runtime
Advanced tools
The runtime lib of the Nad project.
yarn add @huolala-tech/nad-runtime
or
npm install @huolala-tech/nad-runtime --save
import { NadInvoker } from '@huolala-tech/nad-runtime';
// This code will request http://localhost/users/123 with GET mtehod.
const getUserInfo = async () => {
return await new NadInvoker('http://localhost').open('GET', '/users/{id}').addPathVariable('id', 123).execute();
};
import { NadInvoker } from '@huolala-tech/nad-runtime';
// This code will request http://localhost/getUser?id=123 with GET mtehod.
const getUserInfo = async () => {
return await new NadInvoker('http://localhost').open('GET', '/getUser').addRequestParam('id', id).execute();
};
import { NadInvoker } from '@huolala-tech/nad-runtime';
// This code will request http://localhost/getUser?id=1&type=2 with GET mtehod.
const getUserInfo = async () => {
return await new NadInvoker('http://localhost')
.open('GET', '/getUser')
.addModelAttribute({ id: 1, type: 2 })
.execute();
};
import { NadInvoker } from '@huolala-tech/nad-runtime';
// This code will request http://localhost/userService with POST mtehod and send payload {"id":123}.
const getUserInfo = async () => {
return await new NadInvoker('http://localhost').open('POST', '/userService').addRequestBody({ id: 123 }).execute();
};
FAQs
The runtime lib of the Nad project
The npm package @huolala-tech/nad-runtime receives a total of 0 weekly downloads. As such, @huolala-tech/nad-runtime popularity was classified as not popular.
We found that @huolala-tech/nad-runtime demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.