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.
Upload files encoded as base64 to carrierwave.
This small gem can be useful for API's that interact with mobile devices.
This gem requires Ruby 2.0 or higher.
Add the gem to your Gemfile:
gem 'carrierwave-base64'
Also add this if you need mongoid support:
gem "carrierwave-mongoid"
Mount the uploader to your model:
mount_base64_uploader :image, ImageUploader
Now you can also upload files by passing an encoded base64 string to the attribute. This also works for normal file uploads from file fields inside an HTML form, so you can safely replace mount_uploader
with mount_base64_uploader
to support both file input and base64 encoded input
The file extension for the uploaded base64 string is identified automatically using the mime-types gem and content_type
from the uploaded string.
If the required MIME type is not registered, you can add it, using MIME::Types#add:
MIME::Types.add(
MIME::Type.new('application/icml').tap do |type|
type.add_extensions 'icml'
end
)
You can set the file_name
option to a lambda, that will return a filename without an extension, using the model instance:
mount_base64_uploader :image, ImageUploader, file_name: -> (u) { u.username }
[DEPRECATED: Settings this option to a string is deprecated, if you still want to set the filename to a fixed string, wrap it in a Proc] To set the file name for the uploaded files, use the :file_name
option (without extention):
# Deprecated way:
mount_base64_uploader :image, ImageUploader, file_name: 'userpic'
# New way
mount_base64_uploader :image, ImageUploader, file_name: -> { 'userpic' }
File extention for the uploaded file is identified automatically based on the file contents. If it can't be identified automaticaly, it falls back to the content-type, specified in the data string.
data:image/jpeg;base64,(base64 encoded data)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that carrierwave-base64 demonstrated a healthy version release cadence and project activity because the last version was released less than 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.