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.
openssl-self-signed-certificate
Advanced tools
Self-signed certificate for development use, generated using openssl. Expires in the year 4754 (4754-06-06).
Self-signed certificate for development use, generated using openssl. Expires in 4754-06-06.
$ openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 999999 -nodes
Generating a 2048 bit RSA private key
..............................+++
.....+++
writing new private key to 'key.pem'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:.
State or Province Name (full name) [Some-State]:.
Locality Name (eg, city) []:.
Organization Name (eg, company) [Internet Widgits Pty Ltd]:.
Organizational Unit Name (eg, section) []:.
Common Name (e.g. server FQDN or YOUR name) []:localhost
Email Address []:.
npm install --save-dev openssl-self-signed-certificate
var express = require('express');
var app = express();
var port = process.env.PORT || 3000;
app.get('/', function(req, res) {
res.send('Hello World!');
});
app.listen(port);
console.log(`HTTP started on port ${port}.`);
if (process.env.NODE_ENV !== 'production') {
var https = require('https');
var selfSigned = require('openssl-self-signed-certificate');
var options = {
key: selfSigned.key,
cert: selfSigned.cert
};
https.createServer(options, app).listen(port + 1);
console.log(`HTTPS started on port ${port + 1} (dev only).`);
}
FAQs
Self-signed certificate for development use, generated using openssl. Expires in the year 4754 (4754-06-06).
The npm package openssl-self-signed-certificate receives a total of 5,228 weekly downloads. As such, openssl-self-signed-certificate popularity was classified as popular.
We found that openssl-self-signed-certificate 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.