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.
This API provides access to the Amazon Flexible Payment Service (FPS). After trying to get the SOAP version of the API written, I began working on this REST version to provide a cohesive means of access to all of the functionality of the FPS without having to get dirty dealing with SOAP requests.
I hope you enjoy using it as much as I've enjoyed writing it. I'm interested to hear what sort of uses you find for it. If you find any bugs, let me know (or better yet, submit a patch).
Requires a config file located at #{RAILS_ROOT}/config/amazon_fps.yml. Use the following format.
development: access_key: secret_access_key: return_base: endpoint: 'https://fps.sandbox.amazonaws.com/' pipeline: 'https://authorize.payments-sandbox.amazon.com/cobranded-ui/actions/start' sandbox: true version: '2007-01-08'
test: access_key: secret_access_key: return_base: endpoint: 'https://fps.sandbox.amazonaws.com/' pipeline: 'https://authorize.payments-sandbox.amazon.com/cobranded-ui/actions/start' sandbox: true version: '2007-01-08'
production: access_key: secret_access_key: return_base: version: '2007-01-08' endpoint: 'https://fps.amazonaws.com/' pipeline: 'https://authorize.payments.amazon.com/cobranded-ui/actions/start' sandbox: false
The following sites are using Remit:
Amazon provides a testing environment for the FPS called a sandbox. You may (and should) use the sandbox while testing your application. It can be enabled by passing a value of true to the last argument of the API constructor.
The following example shows how to load up the API, initialize the service, and make a simple call to get the tokens stored on the account:
require 'remit'
ACCESS_KEY = '' SECRET_KEY = ''
remit = Remit::API.new(ACCESS_KEY, SECRET_KEY, true)
response = remit.get_tokens puts response.tokens.first.token_id
Copyright (c) 2007-2008 Tyler Hunt, released under the MIT license
FAQs
Unknown package
We found that NewMonarch-remit 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.