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 is a set of libraries in the Python language to ease integration of your service with the EcommPay Payment Page.
Please note that for correct SDK operating you must have at least Python 3.5.
Install with pip
pip install ecommpay-sdk
from payment_page_sdk.gate import Gate
from payment_page_sdk.payment import Payment
gate = Gate('secret')
payment = Payment('402')
payment.payment_id = 'some payment id'
payment.payment_amount = 1001
payment.payment_currency = 'USD'
payment_url = gate.get_purchase_payment_page_url(payment)
payment_url
here is the signed URL.
You'll need to autoload this code in order to handle notifications:
from payment_page_sdk.gate import Gate
gate = Gate('secret')
callback = gate.handle_callback(data)
data
is the JSON data received from payment system;
callback
is the Callback object describing properties received from payment system;
callback
implements these methods:
callback.get_payment_status()
Get payment status.callback.get_payment()
Get all payment data.callback.get_payment_id()
Get payment ID in your system.FAQs
Unknown package
We found that ecommpay-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.