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.
Checkpoint Timer is a gem to provide a very lightweight Ruby stopwatch timer.
The impetus for this was some performance diagnostic work that I was doing. I wanted to see how long different method calls were taking, but wanted something more lightweight than Ruby's Benchmark library.
Add this line to your application's Gemfile:
gem 'checkpoint_timer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install checkpoint_timer
To use the timer, create an instance of the timer class.
timer = CheckpointTimer::Timer.new
timer.start
# ... execute code here
timer.checkpoint(logging: true, message: 'First checkpoint')
# ... execute some more code
timer.checkpoint(logging: true, message: 'Second checkpoint')
The timer can also be used without logging, if you wish to use the data differently
timer = CheckpointTimer::Timer.new
timer.start
# ... execute code here
elapsed_time = timer.checkpoint
The CheckpointTimer::Timer#checkpoint
method returns the elapsed time in seconds since the previous checkpoint.
Logging can also be enabled at the instance level.
timer = CheckpointTimer::Timer.new(log_all: true)
timer.start
# ... execute code here
elapsed_time = timer.checkpoint(message: 'Global logging is enabled')
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/checkpoint_timer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that checkpoint_timer 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.