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.
Identifying all the dependencies used in a project can be difficult, especially when they're spread out across many files and directories.
Deedee can locate dependencies for a variety of languages and produce a summary of the names of those dependencies as well as their versions and other relevant information.
This information can help highlight a number of issues in projects, such as out-of-date libraries, unused dependencies, and problems in package manifest files.
<script>
tags@import
$ npm install --save deedee
Or install it globally to use it from the command line:
$ npm install -g deedee
The easiest way to use deedee is from the command line:
$ deedee path/to/some/awesome/project
You can also easily use it in a project:
import path from 'path';
import deedee from '../lib/deedee.js';
deedee({
path: path.resolve('..'),
recursive: false
}).then(deps => {
console.log(JSON.stringify(deps, null, 2));
});
MIT © Forrest Desjardins
FAQs
A tool for detecting dependencies
The npm package deedee receives a total of 10 weekly downloads. As such, deedee popularity was classified as not popular.
We found that deedee 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.