Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
RSpec Delivery is a gem designed to post to a web-service the results of your rspec test. (still in development)
Add this line to your application's Gemfile:
gem 'rspec_delivery'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec_delivery
Once you have the RSpec Delivery gem installed, you need to specify 'RspecDelivery' as the formatter to be used when running your rspec tests.
in a Rakefile:
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = "-r post_rspec/formatter -f RspecDelivery::Formatter"
end
or within your .rspec file:
--format RspecDelivery::Formatter
--color
or from the command line:
rspec -r rspec_delivery/formatter --format RspecDelivery::Formatter --color
or from within your spec_helper.rb
require 'rspec_delivery/formatter'
RSpec.configure do |config|
config.add_formatter(RspecDelivery::Formatter)
config.color_enabled = true
end
You also need to add a config var within the Rspec.config block to specify an endpoint to post to:
RSpec.configure do |config|
config.add_setting :rspec_delivery_endpoint
config.rspec_delivery_endpoint = 'http://localhost:3000/...'
end
Once your rspec suite finishes running, it will send a POST to your specified endpoint with a body that looks like:
{
"rspec_data"=>{
"duration"=>184.146366,
"example_count"=>9,
"failure_count"=>4,
"pending_count"=>0
},
"errors"=>[
{
"description"=>"Example description #1...",
"status"=>"failed",
"run_time"=>15.583829,
"file_path"=>"./spec/models/example_1.rb",
"line_number"=>"10"
}, {
"description"=>"Example description #2",
"status"=>"failed",
"run_time"=>22.671084,
"file_path"=>"./spec/controllers/example_2.rb",
"line_number"=>"38"
},
....
],
"successes"=>[
{
"description"=>"Example description #3",
"status"=>"passed",
"run_time"=>22.481478,
"file_path"=>"./app/specs/models/example_3.rb",
"line_number"=>"5"
},
....
],
"pending"=>nil
}
After the POST is sent, a message will be displayed within your terminal that contains the rspec suite summary (total time spent running tests, number of tests, number of failed tests, number of pending tests, and success rate) and two additional line items including the server response status and the server response body.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that rspec_delivery 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.