Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Using s3_file_field with paperclip.
Add this line to your application's Gemfile:
gem 's3ff'
And then execute:
$ bundle
Or install it yourself as:
$ gem install s3ff
add a config like sample/config_s3_file_field.rb into your Rails config/initializers/
directory
in your application.js
//= require s3ff
file_field
input to use s3_file_field
= form_for :user do |f|
= f.s3_file_field :avatar
or if you're using simple_form
= simple_form_for :user do |f|
= f.input :avatar do
= f.s3_file_field :avatar, :class => "form-control"
= include_s3ff_templates
NOTE: Feel free to modify & render the templates manually, but keep the s3ff_
prefixed CSS classes for our javascript to work properly.
To illustate, if you have a file field like this
<input type="file" name="user[avatar]">
When s3ff
kicks in, it would upgrade the field to a s3_file_field
. When your user chooses a file, it will be uploaded, with a progress indicator, directly into your S3 bucket (see s3_file_field
gem for configuration). Your form
will be disabled during the upload and re-enabled once upload completes. After this process, a new hidden form field will be attached to your form:
<input type="file" name="user[avatar_direct_url]" value="https://....">
s3ff
designed to minimize moving parts and code changes to your Rails app - all it does is give you new hidden form fields in return for every direct s3 file upload that happened in your user's browser.
How you deal with these form fields are entirely up to you. Here's a simple way:
If your controller was specifying
params.require(:user).permit(:avatar)
It would need to be changed to accept the new form fields
params.require(:user).permit(:avatar, :avatar_direct_url)
If your model was originally
class User < ActiveRecord::Base
has_attached_file :avatar
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
end
Download the file from S3 when given avatar_direct_url
. This leaves all your existing Paperclip code and logic unchanged.
class User < ActiveRecord::Base
has_attached_file :avatar
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
# s3ff changes
def avatar_direct_url=(value)
open(value, ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE) do |file|
self.attributes = {
avatar: file,
avatar_file_name: File.basename(value),
}
end
end
end
It is not ideal to handle your attachment processing synchronously inside the web request. If you have Sidekiq
or DelayedJob
installed, you should use the download_from_direct_url_with_delay
helper method instead
class User < ActiveRecord::Base
has_attached_file :avatar
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
# s3ff changes
# for delayed_job, you MUST add a `avatar_direct_url` database column of string type
# for sidekiq, a virtual attribute `avatar_direct_url` will be added
download_from_direct_url_with_delay :avatar
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)This repository is MIT-licensed, see LICENSE.
FAQs
Unknown package
We found that s3ff 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.