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.
npm install anx-api
var Api = require('anx-api');
# Create a new instance with api target
var api = new Api({
target: 'https://api.appnexus.com'
token: 'SESSION_TOKEN' // (optional) see also api.login(...)
});
api.get(<serviceName>).then(function (res) {
...
}).catch(function (err) {
...
})
var api = new Api(config);
config[object]:
Authenticates with the API and returns a token to be used with future requests.
api.login('username', 'password').then(function (token) {
// The api object is now logged in. Optionally store the token.
...
})
Issues a GET request
api.get('service url')
api.get(opts) // see Request Options
Returns a promise that fulfills with the response from the api.
** Experimental Feature **
Usage and parameters are the same as #get accept it pages through api calls. Response body is parsed as json.
Issues a POST request with a payload
api.post('service url', 'payload')
api.post(opts, { /* payload obj */ })
api.post(opts) // see Request Options
Returns a promise that fulfills with the response from the api.
Issues a PUT request with a payload
api.put('service url', 'payload')
api.put(opts, { /* payload obj */ })
api.put(opts) // see Request Options
Returns a promise that fulfills with the response from the api.
Issues a DELETE request
api.delete('service url')
api.delete(opts) // see Request Options
Returns a promise that fulfills with the response from the api.
api.switchUser(userId).then(...)
The get, post, put, and delete methods can be called with an opts object. The opts object has the following request options.
// Fetch the third page of 25 creatives
api.get({
uri: 'creative',
startElement: 50,
numElements: 25
})
The following are two different methods of modifying and or spying on requests made to the api.
api._config.request = _.wrap(api._config.request, function (request, opts) {
console.log('DEBUG: ', opts);
return request.call(api, opts);
});
var request = require('request');
function customRequest(opts) {
return new Promise(function (resolve, reject) {
// Customize the request
request(opts, function (err, res) {
if (err) {
// Add additional error handling
reject(err);
} else {
// Customize the response
resolve(res);
}
});
});
}
var api = new Api({
target: process.env.ANX_TARGET,
token: 'SESSION_TOKEN',
request: customRequest
});
Run the unit test suite from the project root, make sure you've run npm install
first:
npm test
Coming soon
See LICENSE file
FAQs
AppNexus Api Wrapper
We found that anx-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
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.