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.
@alrra/travis-scripts
Advanced tools
Save travis-scripts
as a devDependency
to package.json
:
$ npm install travis-scripts --save-dev
Generate a GitHub application token for command-line use. See GitHub’s documentation for more info.
Install the Travis client and run:
$ travis encrypt -r "<username>/<repository>" \
GH_TOKEN="<your_github_access_token>" \
GH_USER_EMAIL="<your_email>" \
GH_USER_NAME="<your_name>" \
--add env.global
This adds an entry to your .travis.yml
file:
env:
global:
- secure: "<secure_key>"
Specify the commands to be run in .travis.yml
.
Here’s an example that runs npm install && npm run build
against the master
branch whenever Travis CI completes a run,
after which the resulting build
directory gets deployed to
the gh-pages
branch:
after_success:
- $(npm bin)/update-branch --commands "npm install && npm run build"
--commit-message "Hey GitHub, this content is for you! [skip ci]"
--directory "build"
--distribution-branch "gh-pages"
--source-branch "master"
Note that these scripts use travis-after-all
to ensure this is only executed once, even when there are multiple jobs
in the build matrix.
FAQs
Scripts that can help automate certain things using Travis CI
The npm package @alrra/travis-scripts receives a total of 72 weekly downloads. As such, @alrra/travis-scripts popularity was classified as not popular.
We found that @alrra/travis-scripts 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.