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.
hydrogen-integration-api
Advanced tools
Hydrogen Integration API
https://www.hydrogenplatform.com/docs/integration/v1
Install the gem:
gem install hydrogen-integration-api
The add this to the Gemfile:
gem 'hydrogen-integration-api', '~> 1.3', '>= 1.3.1'
Please first follow the installation instructions. Then make sure you use the proper base URL:
Create an object of Environment and use the set_environment method to update the environment.
Sandbox URL
environment_config = IntegrationApi::Environment.new
environment_config.set_environment(environment_config.SANDBOX)
Production URL
environment_config = IntegrationApi::Environment.new
environment_config.set_environment(environment_config.PRODUCTION)
# Load the gem
require 'integration_api'
environment_config = IntegrationApi::Environment.new
environment_config.set_environment(environment_config.PRODUCTION)
# Setup authorization
IntegrationApi.configure do |config|
# Use one of the below method to generate oauth token
# Creating a token for grant_type=client_credentials
config.create_client_credential("CLIENT_ID", "CLIENT_SECRET");
# Creating a token for grant_type=password
config.create_password_credential("CLIENT_ID", "CLIENT_SECRET", "USERNAME", "PASSWORD");
# Creating a token using client token
config.create_client_token_credential("CLIENT_ID", "CLIENT_SECRET", "CLIENT_TOKEN")
end
api_instance = IntegrationApi::ACHApi.new
nucleus_funding_id = 'nucleus_funding_id_example' # String | nucleus_funding_id
begin
#Cancel the ACH transfer
result = api_instance.cancel_ach_transfer_using_delete(nucleus_funding_id)
p result
rescue IntegrationApi::ApiError => e
puts "Exception when calling ACHApi->cancel_ach_transfer_using_delete: #{e}"
end
The Hydrogen Technology Corporation
https://www.hydrogenplatform.com
Generated using Swagger Codegen
FAQs
Unknown package
We found that hydrogen-integration-api 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.