Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
== amazon-awis
Ruby Amazon Alexa web service REST API using Hpricot with configurable default options and method call options. Uses Response and Element wrapper classes for easy access to REST XML output.
Version: 0.1.0
== INSTALLATION
$ gem install amazon-awis
== EXAMPLE
require 'amazon/awis'
# set the default options; options will be camelized and converted to REST request parameters.
Amazon::Awis.options = {:aws_access_key_id => [your access key]}
# to generate signed requests include your secret key:
Amazon::Awis.options = {:aws_access_key_id => [your developer token], :aws_secret_key => [your secret access key]}
# alternatively,
Amazon::Awis.configure do |options|
options[:aws_access_key_id] = [your access key]
options[:aws_secret_key] = [you secret key]
options[:responsegroup] = 'Rank'
end
# options provided on method call will merge with the default options
res = Amazon::Awis.get_info('yahoo.com')
# some common response object methods
res.is_success? # return true if request was successful
#dynamic methods
res.rank # return the rank of domain name that was passed
res.dataurl # returns the url which was queried
Refer to Amazon ECS documentation for more information on Amazon REST request parameters and XML output: http://docs.amazonwebservices.com/AlexaWebInfoService/2005-07-11/
== SOURCE CODES
== LINKS
== LICENSE
(The MIT License)
Copyright (c) 2009 Hasham Malik
FAQs
Unknown package
We found that amazon-awis 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.