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.
A simple utility for parsing PDB files into an easily useable JSON format that handles atoms ,residues, and chains.
npm install --save parse-pdb
const parsePdb = require('parse-pdb');
const { readFileSync } = require('fs');
const pdbString = readFileSync('./3aid.pdb', 'utf8');
const parsed = parsePdb(pdbString);
console.log(parsed.atoms);
/*
[ { serial: 1,
name: 'N',
altLoc: '',
resName: 'PRO',
chainID: 'A',
resSeq: 1,
iCode: '',
x: -2.555,
y: 9.253,
z: 34.411,
occupancy: 1,
tempFactor: 30.6,
element: 'N',
charge: '' },
...1845 others
]
*/
The output json is an object containing arrays of each structure keyed on record name, according to the pdb spec.
atoms:
serial: integer
name: string
altLoc: string
resName: string
chainID: string
resSeq: integer
iCode: string
x: float
y: float
z: float
occupancy: float
tempFactor: float
element: string
charge: string
seqRes:
serNum: integer
chainID: string
numRes: integer
resNames: array of strings
residues:
id: integer (count)
serNum: integer
chainID: string
resName: string
atoms: array of atoms
chains: Map
key: chainID
value:
id: integer (count)
chainID: string
residues: array of residues
MIT. See LICENSE file.
FAQs
A parser for the Protein Data Bank (PDB) molecule format
We found that parse-pdb 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.