Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
An isometric, schema based form generator that can be used in the client, on the server, or even to pre-compile forms in the build phase. This is the core library that is used to register form types.
An isometric, schema based form generator that can be used in the client, on the server, or even to pre-compile forms in the build phase. This is the core library that is used to register form types. Support will soon be added for pluggable "processors" that can be loaded to create types for different use cases and different frameworks.
###Example
var isoForm = new IsoForm();
// To use, register a type with a name and a template function
isoForm.addItemType('input', function (itemData) {
return '<input id="'+itemData.id+'">';
});
// Or types can be registered with strings instead
isoForm.addGroupType('group', '<div>', '</div>');
var form = isoForm.build({
type:'group',
items: [
{ type: 'input', id: 'test' }
]
});
// form.isValidSchema == true;
// form.html == '<div><input id="test"></div>';
Warning: This is still very much a work in progress.
FAQs
Generate form html, js, and json-schema all from one master schema.
The npm package iso-form receives a total of 0 weekly downloads. As such, iso-form popularity was classified as not popular.
We found that iso-form 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.