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.
© Raw Engineering, Inc (www.raweng.com) 2013, Licensed under the MIT-LICENSE
A Javascript SDK for built.io service for node.js (0.6.x and up). Hides most of the complexity of creating, maintaining built.io objects and sessions.
For more information visit http://built.io and http://manage.built.io .
var Built = require('built');
var application_api_key = 'YOUR APPLICATION API KEY' ;
var application_uid = 'YOUR APPLICATION UID' ;
Built.initialize(application_api_key, application_uid); // init built SDK using application_api_key and application_uid
var query = new Built.Query('employee'/*class_uid*/); // create new built Query Object
query.greaterThan('age', 30); // add query
query.exec(/* execute query */)
.success(function(data){
console.log(data);
})
.error(function(err){
console.log(err);
});
var employee = new Built.Object('employee'/*class_uid*/);
employee.set({ /* set attributes in newly created object */
name:'jack',
age:32
});
employee.set('gender', 'male'); // set attribute using key, value type
employee.save()
.success(function(data){
/* object saved */
})
.error(function(err){
/* oops error */
});
npm install built --save
FAQs
built.io JavaScript SDK
The npm package built receives a total of 20 weekly downloads. As such, built popularity was classified as not popular.
We found that built 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.