
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.
openscript
Advanced tools
Openscript allows users to maintain a linux-based operations system without a deep terminal familiarity.
The backend of openscript is written using the serverless framework and is maintained by the AWS ecosystem. It exposes a graphql endpoint which is used from the clients to interact with the platform.
Use the CLI client to execute and publish your own scripts.
npm install -g openscript
// OR
yarn global install openscript
// SIGNUP AND ACTIVATE YOU ACCOUNT
XXXXXX:~$ openscript signup
> Username (E-Mail): xxxxx@mail.com
> Password:
> LOG: A confirmation code has been sent to xxxxx@mail.com.
> Enter verification code: 099615
> LOG: Account confirmed.
// LOGIN TO YOUR ACTIVATED ACCOUNT
XXXXXX:~$ openscript login
> Username (E-Mail): xxxxx@mail.com
> Password:
> LOG: Successfully logged in.
after your successful login you are able to use the additional commands to publish OR update your own scripts.
Here is an example of a simple script:
./foo.yml
# Name of the package
name: foobar
# The script version
version: 0.0.1
# The package description (what kind of problem does it solve ?)
description: This is the foo script assigned to the bar namespace
# The name space of the package. (if not reserved)
namespace: bar # optional
# The commands will be executed as superuser after a user-warning
superuser: false # optional
# Array of scripts which represents to executed command on the users system
execute:
- echo "hello foo"
use now the following command to test your script on the local system:
XXXXXX:~$ openscript execute ./foo.yml
> hello foo
> LOG: Execution was successful.
finally publish the package using your logged in session:
XXXXXX:~$ openscript publish ./foo.yml
> LOG: Update subscription token...
> Subscription connection closed
> LOG: Script bar/foobar@0.0.1 successfully published.
The UI client for normal desktop users is not implemented yet, but the UI client is the final goal of the project.
FAQs
a package manager for linux-scripts
The npm package openscript receives a total of 14 weekly downloads. As such, openscript popularity was classified as not popular.
We found that openscript 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.