Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
sac_active_merchant_first_data
Advanced tools
$ gem install active_merchant_first_data
require "active_merchant_first_data"
gateway = ActiveMerchant::Billing::FirstDataGateway.new(
pem: "1234567_keystore.pem"
pem_password: "5x64jq8n234c"
)
# Authorize for 10 euros (1000 euro cents)
response = gateway.authorize(1000, client_ip_addr: '127.0.0.1')
# Use this url to enter credit card data
gateway.redirect_url(response.authorization)
# Capture the money
gateway.capture(1000, response.authorization, client_ip_addr: '127.0.0.1')
Generate a new certificate
$ openssl req -newkey rsa:2048 -keyout spec/certs/1234567_key.pem -out spec/certs/1234567_req.pem -subj "/C=lv/O=example.com/CN=1234567" -outform PEM
Enter PEM pass phrase: 81f174259v45
Copy the 3 files you received in e-mail to spec/certs/
:
1234567.pem
1234567_certificate_chain.p7.pem
ECOMM.pem
Convert the certificates and keys to 1234567_keystore.pem
$ openssl pkcs12 -export -in spec/certs/1234567.pem -out spec/certs/1234567_keystore.p12 -certfile spec/certs/ECOMM.pem -inkey spec/certs/1234567_key.pem
Enter pass phrase for 1234567_key.pem: 81f174259v45
Enter Export Password: <empty>
$ openssl pkcs12 -in spec/certs/1234567_keystore.p12 > spec/certs/1234567_keystore.pem
Enter Import Password: <empty>
Enter PEM pass phrase: 5x64jq8n234c
FAQs
Unknown package
We found that sac_active_merchant_first_data 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.