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.
NOTE: This gem has just begun development. Many changes are going to be made often and can be breaking.
Simple Bind's goal is to give a realtime feel to your Ruby on Rails application without the added weight of a Javascript framework while being as unobtrusive as possible.
When content changes in a HTML Input field, update labels and/or display elements on your browser automatically. Note: this is not Two Way Data Binding and any changes would only be reflected on the browser in which the changes were made.
Add this line to your application's Gemfile:
gem 'simple_bind'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simple_bind
application.js
//= require simple_bind
Within the views, there are two parts for the data bind. You have to select an input to be the binder and some element to be the listener.
For the binder, we create a data attribute called data-bind
and set it to some ID. This should be a unique value so it does not conflict with other data binds on the current view.
<%= form_with model: @object do |f| %>
<%= f.text_field :name, data: { bind: @object.object_id } %>
<% end %>
For the listener, we create an attribute called bind
and have it set to the same ID as the Binder.
<%= content_tag :span, @object.name, bind: @object.object_id %>
For the binder, we create a data attribute called data-bind
and set it to some ID. This should be a unique value so it does not conflict with other data binds on the current view.
<%= select_tag :select, options_for_select([['First Option', :first_option], ['Second Option', :second_option]]), id: 'select_input', data: { bind: id } %></p>
For the listener, we create an attribute called bind
and have it set to the same ID as the Binder.
<%= content_tag :span, 'First Option', bind: id, id: 'span_select_tag' %>
Bug reports and pull requests are welcome on GitHub at https://github.com/simple-bind/simple_bind. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The MIT License (MIT)
Copyright (c) 2017 Dave Kimura
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Everyone interacting in the SimpleBind project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that simple_bind 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.