Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Customized Ruby wrapper for Kaltura API on Active Record
THIS GEM IS NOT BEING MAINTAINED ANYMORE
Heavily influenced and continuation of Kaltura_Fu
Add this line to your application's Gemfile:
gem 'kaltura_box'
And then execute:
$ bundle
Or install it yourself as:
$ gem install kaltura_box
# For the Entry class
class Video < ActiveRecord::Base
include KalturaBox::Entry
end
# Category class
class Category < ActiveRecord::Base
include KalturaBox::Category
end
# Entry listing from Kaltura
Video.video_list
# Search
Video.video_list("search string here")
# Create videos based on Kaltura entries
Video.update_all_videos!
# Retrieve a kaltura entry
video = Video.new(entry_id: "0_7ivwzhbh")
video.get
# Tagging
video.set_tags = "noodles, food, yummy" # Create a new set of tags
video.add_tags = "rice, fruits" # Add more tags to the existing tag list
video.add_tag("bacon") # Add a single tag
video.get_tags # Retrieve tags
# Kaltura Metadata
video.set(name: "bla", description: "blablabla")
video.set_name = "bla"
video.set_description = "blablabla"
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that kaltura_box 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.