forked from UseInterstellar/Interstellar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Masqr.js
78 lines (68 loc) · 2.1 KB
/
Masqr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import fs from "node:fs"
import path from "node:path"
import fetch from "node-fetch"
const LICENSE_SERVER_URL = "https://masqr.gointerstellar.app/validate?license="
const Fail = fs.readFileSync("Failed.html", "utf8")
export function setupMasqr(app) {
app.use(async (req, res, next) => {
if (req.url.includes("/fq/")) {
next()
return
}
const authheader = req.headers.authorization
if (req.cookies["authcheck"]) {
next()
return
}
if (req.cookies["refreshcheck"] !== "true") {
res.cookie("refreshcheck", "true", { maxAge: 10000 })
MasqFail(req, res)
return
}
if (!authheader) {
res.setHeader("WWW-Authenticate", "Basic")
res.status(401)
MasqFail(req, res)
return
}
const auth = Buffer.from(authheader.split(" ")[1], "base64").toString().split(":")
const pass = auth[1]
try {
const licenseCheckResponse = await fetch(
LICENSE_SERVER_URL + pass + "&host=" + req.headers.host
)
const licenseCheck = (await licenseCheckResponse.json())["status"]
console.log(
LICENSE_SERVER_URL + pass + "&host=" + req.headers.host + " returned " + licenseCheck
)
if (licenseCheck === "License valid") {
res.cookie("authcheck", "true", {
expires: new Date(Date.now() + 365 * 24 * 60 * 60 * 1000),
})
res.send("<script> window.location.href = window.location.href </script>")
return
}
MasqFail(req, res)
} catch (error) {
console.error(error)
MasqFail(req, res)
}
})
}
async function MasqFail(req, res) {
if (!req.headers.host) {
return
}
const unsafeSuffix = req.headers.host + ".html"
const safeSuffix = path.normalize(unsafeSuffix).replace(/^(\.\.(\/|\\|$))+/, "")
const safeJoin = path.join(process.cwd() + "/Masqrd", safeSuffix)
try {
await fs.promises.access(safeJoin)
const FailLocal = await fs.promises.readFile(safeJoin, "utf8")
res.setHeader("Content-Type", "text/html")
res.send(FailLocal)
} catch (e) {
res.setHeader("Content-Type", "text/html")
res.send(Fail)
}
}