
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
RailsMagick is a simple Rails interface with command line ImageMagick to do very common image manipulation functions.
At the moment, RailsMagick does three things:
Make sure that you have ImageMagick installed as a command line tool. You need to be able to run "identify" and "convert" commands from the command line, as the user that will run Rails. To test, just type "identify" and "convert" in the command line terminal to see if they are installed.
Add the following to your Gemfile:
gem 'rails_magick'
Run 'bundle install' from the command line to update your gems.
Gives you information about an image.
result = RailsMagick.identify(path_to_file)
This will return a hash.
puts result[:type]
puts result[:width]
puts result[:height]
Resamples an image proportionally to fit within the bounding box dimensions. Will raise a RuntimeError if it fails, or IOError if the file doesn't exist.
Parameters: infile (path to file), outfile (path to file), width, height, quality (default is 80)
begin
RailsMagick.resample(infile, outfile, 640, 640, 80)
rescue Exception => e
puts e.message
end
Will resample and crop the image proportionally to FILL the bounding box dimensions. Will raise a RuntimeError if it fails, or IOError if the file doesn't exist.
Parameters: infile (path to file), outfile (path to file), width, height, quality (default is 80)
begin
RailsMagick.create_thumbnail(infile, outfile, 100, 100, 80)
rescue Exception => e
puts e.message
end
FAQs
Unknown package
We found that rails_magick 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.