
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
FanSQS is a background job processing engine for Ruby using AWS SQS for message storage.
Add this line to your application's Gemfile:
gem 'FanSQS'
And then execute:
$ bundle
Or install it yourself as:
$ gem install FanSQS
Create a config/initializer.rb file in your application directory and insert this line:
AWS.config( access_key_id: '<your_access_key_id>', secret_access_key: '<your_secret_access_key>')
FanSQS integrates seemlessly with your Rails applications. Just include the module FanSQS::Worker in the class that encapsulates your job logic and define a class method called perform. The method perform should be able to accept any number of parameters of any type.
class MessagePublisher
include FanSQS::Worker
set_fan_sqs_options queue: :message_queue # use the key :queue to define the message queue name
def self.perform(arg1, arg2, ...)
# code to do work
end
end
To push jobs into an SQS queue for processing, simply call:
MessagePublisher.perform_async(arg1, arg2, ...)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that FanSQS 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.