
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
ActiveUxid is a library for generating obfuscated UXid's.
Add this line to your application's Gemfile:
gem 'active_uxid'
And then execute:
$ bundle
Or install it yourself as:
$ gem install active_uxid
rails generate active_uxid:install
will generate the following file:
../config/initalizers/active_uxid.rb
ActiveUxid.configure do |config|
config.encoding_chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
config.encoding_length = 26
config.encoding_salt = 1_369_136
end
# Hash ID's are reversible but less performant
# than ULID
ActiveUxid::Hash.encode(10) #=> 'q5D8inm0'
ActiveUxid::Hash.decode('q5D8inm0') #=> 10
# ULID are secure as they are not reversible
# They are also more performant than Hash ID's
ActiveUxid::Ulid.encode #=> '1mqfg9qa96s8s5f02o1ucf8lcc'
class User < ActiveRecord::Base
# Add a uxid binary attribute to the corresponding table.
include ActiveUxid::Record::Hash
# Or
include ActiveUxid::Record::Ulid
end
# Hash UXid's type only
User.find_by_uxid('x123') #=> find record by uxid
user = User.new
user.uxid_to_id #=> decodes the records uxid to id
Your contribution is welcome.
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that active_uxid 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.