Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Simple serialization with a sprinkling of type safety. Part of your complete breakfast.
Install the gem and add to the application's Gemfile by executing:
$ bundle add rice_bubble
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install rice_bubble
Create a subclass of RiceBubble::Serializer
and add some attributes:
class CharacterSerializer < RiceBubble::Serializer
attributes(
name: string,
player_name: optional(string),
class: enum('fighter', 'wizard', 'thief'),
stats: object(
strength: integer,
dexterity: integer,
constitution: integer,
intelligence: integer,
wisdom: integer,
charisma: integer,
)
)
end
Then you can use the new serializer to convert your data to a JSON-friendly representation:
json = CharacterSerializer.new(my_character).call # => { name: "...", ... }
Note: you can also use CharacterSerializer.call(my_character)
.
Name | Expects | Options | Example |
---|---|---|---|
any | any of the specified types | array of attribute types | any(string, integer) |
boolean | true or false | boolean | |
date | Date or #to_date | date | |
enum | matching string | array of string values | enum('red', 'blue', 'green') |
integer | Integer or #to_i | max , min | integer(min: 3, max: 20) |
literal | exactly matching value | literal | literal('foo') |
number | Numeric | max , min | number(min: 3, max: 20) |
object | Object or Hash | hash of object names and attribute types | object(name: string, age: integer) |
optional | value or nil | attribute type | optional(string) |
serialized | Object or Hash | Serializer class | serialized(SkillSerializer) |
string | String or #to_s | max , min , format | string(min: 3, max: 20, format: /\A[a-z]+\z/i) |
time | Time or #to_time | time |
In this way, you can recursively build up quite complex nested structures of attributes in your serializer.
optional
All attributes are required unless marked as optional. You can either do this with
the optional
attribute type, or by appending .optional
to the attribute definition.
That is, the following are equivalent:
optional(string(min: 3))
string(min: 3).optional
The attribute types are looked up automatically in the namespace
RiceBubble::Attributes
. Any subclass of RiceBubble::Attributes::Base
located there
will automatically be found by the serializer.
class RiceBubble::Serializer::Wrap < RiceBubble::Attributes::Base
def initialize(with: %w([ ]), &)
super(&)
@before, @after = with
end
def coerce(value)
"#{before}#{value}#{after}"
end
end
class WrappingSerializer < RiceBubble::Serializer
attributes(
name: wrap(with: %w({ }))
)
end
WrappingSerializer.call({ name: 'Spicy Beef' }) # => { name: '{Spicy Beef}' }
By default, attributes know how to fetch their values from the object being serialized by either (in this order):
class FullNameSerializer
attributes(
full_name: string
)
def full_name
[object.first_name, object.last_name].join(' ')
end
end
You can also change how a value is retrieved by passing a block to the attribute:
class FullNameSerializer
attributes(
full_name: string { |o, _| [o.first_name, o.last_name].join(' ') }
)
end
The block takes two values: the object being serialized, and (optionally) the name of the key being retrieved.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitLab at https://gitlab.com/fauxparse/rice_bubble. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the RiceBubble project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that rice_bubble 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.