feat: add missing restricted ports
This commit is contained in:
+1
-2
@@ -8,7 +8,7 @@ const RESTRICTED_PORTS = new Set([
|
|||||||
1, 7, 9, 11, 13, 15, 17, 19, 20, 21, 22, 23, 25, 37, 42, 43, 53, 77, 79, 87, 95, 101, 102, 103,
|
1, 7, 9, 11, 13, 15, 17, 19, 20, 21, 22, 23, 25, 37, 42, 43, 53, 77, 79, 87, 95, 101, 102, 103,
|
||||||
104, 109, 110, 111, 113, 115, 117, 119, 123, 135, 139, 143, 179, 389, 465, 512, 513, 514, 515,
|
104, 109, 110, 111, 113, 115, 117, 119, 123, 135, 139, 143, 179, 389, 465, 512, 513, 514, 515,
|
||||||
526, 530, 531, 532, 540, 556, 563, 587, 601, 636, 993, 995, 2049, 3659, 4045, 6000, 6665, 6666,
|
526, 530, 531, 532, 540, 556, 563, 587, 601, 636, 993, 995, 2049, 3659, 4045, 6000, 6665, 6666,
|
||||||
6667, 6668, 6669,
|
6667, 6668, 6669, 6679, 6697, 10080
|
||||||
])
|
])
|
||||||
|
|
||||||
function checkRestrictedPortPlugin(): Plugin {
|
function checkRestrictedPortPlugin(): Plugin {
|
||||||
@@ -22,7 +22,6 @@ function checkRestrictedPortPlugin(): Plugin {
|
|||||||
const port = address.port
|
const port = address.port
|
||||||
|
|
||||||
if (RESTRICTED_PORTS.has(port)) {
|
if (RESTRICTED_PORTS.has(port)) {
|
||||||
// Using British English for the console warning messages
|
|
||||||
console.warn(
|
console.warn(
|
||||||
`\x1b[33m%s\x1b[0m`, // Yellow colour output
|
`\x1b[33m%s\x1b[0m`, // Yellow colour output
|
||||||
`\n[Warning] The current listening port ${port} is categorised as a restricted port by most browsers.`
|
`\n[Warning] The current listening port ${port} is categorised as a restricted port by most browsers.`
|
||||||
|
|||||||
Reference in New Issue
Block a user