Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
= wannabeparser
== Description
Library for parsing xml files to ruby hash. Xml is being parsed by input, to support large files. Specified function is fired for every parsed object.
== Usage
First, define class like this:
require 'wannabeparser'
class TwitterParser include WannaBeParser # dear wannabeparser!
tag 'status' # Select all "status" objects for me
element 'created_at' => :date # and please, save "created_at" element contents as :date in resulting object
process lambda { |o| # and do this every time you got complete object
date = Date.parse(o[:date])
puts "#{o['user']['name']}: #{o['text']} @ #{Date::MONTHNAMES[date.month]}, #{date.day}"
}
end
Now, you can start parsing process doing this:
tweets_count = TwitterParser::parse(File.join( File.dirname(FILE) , 'twitter.xml')) # specifying xml file path as argument
tweets_count will contain number of parsed "status" objects.
== Installation
gem sources -a http://gemcutter.org gem install wannabeparser
FAQs
Unknown package
We found that wannabeparser 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.