
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
website-security-scanner
Advanced tools
Lightweight website security scanner (headers, TLS, ports, basic vulns)
Fast, lightweight website security scanner for Node.js (headers, TLS, ports, basic vulns) with optional OWASP ZAP integration.
npm install -g website-security-scanner
website-security-scanner https://example.com --json
Programmatic:
const { runScan, loadConfig } = require('website-security-scanner');
(async () => {
const config = loadConfig();
const results = await runScan({ targetUrl: 'https://example.com', useZap: false, config });
console.log(JSON.stringify(results, null, 2));
})();
website-security-scanner <url> [--json] [--zap] [--config path] [--min-sev Sev]
Exit codes:
Examples:
website-security-scanner https://example.com
website-security-scanner https://example.com --json --min-sev Low
website-security-scanner http://example.com --config scanner.config.json
Create scanner.config.json:
{
"minSeverity": "Low",
"timeouts": { "defaultMs": 8000, "tlsMs": 10000, "portProbeMs": 1500 },
"concurrency": { "portProbes": 10 }
}
Run ZAP daemon and set env vars:
zap.sh -daemon -config api.addrs.addr.name=127.0.0.1 -config api.addrs.addr.regex=false -config api.key=YOURKEY
export ZAP_HOST=127.0.0.1 ZAP_PORT=8090 ZAP_API_KEY=YOURKEY
website-security-scanner https://example.com --zap --json
MIT
FAQs
Lightweight website security scanner (headers, TLS, ports, basic vulns)
We found that website-security-scanner demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.