| const username = process.env.WEB_USERNAME || "admin"; |
| const password = process.env.WEB_PASSWORD || "password"; |
| const url = `https://${process.env.PROJECT_DOMAIN}.glitch.me`; |
| const port = process.env.PORT || 3000; |
| const express = require("express"); |
| const app = express(); |
| var exec = require("child_process").exec; |
| const os = require("os"); |
| const { createProxyMiddleware } = require("http-proxy-middleware"); |
| var request = require("request"); |
| var fs = require("fs"); |
| var path = require("path"); |
| const auth = require("basic-auth"); |
|
|
| app.get("/", function (req, res) { |
| res.send("hello world"); |
| }); |
|
|
| |
| app.use((req, res, next) => { |
| const user = auth(req); |
| if (user && user.name === username && user.pass === password) { |
| return next(); |
| } |
| res.set("WWW-Authenticate", 'Basic realm="Node"'); |
| return res.status(401).send(); |
| }); |
|
|
| |
| app.get("/status", function (req, res) { |
| let cmdStr = |
| "ps -ef"; |
| exec(cmdStr, function (err, stdout, stderr) { |
| if (err) { |
| res.type("html").send("<pre>命令行执行错误:\n" + err + "</pre>"); |
| } else { |
| res.type("html").send("<pre>获取系统进程表:\n" + stdout + "</pre>"); |
| } |
| }); |
| }); |
|
|
| |
| app.get("/listen", function (req, res) { |
| let cmdStr = "ss -nltp"; |
| exec(cmdStr, function (err, stdout, stderr) { |
| if (err) { |
| res.type("html").send("<pre>命令行执行错误:\n" + err + "</pre>"); |
| } else { |
| res.type("html").send("<pre>获取系统监听端口:\n" + stdout + "</pre>"); |
| } |
| }); |
| }); |
|
|
| |
| app.get("/list", function (req, res) { |
| let cmdStr = "cat list"; |
| exec(cmdStr, function (err, stdout, stderr) { |
| if (err) { |
| res.type("html").send("<pre>命令行执行错误:\n" + err + "</pre>"); |
| } else { |
| res.type("html").send("<pre>节点数据:\n\n" + stdout + "</pre>"); |
| } |
| }); |
| }); |
|
|
| |
| app.get("/info", function (req, res) { |
| let cmdStr = "cat /etc/*release | grep -E ^NAME"; |
| exec(cmdStr, function (err, stdout, stderr) { |
| if (err) { |
| res.send("命令行执行错误:" + err); |
| } else { |
| res.send( |
| "命令行执行结果:\n" + |
| "Linux System:" + |
| stdout + |
| "\nRAM:" + |
| os.totalmem() / 1000 / 1000 + |
| "MB" |
| ); |
| } |
| }); |
| }); |
|
|
| |
| app.get("/test", function (req, res) { |
| let cmdStr = 'mount | grep " / " | grep "(ro," >/dev/null'; |
| exec(cmdStr, function (error, stdout, stderr) { |
| if (error !== null) { |
| res.send("系统权限为---非只读"); |
| } else { |
| res.send("系统权限为---只读"); |
| } |
| }); |
| }); |
|
|
| |
| app.get("/root", function (req, res) { |
| let cmdStr = "bash root.sh >/dev/null 2>&1 &"; |
| exec(cmdStr, function (err, stdout, stderr) { |
| if (err) { |
| res.send("root权限部署错误:" + err); |
| } else { |
| res.send("root权限执行结果:" + "启动成功!"); |
| } |
| }); |
| }); |
|
|
| |
| |
| function keep_web_alive() { |
| |
| exec("curl -m5 " + url, function (err, stdout, stderr) { |
| if (err) { |
| console.log("保活-请求主页-命令行执行错误:" + err); |
| } else { |
| console.log("保活-请求主页-命令行执行成功,响应报文:" + stdout); |
| } |
| }); |
|
|
| |
| exec("pgrep -laf web.js", function (err, stdout, stderr) { |
| |
| if (stdout.includes("./web.js -c ./config.json")) { |
| console.log("web 正在运行"); |
| } else { |
| |
| exec( |
| "chmod +x web.js && ./web.js -c ./config.json >/dev/null 2>&1 &", |
| function (err, stdout, stderr) { |
| if (err) { |
| console.log("保活-调起web-命令行执行错误:" + err); |
| } else { |
| console.log("保活-调起web-命令行执行成功!"); |
| } |
| } |
| ); |
| } |
| }); |
| } |
| setInterval(keep_web_alive, 10 * 1000); |
|
|
| |
| function keep_argo_alive() { |
| exec("pgrep -laf cloudflared", function (err, stdout, stderr) { |
| |
| if (stdout.includes("./cloudflared tunnel")) { |
| console.log("Argo 正在运行"); |
| } else { |
| |
| exec("bash argo.sh 2>&1 &", function (err, stdout, stderr) { |
| if (err) { |
| console.log("保活-调起Argo-命令行执行错误:" + err); |
| } else { |
| console.log("保活-调起Argo-命令行执行成功!"); |
| } |
| }); |
| } |
| }); |
| } |
| setInterval(keep_argo_alive, 30 * 1000); |
|
|
| |
| function keep_nezha_alive() { |
| exec("pgrep -laf nezha-agent", function (err, stdout, stderr) { |
| |
| if (stdout.includes("./nezha-agent")) { |
| console.log("哪吒正在运行"); |
| } else { |
| |
| exec("bash nezha.sh 2>&1 &", function (err, stdout, stderr) { |
| if (err) { |
| console.log("保活-调起哪吒-命令行执行错误:" + err); |
| } else { |
| console.log("保活-调起哪吒-命令行执行成功!"); |
| } |
| }); |
| } |
| }); |
| } |
| setInterval(keep_nezha_alive, 45 * 1000); |
| |
|
|
| |
| app.get("/download", function (req, res) { |
| download_web((err) => { |
| if (err) { |
| res.send("下载文件失败"); |
| } else { |
| res.send("下载文件成功"); |
| } |
| }); |
| }); |
|
|
| app.use( |
| "/", |
| createProxyMiddleware({ |
| changeOrigin: true, |
| onProxyReq: function onProxyReq(proxyReq, req, res) {}, |
| pathRewrite: { |
| |
| "^/": "/", |
| }, |
| target: "http://127.0.0.1:8080/", |
| ws: true, |
| }) |
| ); |
|
|
| |
| function download_web(callback) { |
| let fileName = "web.js"; |
| let web_url = |
| "https://github.com/fscarmen2/Argo-X-Container-PaaS/raw/main/files/web.js"; |
| let stream = fs.createWriteStream(path.join("./", fileName)); |
| request(web_url) |
| .pipe(stream) |
| .on("close", function (err) { |
| if (err) { |
| callback("下载文件失败"); |
| } else { |
| callback(null); |
| } |
| }); |
| } |
|
|
| download_web((err) => { |
| if (err) { |
| console.log("初始化-下载web文件失败"); |
| } else { |
| console.log("初始化-下载web文件成功"); |
| } |
| }); |
|
|
| |
| exec("bash entrypoint.sh", function (err, stdout, stderr) { |
| if (err) { |
| console.error(err); |
| return; |
| } |
| console.log(stdout); |
| }); |
|
|
| app.listen(port, () => console.log(`Example app listening on port ${port}!`)); |
|
|