forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
fcec27fee1
commit
7decde6b58
4 changed files with 24 additions and 8 deletions
|
@ -53,7 +53,9 @@ for (
|
||||||
console.log("-h -? /h /? --help -- Displays help");
|
console.log("-h -? /h /? --help -- Displays help");
|
||||||
console.log("--clean -- Cleans up files created by " + name);
|
console.log("--clean -- Cleans up files created by " + name);
|
||||||
console.log(
|
console.log(
|
||||||
"--reset -- Resets " + name + " to default settings (WARNING: DANGEROUS)",
|
"--reset -- Resets " +
|
||||||
|
name +
|
||||||
|
" to default settings (WARNING: DANGEROUS)",
|
||||||
);
|
);
|
||||||
console.log("--secure -- Runs HTTPS server");
|
console.log("--secure -- Runs HTTPS server");
|
||||||
console.log("--disable-mods -- Disables mods (safe mode)");
|
console.log("--disable-mods -- Disables mods (safe mode)");
|
||||||
|
@ -98,7 +100,9 @@ for (
|
||||||
console.log("-h -? /h /? --help -- Displays help");
|
console.log("-h -? /h /? --help -- Displays help");
|
||||||
console.log("--clean -- Cleans up files created by " + name);
|
console.log("--clean -- Cleans up files created by " + name);
|
||||||
console.log(
|
console.log(
|
||||||
"--reset -- Resets " + name + " to default settings (WARNING: DANGEROUS)",
|
"--reset -- Resets " +
|
||||||
|
name +
|
||||||
|
" to default settings (WARNING: DANGEROUS)",
|
||||||
);
|
);
|
||||||
console.log("--secure -- Runs HTTPS server");
|
console.log("--secure -- Runs HTTPS server");
|
||||||
console.log("--disable-mods -- Disables mods (safe mode)");
|
console.log("--disable-mods -- Disables mods (safe mode)");
|
||||||
|
|
|
@ -8,7 +8,12 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
eheaders["Content-Type"] = "text/html; charset=utf-8";
|
eheaders["Content-Type"] = "text/html; charset=utf-8";
|
||||||
res.writeHead(501, http.STATUS_CODES[501], eheaders);
|
res.writeHead(501, http.STATUS_CODES[501], eheaders);
|
||||||
res.write(
|
res.write(
|
||||||
'<!DOCTYPE html><html><head><title>Proxy not implemented</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>html{background-color:#dfffdf;color:#000000;font-family:FreeSans, Helvetica, Tahoma, Verdana, Arial, sans-serif;margin:0.75em}body{background-color:#ffffff;padding:0.5em 0.5em 0.1em;margin:0.5em auto;width:90%;max-width:800px;-webkit-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15);box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15)}h1{text-align:center;font-size:2.25em;margin:0.3em 0 0.5em}code{background-color:#dfffdf;-webkit-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);display:block;padding:0.2em;font-family:"DejaVu Sans Mono", "Bitstream Vera Sans Mono", Hack, Menlo, Consolas, Monaco, monospace;font-size:0.85em;margin:auto;width:95%;max-width:600px}table{width:95%;border-collapse:collapse;margin:auto;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;position:relative;z-index:0}table tbody{background-color:#ffffff;color:#000000}table tbody:after{-webkit-box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);-moz-box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);content:\' \';position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1}table img{margin:0;display:inline}th,tr{padding:0.15em;text-align:center}th{background-color:#007000;color:#ffffff}th a{color:#ffffff}td,th{padding:0.225em}td{text-align:left}tr:nth-child(odd){background-color:#dfffdf}hr{color:#ffffff}@media screen and (prefers-color-scheme: dark){html{background-color:#002000;color:#ffffff}body{background-color:#000f00;-webkit-box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15);-moz-box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15);box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15)}code{background-color:#002000;-webkit-box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1);-moz-box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1);box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1)}a{color:#ffffff}a:hover{color:#00ff00}table tbody{background-color:#000f00;color:#ffffff}table tbody:after{-webkit-box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175);-moz-box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175);box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175)}tr:nth-child(odd){background-color:#002000}}</style></head><body><h1>Proxy not implemented</h1><p>SVR.JS doesn\'t support proxy without proxy mod. If you\'re administator of this server, then install this mod in order to use ' + name.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">") + ' as a proxy.</p><p><i>' +
|
'<!DOCTYPE html><html><head><title>Proxy not implemented</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>html{background-color:#dfffdf;color:#000000;font-family:FreeSans, Helvetica, Tahoma, Verdana, Arial, sans-serif;margin:0.75em}body{background-color:#ffffff;padding:0.5em 0.5em 0.1em;margin:0.5em auto;width:90%;max-width:800px;-webkit-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15);box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.15)}h1{text-align:center;font-size:2.25em;margin:0.3em 0 0.5em}code{background-color:#dfffdf;-webkit-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);display:block;padding:0.2em;font-family:"DejaVu Sans Mono", "Bitstream Vera Sans Mono", Hack, Menlo, Consolas, Monaco, monospace;font-size:0.85em;margin:auto;width:95%;max-width:600px}table{width:95%;border-collapse:collapse;margin:auto;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;position:relative;z-index:0}table tbody{background-color:#ffffff;color:#000000}table tbody:after{-webkit-box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);-moz-box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.175);content:\' \';position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1}table img{margin:0;display:inline}th,tr{padding:0.15em;text-align:center}th{background-color:#007000;color:#ffffff}th a{color:#ffffff}td,th{padding:0.225em}td{text-align:left}tr:nth-child(odd){background-color:#dfffdf}hr{color:#ffffff}@media screen and (prefers-color-scheme: dark){html{background-color:#002000;color:#ffffff}body{background-color:#000f00;-webkit-box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15);-moz-box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15);box-shadow:0 5px 10px 0 rgba(127, 127, 127, 0.15)}code{background-color:#002000;-webkit-box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1);-moz-box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1);box-shadow:0 2px 4px 0 rgba(127, 127, 127, 0.1)}a{color:#ffffff}a:hover{color:#00ff00}table tbody{background-color:#000f00;color:#ffffff}table tbody:after{-webkit-box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175);-moz-box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175);box-shadow:0 4px 8px 0 rgba(127, 127, 127, 0.175)}tr:nth-child(odd){background-color:#002000}}</style></head><body><h1>Proxy not implemented</h1><p>SVR.JS doesn\'t support proxy without proxy mod. If you\'re administator of this server, then install this mod in order to use ' +
|
||||||
|
name
|
||||||
|
.replace(/&/g, "&")
|
||||||
|
.replace(/</g, "<")
|
||||||
|
.replace(/>/g, ">") +
|
||||||
|
" as a proxy.</p><p><i>" +
|
||||||
config
|
config
|
||||||
.generateServerString()
|
.generateServerString()
|
||||||
.replace(/&/g, "&")
|
.replace(/&/g, "&")
|
||||||
|
@ -17,7 +22,9 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
"</i></p></body></html>",
|
"</i></p></body></html>",
|
||||||
);
|
);
|
||||||
res.end();
|
res.end();
|
||||||
logFacilities.errmessage(name + " doesn't support proxy without proxy mod.");
|
logFacilities.errmessage(
|
||||||
|
name + " doesn't support proxy without proxy mod.",
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@ const ipMatch = require("../utils/ipMatch.js");
|
||||||
const matchHostname = require("../utils/matchHostname.js");
|
const matchHostname = require("../utils/matchHostname.js");
|
||||||
const ipBlockList = require("../utils/ipBlockList.js");
|
const ipBlockList = require("../utils/ipBlockList.js");
|
||||||
const cluster = require("../utils/clusterBunShim.js");
|
const cluster = require("../utils/clusterBunShim.js");
|
||||||
|
const svrjsInfo = require("../../svrjs.json");
|
||||||
|
const { name } = svrjsInfo;
|
||||||
|
|
||||||
// Brute force protection-related
|
// Brute force protection-related
|
||||||
let bruteForceDb = {};
|
let bruteForceDb = {};
|
||||||
|
@ -175,7 +177,8 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
res.error(
|
res.error(
|
||||||
500,
|
500,
|
||||||
new Error(
|
new Error(
|
||||||
name + " doesn't support scrypt-hashed passwords on Node.JS versions without scrypt hash support.",
|
name +
|
||||||
|
" doesn't support scrypt-hashed passwords on Node.JS versions without scrypt hash support.",
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
|
@ -214,7 +217,8 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
res.error(
|
res.error(
|
||||||
500,
|
500,
|
||||||
new Error(
|
new Error(
|
||||||
name + " doesn't support PBKDF2-hashed passwords on Node.JS versions without crypto support.",
|
name +
|
||||||
|
" doesn't support PBKDF2-hashed passwords on Node.JS versions without crypto support.",
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
|
@ -262,7 +266,7 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
'Basic realm="' +
|
'Basic realm="' +
|
||||||
(authcode.realm
|
(authcode.realm
|
||||||
? authcode.realm.replace(/(\\|")/g, "\\$1")
|
? authcode.realm.replace(/(\\|")/g, "\\$1")
|
||||||
: (name + " HTTP Basic Authorization")) +
|
: name + " HTTP Basic Authorization") +
|
||||||
'", charset="UTF-8"';
|
'", charset="UTF-8"';
|
||||||
const credentials = req.headers["authorization"];
|
const credentials = req.headers["authorization"];
|
||||||
if (!credentials) {
|
if (!credentials) {
|
||||||
|
|
|
@ -939,7 +939,8 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
} else {
|
} else {
|
||||||
res.error(501);
|
res.error(501);
|
||||||
logFacilities.errmessage(
|
logFacilities.errmessage(
|
||||||
name + " doesn't support block devices, character devices, FIFOs nor sockets.",
|
name +
|
||||||
|
" doesn't support block devices, character devices, FIFOs nor sockets.",
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue