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.
Ruby TAXII client
Currently under development - likely to break at a moment's notice.
Add this line to your application's Gemfile:
gem 'ruby-taxii2'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ruby-taxii2
require 'taxii'
# You can use a json file configuration
# client = Taxii::configure(config: 'my.config.json')
# or a direct configuration
client = Taxii::configure(user: 'user', pass: 'pass', url: 'url', logger: Logger.new(STDOUT))
collections = client.discover_collections
# List collections (name, type and availability)
puts "Listing collections:"
collections.each do |collection|
puts "#{collection['@collection_name']} #{collection['@collection_type']} #{collection['@available']}"
end
# Pick up the first available collection
collection_name = collections.find{ |collection| collection['@available'] == 'true' }['@collection_name']
puts "Retrieving data for collection: #{collection_name}"
poll_request_message = Taxii::Messages::PollRequest.new(
collection_name: collection_name,
poll_parameters: Taxii::Messages::Parameters::Poll.new(response_type: 'FULL')
)
client.get_content_blocks(poll_request_message).each do |message|
message = Taxii.parse(body)
puts "Received a #{message.class}"
puts message.as_json if message.is_a?(Taxii::Messages::ContentBlock)
end
Bug reports and pull requests are welcome on GitHub at https://github.com/crondaemon/ruby-taxii2.
Ruby Stix2: https://github.com/crondaemon/ruby-stix2
FAQs
Unknown package
We found that ruby-taxii2 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.