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.
httpd-node is a simple HTTPD that includes support for ssl and multiple subdomains.
npm install httpd-node
npm start
The standalone config can be found in standalone.js.
var httpd = require( 'httpd-node' );
httpd.environ( 'root' , '/path/to/your/public/directory' );
An options object can be passed to the httpd constructor:
var server = new httpd( options );
Parameter | Type | Default | Description |
---|---|---|---|
port | Integer | 8888 | The port for this instance. |
index | String | 'index.html' | The name of the file that should be served when a directory is requested. |
verbose | Boolean | true | When verbose is true, the http response code and request path will be logged to the console. |
ssl | Object | null | An object containing paths to ssl .key and .cert files |
First, require httpd and setup your environment:
var httpd = require( 'httpd-node' );
httpd.environ( 'root' , '/path/to/your/public/directory' );
Assuming your public directory contains a www directory, all you need to get started is:
var server = new httpd();
server.start();
Point yourdomain.com and rad.yourdomain.com to different directories:
var server = new httpd();
server.setHttpDir( 'default' , '/cool' );
server.setHttpDir( 'rad' , '/rad' );
server.start();
HTTPS on port 8080:
var server = new httpd({
port: 8080,
ssl: {
key: '/absolute/path/to/ssl/key.key',
cert: '/absolute/path/to/ssl/cert.crt'
}
});
server.start();
/www
.server.setHttpDir( 'www' , '/www' );
server.setHttpDir( 'cdn' , '/cdn' );
// to override the default
server.setHttpDir( 'default' , '/some_other_path' );
data
is an object containing subdomain, httpRoot, and request path.server.use(function( request , response , data ) {
// do stuff here
});
server.environ( 'root' , '/path/to/your/public/directory' );
server.start();
FAQs
A super simple HTTPD server for node.js
The npm package httpd-node receives a total of 0 weekly downloads. As such, httpd-node popularity was classified as not popular.
We found that httpd-node 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.