
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
make-symlinks
Advanced tools
Create symbolic link (file symlink) using glob
$ npm install make-symlinks
const makeSymlinks = require('make-symlinks');
const patterns = ['/home/guntur/dotfiles/*', '!/home/guntur/dotfiles/.git'];
const path = '/home/guntur/';
makeSymlinks(patterns, path).then(symlinks => {
symlinks.forEach(symlink => {
console.log(symlink.path, '→', symlink.target);
});
});
const symlinks = makeSymlinks.sync(patterns, path);
symlinks.forEach(symlink => {
console.log(symlink.path, '→', symlink.target);
});
patterns
, path
, [options]
)<Promise<object>>
- Returns a promise for an array object of symlinks patterns and path.patterns
, path
, [options]
)<Promise<object>>
- Returns an array object of symlinks patterns and path.See all supported globby
options.
cwd
: <string>
(optional) - The source files to resolve from.
process.cwd()
force
: <boolean>
(optional) - Delete symlink if exists.
false
dryRun
: <boolean>
(optional) - See what would be created symlinks.
false
Example
const options = {
cwd: process.env.HOME,
dryRun: true
};
makeSymlinks('**/*', '/path/symlinks/dest', options).then(symlinks => {
symlinks.forEach(symlink => {
console.log(symlink.path, '→', symlink.target);
});
});
MIT © Guntur Poetra
FAQs
Create symbolic link (file symlink) using glob
We found that make-symlinks 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 Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.