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.
SolidusFulfillment is a solidus extension to do fulfillment processing via various fulfillment services when a shipment becomes ready.
The extension adds an additional state to the Shipment state machine called
fulfilling
which acts as the transition between ready
and shipped
.
When a shipment becomes ready
it is eligible for fulfillment:
solidus_fulfillment:process
rake task intended to be called from a cron
job checks for ready
shipments (by delegating to the
solidus_fulfillment:process:ready
task) and initiates the fulfillment via
the merchant API.fulfilling
state.solidus_fulfillment:process:fulfilling
rake task then queries the
merchant's API for tracking numbers of any orders that are being fulfilled.shipped
state and an email is sent to the customer.Stock levels can also be updated with the
solidus_fulfillment:process:stock_levels
rake task which is intended to be
called from a cron job.
gem 'whenever', require: false # if you want whenever to manage the cron job
gem 'solidus_fulfillment'
development:
adapter: amazon
api_key: <YOUR AMAZON AWS API KEY>
secret_key: <YOUR AMAZON AWS SECRET KEY>
development_mode: true
test:
adapter: amazon
api_key: <YOUR AMAZON AWS API KEY>
secret_key: <YOUR AMAZON AWS SECRET KEY>
production:
adapter: amazon
api_key: <YOUR AMAZON AWS API KEY>
secret_key: <YOUR AMAZON AWS SECRET KEY>
every :hour do
rake "solidus_fulfillment:process"
end
require 'whenever/capistrano' # if you want whenever to manage the cron job
Set the SKU code for your products to be equal to the Amazon fulfillment SKU code.
Copyright (c) 2017 Rémy Coutable, released under the New BSD License Copyright (c) 2011 WIMM Labs, released under the New BSD License
FAQs
Unknown package
We found that solidus_fulfillment 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.