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.
Burden is a task management tool for Rake. It records all tasks invocations.
Burden Web is a web interface for Burden.
Add this line to your application's Gemfile:
gem 'burden'
And then execute:
$ bundle
$ bundle exec rails generate burden:install
For non-Rails apps, add these lines to the top of your application's Rakefile.
For Rails apps, create an initializer containing these lines.
require 'burden'
Burden.configure do |c|
c.storage = :active_record # or :mongoid, :mongo_mapper
c.ignored_tasks = [/^db:/, /environment/]
c.on_failure = ->(task_name, execution_time, timestamp){
Mail.new(to: me,
subject: "Task #{task_name} failed!",
body: <<-MSG
Started at: #{timestamp}
Execution time: #{execution_time}s
Status: FAILED
MSG
).send
}
end
All configuration options are optional.
Burden::Storage.run.where(name: 'db:migrate', success: false).order('created_at desc').limit(10)
Burden comes with a nice dashboard to view and manage your tasks right from the web.
To install it add this line to your application's Gemfile:
gem 'burden_web'
Mount Burden's web interface to the path of your choise in config/routes.rb
:
Rails.application.routes.draw do
mount BurdenWeb::Engine => '/burden'
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that burden 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.