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.
erevna-services
Advanced tools
####Erevna Services
fungsi-fungsi yang akan digunakan di seluruh produk erevna
###List Services
sync_rayasem_spreadseets contoh: sync_rayasem_spreadseets.synonym_property_types.run(options)
contoh options: { localStorageKeyName:'property-types-synonym' }
getLocalstorage getLocalstorage(localStorageKeyName);
###fetch location from http://www.kemendagri.go.id/pages/data-wilayah cd services; node pdfprocessing;
###Update
v1.2
daftar variable options:
{
creds:<file credential>,
sheetnumber:<number sheet>,
localStorageKeyName:<nama local storage key>,
min_row:<minimal row ke berapa yang akan di olah>,
max_row:<maximal row ke berapa yang akan di olah>,
gdoc:<key gdoc>,
job: <job function untuk mengolah data gdoc. ouput dalam bentuk json string>
}
contoh options:
{
creds:require('./service-account-creds.json'),
sheetnumber:6,
localStorageKeyName:'localstorage-gdoc-sync-sheet-6',
min_row:2,
max_row:200,
gdoc:'1TRnVBn2b4S9ih6cygtnV0NLKoOcqRvcf88Lkxxxxxxx',
job: function(cells){
var list=[];
var tempRow = '';
var theKey = '';
var dataJson = {};
cells.forEach(function(v,k){
if(v.col < 3){
if(tempRow != v.row){
tempRow = v.row;
theKey = v.value;
theKey = theKey.toLowerCase();
}else{
var v = v.value;
v = v.toLowerCase();
dataJson[theKey] = v;
}
}
});
return dataJson;
}
}
FAQs
modul untuk produk erevna
We found that erevna-services 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.