Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@doc.ai/simple-normalizer
Advanced tools
Simple normalizer that makes it easier to extract targets from known importers.
Node.js library that simplfies normalization of session data from importers into known targets.
import _ from 'lodash';
import Normalize from '@doc.ai/simple-normalizer';
const targets = Normalize({
// Importer ID which can be retrieved from the package.json name of the importer
"ai.doc.neuron.app.selfie" : {
// Target that can be fulfilled by this importer
// This specific example will extract the latest result
age: results => ({
id: _.get(results, '0.id'),
value: _.get(results, '0.result.age'),
service_source: _.get(results, '0.app'),
omics: _.get(results, '0.omics'),
updatedAt: _.get(results, '0.updatedAt'),
}),
},
"ai.doc.neuron.app.23andme": {
riskOfCancer: results => (GetPredictionOfRiskFromModelService(results)),
}
}, [{... result}])
See also the list of contributors who participated in this project.
FAQs
Simple normalizer that makes it easier to extract targets from known importers.
We found that @doc.ai/simple-normalizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.