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.
GLOBALSIGN API Node client.
npm install globalsign
First you need to instantiate it.
var GlobalSign = require('globalsign');
var config = {
dev: process.env.GSIGN_DEV || false,
username: process.env.GSIGN_USER,
password: process.env.GSIGN_PASSWORD,
};
var globalsignsexample = new GlobalSign(config);
Using the created client, call the methods you need, example:
globalsignsexample.on('ready', function() {
globalsignsexample.getAccountInfo(function(err, data) {
if (err) { ... }
else { ... }
};
var csr = '...';
var ptype = 'xpto';
globalsignsexample.asslDecodeCSR(csr, ptype, function(err, data) {
if (err) { ... }
else { ... }
};
}
Check the examples folder for more specific use cases examples.
Licensed under the Apache license, version 2.0 (the "license"); You may not use this file except in compliance with the license. You may obtain a copy of the license at:
http://www.apache.org/licenses/LICENSE-2.0.html
Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "as is" basis, without warranties or conditions of any kind, either express or implied. See the license for the specific language governing permissions and limitations under the license.
FAQs
GLOBALSIGN API node client.
The npm package globalsign receives a total of 1 weekly downloads. As such, globalsign popularity was classified as not popular.
We found that globalsign 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.