
Research
Using Trusted Protocols Against You: Gmail as a C2 Mechanism
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
smart-require
Advanced tools
Avoid ugly require('../../../some-file')
using absolute paths, from
the root of your project.
This package follows the well-known UNIX convention where /
is the
root.
For example, in this source tree:
.
âââ index.js
âââ image
â âââ gif.js
â âââ jpg.js
â âââ png.js
âââ video
âââ mp4.js
â¦if youâre in image/gif.js
, this package allows you to require
video/mp4.js
like this:
const video = require('/video/mp4.js')
â¦instead of:
const video = require('../video/mp4.js')
Of course, it prohibits you to require anything from the root of your
system (but why doing so?). Since the behavior of require()
changes,
this is not really safe, even if I never had any problem with it. Use
at your own risk.
yarn add smart-require
â¦or:
npm install --save smart-require
Then, you just have to indicate your project root before any call to
the customized require
, usually at the beginning of your
entrypoint. If you are in index.js
in the example above, you can
write:
require('smart-require')(__dirname)
â¦or if your entrypoint is in image/jpeg.js
and you want the same
behavior:
const root = require('path').join(__dirname, '..')
require('smart-require')(root)
require-root, nice but different.
FAQs
A better require() for large projects
The npm package smart-require receives a total of 3 weekly downloads. As such, smart-require popularity was classified as not popular.
We found that smart-require 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
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.