
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.
form-input-serialize
Advanced tools
form-input-serialize provides helper functions to retrive form props and form values
inputPropsLookup(fieldsProps, fieldName) | Argument | Type | Example |
|---|---|---|
fieldsProps | object | {name: {type: 'text'}, email: {type: 'email'}} |
fieldName | string | name, email[0], email[1] |
####returns
object: props, e.g. {type: 'text'}
####e.g.
const fieldsProps = {
name: { type: 'text' },
age_group: {
type: 'select',
size: 4,
options: []
}
address: {
type: 'nested',
fields: {
street: {
type: 'text'
}
}
}
};
const fieldName = 'address[0][street]';
const props = inputPropsLookup(fieldsProps, fieldName);
// <input name={fieldName} {...props} />
formInputsSerialize(form)formInputsSerialize(form)
| Argument | Type | Example |
|---|---|---|
form | DOMNode | form element |
####returns
object. serialized, e.g. {type: 'text'}
####e.g.
// <form ref={f => this.form =f}><input name="message" value="hello"/></form>
const values = formInputsSerialize(this.form);
// { message: 'hello' }
inputValueLookup(values, fieldName) | Argument | Type | Example |
|---|---|---|
values | object | {address: [ {zip: '55555'} ]} |
fieldName | string | address[0][zip] |
####returns
any. input value, e.g. {type: 'text'}
####e.g.
const values = {
name: 'Ali',
age_group: '31-40'
address: {
0: {
street: '13 Calle 49a'
}
};
const fieldName = 'address[0][street]';
const value = inputValueLookup(values, fieldName);
// <input name={fieldName} value={value} />
FAQs
Serialize/Deserialize form input, and lookup
The npm package form-input-serialize receives a total of 5 weekly downloads. As such, form-input-serialize popularity was classified as not popular.
We found that form-input-serialize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.