
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
npm install rx7z --save
Rx7z installs the latest 7zip from 7zip.org for Windows. Other operating systems (p7zip) have not been configured yet. Plans for an assumed global installation of (p)7zip via configuration is on the table for discussion.
For simplicity sake i took a redux-ish approach because i would like to implement compression ques and other features in the future.
let rx7 = new Rx7z();
let files = [
`${path.join('c:/','path','tofiles')}*.txt`,
`${path.join('c:/','path','tofiles')}*.jpg`
];
rx7.Manager.subscribe((action: Rx7zActions) => {
switch (action.type) {
case Rx7zActionType.CreateArchiveProgress: {
// contains the string value of percentage complete.
console.log(action);
}
case Rx7zActionType.CreateArchiveCurrentFile: {
// do something when current file changes.
console.log(action);
}
case Rx7zActionType.CreateArchiveError: {
console.log(action);
}
case Rx7zActionType.CreateArchiveFailure: {
// do something if it fails.
}
case Rx7zActionType.CreateArchiveSuccess: {
// Do something when its done.
}
default:
break;
}
})
// Dispatch the action to create an archive with the files passed in.
rx7.Archive.createArchive('./test.7z', ...files);
// Dispatch the action to create an archive with the files passed in.
rx7.dispatch(new CreateArchiveAction('output/path/to/archive.7z', files));
FAQs
RxJS 7zip Interface
We found that rx7z 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.