
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Node.js client for the Alexa Web Information Service and Alexa Top Sites.
$ npm install --save awis
Authentication:
From 01/02/2018 onward AWIS will start requiring an AWIS-policy-granted IAM user instead of the root account user. Refer to the following guides to create the right policies for your IAM user:
Basic usage:
var awis = require('awis');
var client = awis({
key: process.env.AWSACCESSKEYID,
secret: process.env.AWSSECRETACCESSKEY
});
client({
'Action': 'UrlInfo',
'Url': 'foo.com',
'ResponseGroup': 'Related,TrafficData,ContentData'
}, function (err, data) {
// ...
});
Specify region (default is us-west-1
):
var client = awis({
key: process.env.AWSACCESSKEYID,
secret: process.env.AWSSECRETACCESSKEY,
region: 'eu-west-1'
});
Batch request:
client({
Action: 'UrlInfo',
'UrlInfo.Shared.ResponseGroup': 'Rank',
'UrlInfo.1.Url': 'lupomontero.com',
'UrlInfo.2.Url': 'yahoo.com',
'UrlInfo.3.Url': 'weibo.com',
'UrlInfo.4.Url': 'github.com',
'UrlInfo.5.Url': 'monono.org'
}, function (err, data) {
// res.length === 5
// data is an array with a response object for each domain
data.forEach(function (item) {
console.log(item.trafficData.dataUrl);
});
});
Note that you can also query the
TopSites
API. For example:
client({
Action: 'TopSites',
CountryCode: 'PE',
Start: 1,
Count: 100,
ResponseGroup: 'Country'
}, function (err, res) {
//...
});
For full details on query options for the TopSites API please check the official documentation.
client( request, callback )
Issue request with client.
request
The request
object must always have an Action
property. The AWIS API
supports the following actions:
UrlInfo
- get information about pages and sites on the web - their traffic,
content, and related sites.
TrafficHistory
- get a history of traffic rank.
CategoryBrowse
, CategoryListings
- get lists of sites within a specific
category ordered by traffic rank, or create a browseable directory of websites.
SitesLinkingIn
- get a list of sites linking in to a specified site.
For more details please check the Alexa Web Information Service documentation.
The MIT License (MIT)
Copyright (c) 2015 Lupo Montero <lupo@wrangr.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Node.js client for the Alexa Web Information Service.
The npm package awis receives a total of 35 weekly downloads. As such, awis popularity was classified as not popular.
We found that 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.