Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Node.js client for the Alexa Web Information Service.
$ npm install --save awis
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) {
// ...
});
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);
});
});
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-test receives a total of 1 weekly downloads. As such, awis-test popularity was classified as not popular.
We found that awis-test 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.