
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
gulp-sentry-release-manager
Advanced tools
const gulp = require('gulp')
const createReleaseManager = require('gulp-sentry-release-manager')
const countries = ['ph']
countries.map(country => {
const releaseManager = createReleaseManager({
org: 'awesome',
project: `project-${country}`,
apiKey: 'xxx',
version: '0.0.1',
host: 'https://sentry.awesome.io'
})
gulp.task(`create-release-${country}`, releaseManager.create)
gulp.task(`remove-release-${country}`, releaseManager.remove)
gulp.task(`upload-${country}`, function() {
// `base` is important, is relative to your CDN URL
gulp.src('static/js/*.map', { base: 'static/' })
.pipe(releaseManager.upload())
})
})
gulp.task('default', ['create-release-ph'])
host
- host name of Sentry servers. Default = https://sentry.io
.org
- organization slug (required)project
- project slug (required)apiKey
- api key with project:releases
permission (required)version
- version need to be deployed (required)ignoreConflict
- ignore already exist errors. Default = true
.maxRetries
- the number of retries when having a failure. Default = 5
.sourceMapBasePath
- The base path of source maps. Default is ~/
.releaseManager.create
- create the release.releaseManager.remove
- remove the release.releaseManager.upload
- upload source maps to the release.FAQs
Create Sentry Release with failure tolerance
We found that gulp-sentry-release-manager 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.