Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
A tool for uploading file to cdn.
const cdnplz = require('cdnplz');
try{
new cdnplz({
tpl_suffix: 'jade', //the suffix of template file
tpl_path: 'app/view', //the root path of template file
static_path: '.', //the path of the static file
output_path: 'output/view/', //the output path of template file
file_encoding: 'utf8',
cdn_provider: 'yourCdnProvider',//the cdn provider provided by user
cdn_options: {//the options of the cdn provider
https: true
}
}).start();
}catch(e){
console.log(e);
}
const cdnProvider = require('yourCdnProvider');
module.exports = {
upload: function(filePath, options){
return cdnProvider.upload(filePath, options);
}
}
Cdn provider should return a object which has a upload
method, and this upload
method takes filePath
and options
as parameters, returns a Promise. The data resolved by the Promise must be a Object like this:
{
'./static/img/logo.png': 'https://p1.ssl.qhimg.com/t010a4bf91e826708df.png' ,
'./static/js/main.js': 'https://s0.ssl.qhimg.com/static/c870687eb082c330.js'
}
FAQs
A tool for CDN
We found that cdnplz 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.