
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
SourceMapsFixer is a set of Rake tasks for fixing sourceMappingURLs.
It is helpful for Rails apps where the main front-end code lives in the separate directory like frontend
. But the app also uses Sprockets to process outputted bundles and additional assets inside app/assets
directory. bin/rails assets:precompile
command compiles assets to public/assets
directory. Fingerprints are added to asset filenames during compilation by default. It is useful in conjunction with far-future headers.
When webpack produces bundles to app/assets/bundles
, each contains sourceMappingURL at the bottom (if configured). This URL links to the corresponding source map.
But when Sprockets compile assets to public/assets
, fingerprints are added to all asset filenames.
sourceMappingURLs are intact, which makes them point to invalid files without fingerprints.
SourceMapsFixer fixes sourceMappingURLs inside bundles.
Instead of running
$ bin/rails assets:precompile
run
$ bin/rails assets:prepare
Add source_maps_fixer to your application's Gemfile:
gem 'source_maps_fixer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install source_maps_fixer
bin/rails assets:precompile
correctly replaces sourceMappingURLs for JS files but adds unnecessary commentsThe gem is available as open source under the terms of the MIT License.
Zbigniew Humeniuk from Art of Code
If you want to make your life easier in other areas of web app development, I strongly recommend you to take a look at my other project called the Loco framework 🙂. It is pretty powerful and makes a front-end <-> back-end communication a breeze (among other things).
FAQs
Unknown package
We found that source_maps_fixer 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
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.