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.
A rack middleware for measuring GC activity during a request.
Add this line to your application's Gemfile:
gem 'rack_gc_profiler'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rack_gc_profiler
Install the middleware into your application's list of rack middlewares.
Issue a request to your application where GC will occur. Two extra headers will be appended to the response:
$ curl -v -o /dev/null -sSq yourapp.example.com
< HTTP/1.1 200 OK
:
< GC-Runs: 1
< GC-Time: 0.040000
:
{ [1219 bytes data]
* Connection #0 to host yourapp.example.com left intact
GC-Runs
is the number of times garbage collection ran during the request.
GC-Time
is the duration of all the GC runs that occured, in seconds.
Should you use this in production? Profiling anything always adds overhead. To measure this more concretely, a benchmark has been provided. See benchmark.rb in the root of the repo. On my machine, using MRI 2.3.1, GC profiling added 0.6% overhead. This equates to about 0.1ms on a 200ms request. Always evaluate in your own production environment first and decide for yourself before adding this to a production application.
To prevent information leakage, the reverse proxy upstream from your application server should log and delete the two headers listed in the section above.
To install in rails, add the following to your application.rb
:
config.middleware.use RackGcProfiler::Middleware
See http://guides.rubyonrails.org/rails_on_rack.html#configuring-middleware-stack for more details.
To install in sinatra, add the following to your application:
use RackGcProfiler::Middleware
See http://www.sinatrarb.com/intro#Rack%20Middleware for more details.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/aasmith/rack_gc_profiler.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that rack_gc_profiler 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.