
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
== Welcome to Bluepay
Bluepay is used to process credit cards and ACH transactions using the BluePay Gateway.
BluePay, Inc. is a merchant account provider and payment gateway. The BluePay Gateway processes credit card and ACH transactions through a virtual terminal and various API/SDK/Payment Interfaces.
To apply for a BluePay merchant account and payment gateway, visit http://www.bluepay.com. Additional sample code available in the test directory of the gem.
== Example
require "bluepay"
$ACCOUNT_ID = "MERCHANT'S ACCOUNT ID HERE" $SECRET_KEY = "MERCHANT'S SECRET KEY HERE" $MODE = "TEST"
payment = BluePayPayment.new( $ACCOUNT_ID, $SECRET_KEY, $MODE)
payment.set_cc_information( "4111111111111111", "1215", "123")
payment.set_customer_information( "Bob", "Tester", "123 Test St.", "Testville", "IL", "54321", "Apt #500", "USA")
payment.sale("3.00")
response = payment.process()
if (payment.get_status() == "APPROVED") then puts "TRANSACTION STATUS: " + payment.get_status() puts "TRANSACTION MESSAGE: " + payment.get_message() puts "TRANSACTION ID: " + payment.get_trans_id() puts "AVS RESPONSE: " + payment.get_avs_code() puts "CVV2 RESPONSE: " + payment.get_cvv2_code() puts "MASKED PAYMENT ACCOUNT: " + payment.get_masked_account() puts "CARD TYPE: " + payment.get_card_type() puts "AUTH CODE: " + payment.get_auth_code() else puts payment.get_message() end
== About
Author:: Justin Slingerland ReadmeDoc:: Justin Slingerland Copyright:: Copyright (c) 2018 BluePay, Inc. License:: GPL - GNU General Public License - http://www.gnu.org/licenses/gpl.html
FAQs
Unknown package
We found that bluepay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.